Lines Matching refs:job

74     public DescEntry[] getDescriptionFor(String job, String descPath,  in getDescriptionFor()  argument
78 if (job.startsWith("-o")) in getDescriptionFor()
80 job = job.substring(3, job.length()).trim(); in getDescriptionFor()
82 if (job.indexOf(".") < 0) in getDescriptionFor()
88 if (job.indexOf(",") < 0) in getDescriptionFor()
90 DescEntry entry = getDescriptionForSingleJob(job, descPath, in getDescriptionFor()
107 ArrayList subs = getSubInterfaces(job); in getDescriptionFor()
108 String partjob = job.substring(0, job.indexOf(",")).trim(); in getDescriptionFor()
139 if (job.startsWith("-p")) in getDescriptionFor()
141 job = job.substring(3, job.length()).trim(); in getDescriptionFor()
143 String[] scenario = createScenario(descPath, job, debug); in getDescriptionFor()
154 if (job.equals("listall")) in getDescriptionFor()
162 if (job.startsWith("-sce")) in getDescriptionFor()
164 job = job.substring(5, job.length()).trim(); in getDescriptionFor()
166 File sceFile = new File(job); in getDescriptionFor()
169 return getScenario(job, descPath, debug); in getDescriptionFor()
175 ArrayList subs = getSubObjects(job); in getDescriptionFor()
192 protected DescEntry getDescriptionForSingleJob(String job, String descPath, in getDescriptionForSingleJob() argument
195 boolean isSingleInterface = job.indexOf("::") > 0; in getDescriptionForSingleJob()
196 fullJob = job; in getDescriptionForSingleJob()
200 job = job.substring(0, job.indexOf("::")); in getDescriptionForSingleJob()
203 if (job.startsWith("bugs")) in getDescriptionForSingleJob()
206 Entry.entryName = job; in getDescriptionForSingleJob()
207 Entry.longName = job; in getDescriptionForSingleJob()
227 entry = getFromDirectory(descPath, job, debug); in getDescriptionForSingleJob()
236 entry = getFromClassPath(job, debug); in getDescriptionForSingleJob()
738 protected ArrayList getSubInterfaces(String job) in getSubInterfaces() argument
741 StringTokenizer st = new StringTokenizer(job, ","); in getSubInterfaces()
756 protected ArrayList getSubObjects(String job) in getSubObjects() argument
759 StringTokenizer st = new StringTokenizer(job, ","); in getSubObjects()
769 protected String[] createScenario(String descPath, String job, in createScenario() argument
781 scenario = getScenarioFromDirectory(descPath, job, debug); in createScenario()
790 scenario = getScenarioFromClassPath(job, debug); in createScenario()
796 protected String[] getScenarioFromDirectory(String descPath, String job, in getScenarioFromDirectory() argument
802 if (!job.equals("unknown") && !job.equals("listall")) in getScenarioFromDirectory()
806 job in getScenarioFromDirectory()
856 protected String[] getScenarioFromClassPath(String job, boolean debug) in getScenarioFromClassPath() argument
860 if (!job.equals("unknown") && !job.equals("listall")) in getScenarioFromClassPath()
862 subdir += job; in getScenarioFromClassPath()