/external/cldr/tools/java/org/unicode/cldr/util/ |
FileReaders.java | 17 public static BufferedReader openFile(Class<?> class1, String file) { 18 return openFile(class1, file, CldrUtility.UTF8); 21 public static BufferedReader openFile(Class<?> class1, String file, Charset charset) { 26 // path = class1.getResource(file); 34 final InputStream resourceAsStream = class1.getResourceAsStream(file); 35 // String foo = class1.getResource(".").toString(); 43 String className = class1 == null ? null : class1.getCanonicalName(); 46 String relativeFileName = FileReaders.getRelativeFileName(class1, "../util/"); 69 public static String getRelativeFileName(Class<?> class1, String filename) [all...] |
StringIterables.java | 26 public static Iterable<String> in(Class<?> class1, String file) { 27 return With.in(new FileLines(FileReaders.openFile(class1, file, CldrUtility.UTF8))); 39 public static Iterable<String> in(Class<?> class1, String file, Charset charset) { 40 return With.in(new FileLines(FileReaders.openFile(class1, file, charset)));
|
CldrUtility.java | 539 final Class<? extends Object> class1 = source.getClass(); local 541 final Method declaredMethod = class1.getDeclaredMethod("clone", (Class<?>) null); 546 final Constructor<? extends Object> declaredMethod = class1.getConstructor((Class<?>) null); [all...] |
/external/testng/src/main/java/org/testng/internal/ |
MethodInstance.java | 61 XmlClass class1 = o1.getMethod().getTestClass().getXmlClass();
66 if (class1 == null || class2 == null) {
67 if (class1 != null) return -1;
72 if (! class1.getName().equals(class2.getName())) {
73 int index1 = class1.getIndex();
79 findXmlInclude(class1.getIncludedMethods(), o1.getMethod().getMethodName());
|
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/cycle/ |
LongCycleTest.java | 35 assertThat(longCycleComponent.class1()).isNotNull();
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
PackagePageTest.java | 61 IClassCoverage class1 = new ClassCoverageImpl( local 68 class1, class2), Arrays.asList(src1)); 96 IClassCoverage class1 = new ClassCoverageImpl( local 101 class1, class2), Collections.<ISourceFileCoverage> emptyList());
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
FileUtilities.java | 217 public static BufferedReader openFile(Class<?> class1, String file) { 218 return openFile(class1, file, UTF8); 221 public static BufferedReader openFile(Class<?> class1, String file, Charset charset) { 226 // path = class1.getResource(file); 234 final InputStream resourceAsStream = class1.getResourceAsStream(file); 235 // String foo = class1.getResource(".").toString(); 243 String className = class1 == null ? null : class1.getCanonicalName(); 246 String relativeFileName = getRelativeFileName(class1, "../util/"); 320 public static void appendFile(Class<?> class1, String filename, PrintWriter out) [all...] |
/external/libffi/src/x86/ |
ffi64.c | 104 /* Return the union class of CLASS1 and CLASS2. 108 merge_classes (enum x86_64_reg_class class1, enum x86_64_reg_class class2) 111 if (class1 == class2) 112 return class1; 116 if (class1 == X86_64_NO_CLASS) 119 return class1; 122 if (class1 == X86_64_MEMORY_CLASS || class2 == X86_64_MEMORY_CLASS) 126 if ((class1 == X86_64_INTEGERSI_CLASS && class2 == X86_64_SSESF_CLASS) 127 || (class2 == X86_64_INTEGERSI_CLASS && class1 == X86_64_SSESF_CLASS)) 129 if (class1 == X86_64_INTEGER_CLASS || class1 == X86_64_INTEGERSI_CLAS [all...] |
/external/python/cpython2/Modules/_ctypes/libffi/src/x86/ |
ffi64.c | 104 /* Return the union class of CLASS1 and CLASS2. 108 merge_classes (enum x86_64_reg_class class1, enum x86_64_reg_class class2) 111 if (class1 == class2) 112 return class1; 116 if (class1 == X86_64_NO_CLASS) 119 return class1; 122 if (class1 == X86_64_MEMORY_CLASS || class2 == X86_64_MEMORY_CLASS) 126 if ((class1 == X86_64_INTEGERSI_CLASS && class2 == X86_64_SSESF_CLASS) 127 || (class2 == X86_64_INTEGERSI_CLASS && class1 == X86_64_SSESF_CLASS)) 129 if (class1 == X86_64_INTEGER_CLASS || class1 == X86_64_INTEGERSI_CLAS [all...] |
/external/python/cpython2/Modules/_ctypes/libffi_osx/x86/ |
x86-ffi64.c | 84 /* Return the union class of CLASS1 and CLASS2. 88 enum x86_64_reg_class class1, 92 if (class1 == class2) 93 return class1; 97 if (class1 == X86_64_NO_CLASS) 101 return class1; 104 if (class1 == X86_64_MEMORY_CLASS || class2 == X86_64_MEMORY_CLASS) 108 if ((class1 == X86_64_INTEGERSI_CLASS && class2 == X86_64_SSESF_CLASS) 109 || (class2 == X86_64_INTEGERSI_CLASS && class1 == X86_64_SSESF_CLASS)) 112 if (class1 == X86_64_INTEGER_CLASS || class1 == X86_64_INTEGERSI_CLAS [all...] |
/external/python/cpython3/Modules/_ctypes/libffi_osx/x86/ |
x86-ffi64.c | 84 /* Return the union class of CLASS1 and CLASS2. 88 enum x86_64_reg_class class1, 92 if (class1 == class2) 93 return class1; 97 if (class1 == X86_64_NO_CLASS) 101 return class1; 104 if (class1 == X86_64_MEMORY_CLASS || class2 == X86_64_MEMORY_CLASS) 108 if ((class1 == X86_64_INTEGERSI_CLASS && class2 == X86_64_SSESF_CLASS) 109 || (class2 == X86_64_INTEGERSI_CLASS && class1 == X86_64_SSESF_CLASS)) 112 if (class1 == X86_64_INTEGER_CLASS || class1 == X86_64_INTEGERSI_CLAS [all...] |
/external/testng/src/main/java/org/testng/collections/ |
Objects.java | 90 public static ToStringHelper toStringHelper(Class<?> class1) { 91 return new ToStringHelper(class1.getSimpleName());
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
XCldrStub.java | 382 public static BufferedReader openFile(Class<?> class1, String file) { 383 return openFile(class1, file, UTF8); 386 public static BufferedReader openFile(Class<?> class1, String file, Charset charset) { 390 final InputStream resourceAsStream = class1.getResourceAsStream(file); 398 String className = class1 == null ? null : class1.getCanonicalName(); 401 String relativeFileName = getRelativeFileName(class1, "../util/"); 411 public static String getRelativeFileName(Class<?> class1, String filename) { 412 URL resource = class1 == null ? 413 FileUtilities.class.getResource(filename) : class1.getResource(filename) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
XCldrStub.java | 344 public static BufferedReader openFile(Class<?> class1, String file) { 345 return openFile(class1, file, UTF8); 348 public static BufferedReader openFile(Class<?> class1, String file, Charset charset) { 352 final InputStream resourceAsStream = class1.getResourceAsStream(file); 360 String className = class1 == null ? null : class1.getCanonicalName(); 363 String relativeFileName = getRelativeFileName(class1, "../util/"); 373 public static String getRelativeFileName(Class<?> class1, String filename) { 374 URL resource = class1 == null ? 375 FileUtilities.class.getResource(filename) : class1.getResource(filename) [all...] |
/external/proguard/src/proguard/evaluation/value/ |
TypedReferenceValue.java | 342 * @param class1 the first class. 348 private Clazz findCommonClass(Clazz class1, 354 class1.hierarchyAccept(!interfaces, 367 else if (class1.getSuperName() != null) 369 throw new IllegalArgumentException("Can't find any super classes of ["+class1.getName()+"] (not even immediate super class ["+class1.getSuperName()+"])"); 396 System.out.println("ReferenceValue.generalize this ["+class1.getName()+"] with other ["+class2.getName()+"] (interfaces = "+interfaces+")"); 442 class1.getName() +"] (with "+superClasses1Count +" known super classes) and ["+
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/pool/ |
RollbackTest.java | 56 ClassDef class1 = new ImmutableClassDef("Lcls1;", AccessFlags.PUBLIC.getValue(), "Ljava/lang/Object;", null, null, local 82 dexPool.internClass(class1); 94 dexPool.internClass(class1);
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
RegexModify.java | 89 private static <T> T getFunction(Class class1, String applyFunction) { 90 Map<String, Class<Function>> methods = getMethods(class1); 101 private static Map<String, Class<Function>> getMethods(Class class1) { 104 for (Class classMember : class1.getClasses()) {
|
GenerateLanguageContainment.java | 456 private static Multimap<String, String> loadTsvPairs(Class<?> class1, String file, 458 String rel = FileUtilities.getRelativeFileName(class1, file); 461 for (String line : FileUtilities.in(class1, file)) { 473 private static Map<String, String> loadTsvPairsUnique(Class<?> class1, String file, 476 String rel = FileUtilities.getRelativeFileName(class1, file); 480 for (String line : FileUtilities.in(class1, file)) {
|
/external/proguard/src/proguard/classfile/editor/ |
AccessFixer.java | 210 private boolean inSamePackage(ProgramClass class1, Clazz class2) 212 return ClassUtil.internalPackageName(class1.getName()).equals(
|
/external/testng/src/test/java/test/distributed/ |
DistributedTest.java | 88 XmlClass class1 = new XmlClass(c); local 89 test1.getXmlClasses().add(class1);
|
/external/desugar/java/com/google/devtools/common/options/ |
OptionsParser.java | 149 public static OptionsParser newOptionsParser(Class<? extends OptionsBase> class1) 151 return newOptionsParser(ImmutableList.<Class<? extends OptionsBase>>of(class1)); 156 Class<? extends OptionsBase> class1, Class<? extends OptionsBase> class2) 158 return newOptionsParser(ImmutableList.of(class1, class2)); [all...] |
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
ICUJDKCompare.java | 363 private int compare(Class class1, Class class2) throws Exception { 364 String n1 = class1.getName(); 369 MorC[] conss1 = getMorCArray(class1.getConstructors()); 375 MorC[] meths1 = getMorCArray(class1.getMethods()); 381 Field[] fields1 = class1.getFields();
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/cycle/ |
LongCycle.java | 23 static class Class1 { @Inject Class1(Class2 class2) {} } 123 static class Class101 { @Inject Class101(Provider<Class1> class1Provider) {} } 128 Class1 class1(); method in interface:LongCycle.LongCycleComponent
|
/external/python/cpython3/Lib/test/ |
test_mailbox.py | [all...] |
/external/fonttools/Lib/fontTools/mtiLib/ |
__init__.py | 322 class1, class2, value = (int(x) for x in line[1:4]) 323 rec2 = self.Class1Record[class1].Class2Record[class2] [all...] |