Lines Matching refs:entry

90                 DescEntry entry = getDescriptionForSingleJob(job, descPath,  in getDescriptionFor()  local
93 if (entry != null) in getDescriptionFor()
97 entry in getDescriptionFor()
109 DescEntry entry = getDescriptionForSingleJob(partjob, descPath, in getDescriptionFor() local
112 if (entry != null) in getDescriptionFor()
114 for (int i = 0; i < entry.SubEntryCount; i++) in getDescriptionFor()
116 String subEntry = entry.SubEntries[i].longName; in getDescriptionFor()
117 int cpLength = entry.longName.length(); in getDescriptionFor()
123 entry.SubEntries[i].isToTest = true; in getDescriptionFor()
129 entry in getDescriptionFor()
218 DescEntry entry = null; in getDescriptionForSingleJob() local
227 entry = getFromDirectory(descPath, job, debug); in getDescriptionForSingleJob()
236 entry = getFromClassPath(job, debug); in getDescriptionForSingleJob()
241 if (isSingleInterface && (entry != null)) in getDescriptionForSingleJob()
243 for (int i = 0; i < entry.SubEntryCount; i++) in getDescriptionForSingleJob()
245 if (!(entry.SubEntries[i].longName).equals(fullJob)) in getDescriptionForSingleJob()
247 entry.SubEntries[i].isToTest = false; in getDescriptionForSingleJob()
252 entry.SubEntries[i].isToTest = true; in getDescriptionForSingleJob()
257 if (isSingleInterface && !foundInterface || entry == null) in getDescriptionForSingleJob()
259 return setErrorDescription(entry, in getDescriptionForSingleJob()
263 return entry; in getDescriptionForSingleJob()
487 DescEntry entry = (DescEntry) entriesArray[k]; in makeArray() local
489 if (entry.entryName.equals("ifc.lang._XComponent")) in makeArray()
491 addAtEnd = entry; in makeArray()
495 returnArray.add(entry); in makeArray()
507 protected static DescEntry setErrorDescription(DescEntry entry, in setErrorDescription() argument
510 if (entry == null) in setErrorDescription()
512 entry = new DescEntry(); in setErrorDescription()
514 entry.hasErrorMsg = true; in setErrorDescription()
515 entry.ErrorMsg = "Error while getting description for test '" + in setErrorDescription()
518 return entry; in setErrorDescription()
590 String entry = e.nextElement().toString(); in getFromClassPath() local
596 if ((entry.lastIndexOf(sStartModule) != -1) && in getFromClassPath()
597 entry.endsWith(sEndsWithCSVName)) in getFromClassPath()
599 InputStream input = this.getClass().getResourceAsStream("/" + entry); in getFromClassPath()
613 String entry = buf.readLine(); in getFromClassPath() local
615 if (entry.endsWith(sEndsWithCSVName)) in getFromClassPath()
621 entry); in getFromClassPath()
651 protected static DescEntry getFromDirectory(String descPath, String entry, in getFromDirectory() argument
654 int dotindex = entry.indexOf('.'); in getFromDirectory()
665 if (entry.indexOf(".uno") == -1) in getFromDirectory()
667 module = entry.substring(0, entry.indexOf('.')); in getFromDirectory()
668 shortName = entry.substring(entry.indexOf('.') + 1); in getFromDirectory()
672 module = entry.substring(0, entry.lastIndexOf('.')); in getFromDirectory()
673 shortName = entry.substring(entry.lastIndexOf('.') + 1); in getFromDirectory()
677 aEntry.entryName = entry; in getFromDirectory()
678 aEntry.longName = entry; in getFromDirectory()
714 "couldn't find component '" + entry + "'"); in getFromDirectory()
888 String entry = e.nextElement().toString(); in getScenarioFromClassPath() local
890 if (entry.startsWith("objdsc" + subdir) && in getScenarioFromClassPath()
891 (entry.indexOf("CVS") < 0) && in getScenarioFromClassPath()
892 !entry.endsWith("/")) in getScenarioFromClassPath()
894 int startMod = entry.indexOf("/"); in getScenarioFromClassPath()
895 int endMod = entry.lastIndexOf("/"); in getScenarioFromClassPath()
896 String module = entry.substring(startMod + 1, endMod); in getScenarioFromClassPath()
898 entry.substring(endMod + 1, in getScenarioFromClassPath()
899 entry.length()), in getScenarioFromClassPath()