HomeSort by relevance Sort by last modified time
    Searched refs:getClass (Results 101 - 125 of 1676) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
SmokeTestSuiteBuilderTest.java 27 TestSuite testSuite = new SmokeTestSuiteBuilder(getClass())
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatLog.java 29 String className = caller.getClass().getName();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
AbstractFileFilter.java 62 String name = getClass().getName();
  /external/mockito/src/org/mockito/internal/creation/cglib/
CGLIBHacker.java 23 Field namingPolicyField = createInfo.getClass().getDeclaredField("namingPolicy");
37 Class cglibMethodProxyClass = methodProxy.getClass();
42 cglibMethodProxyClass = methodProxy.getClass().getSuperclass();
  /external/objenesis/tck/test/org/objenesis/tck/
CandidateLoaderTest.java 47 candidateLoader = new CandidateLoader(tck, getClass().getClassLoader(), errorHandler);
82 candidateLoader.loadFromResource(getClass(), "CandidateLoaderTest-sample.properties");
92 candidateLoader.loadFromResource(getClass(), "Blatently-Bogus.properties");
  /external/proguard/src/proguard/evaluation/value/
UnknownLongValue.java 146 this.getClass() == object.getClass();
152 return this.getClass().hashCode();
SpecificDoubleValue.java 178 this.getClass() == object.getClass();
184 return this.getClass().hashCode();
SpecificFloatValue.java 178 this.getClass() == object.getClass();
184 return this.getClass().hashCode();
UnknownIntegerValue.java 202 this.getClass() == object.getClass();
208 return this.getClass().hashCode();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
UnknownClassProto.java 60 return classPath.getClass("Ljava/lang/Object;");
73 return classPath.getClass("Ljava/lang/Object;").getFieldByOffset(fieldOffset);
79 return classPath.getClass("Ljava/lang/Object;").getMethodByVtableIndex(vtableIndex);
ArrayProto.java 107 return classPath.getClass("Ljava/lang/Object;");
111 TypeProto thisClass = classPath.getClass(elementType);
112 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType);
120 return classPath.getClass(makeArrayType(mergedClass.getType(), dimensions));
124 return classPath.getClass(makeArrayType("Ljava/lang/Object;", dimensions));
137 return classPath.getClass("Ljava/lang/Object;");
164 return classPath.getClass("Ljava/lang/Object;").getMethodByVtableIndex(vtableIndex);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericSignatureFormatErrorTest.java 29 InputStream is = this.getClass().getResourceAsStream("/resources/dex1.bytes");
60 InputStream is = this.getClass().getResourceAsStream("/resources/dex1.bytes");
73 // Class clazz = df.loadClass("demo/HelloWorld", this.getClass().getClassLoader());
76 getClass().getClassLoader());
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 130 for (Field field : getClass().getFields()) {
131 if (field.getType() == getClass() && Modifier.isStatic(field.getModifiers())) {
151 return getClass().getName() + '(' + getName() + ')';
  /libcore/luni/src/main/java/libcore/reflect/
InternalNames.java 28 public static Class<?> getClass(ClassLoader classLoader, String internalName) {
30 Class<?> componentClass = getClass(classLoader, internalName.substring(1));
31 return Array.newInstance(componentClass, 0).getClass();
  /cts/tools/signature-tools/test/signature/converter/
ConvertVisibilityTest.java 51 IClassDefinition c = ModelUtil.getClass(p, "A");
69 IClassDefinition c = ModelUtil.getClass(p, "A");
87 IClassDefinition c = ModelUtil.getClass(p, "A");
105 IClassDefinition c = ModelUtil.getClass(p, "A");
138 assertNotNull(ModelUtil.getClass(sigPackage, "X1.X3"));
154 assertNotNull(ModelUtil.getClass(sigPackage, "X1.X2"));
170 assertNotNull(ModelUtil.getClass(sigPackage, "X1.X4"));
ConvertAnnotationTest.java 59 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "ToDo");
89 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "ToDo");
111 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "ToDo");
139 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "A");
164 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "A");
173 assertSame(field.getDefaultValue().getClass(), Object[].class);
188 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "A");
197 assertSame(field.getDefaultValue().getClass(), Object[].class);
223 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "A");
249 IClassDefinition sigClass = ModelUtil.getClass(sigPackage, "A");
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 293 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
298 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
303 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
308 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
313 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
327 obj.getClass().getName()
387 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
402 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
413 if (obj == null || obj.getClass() != tclass || cclass != null) fullCheck(obj);
429 obj.getClass().getName(
    [all...]
AtomicReferenceFieldUpdater.java 167 * getClass comparison suffices) or is of type Object (in
256 if (obj == null || obj.getClass() != tclass || cclass != null ||
258 vclass != update.getClass()))
265 if (obj == null || obj.getClass() != tclass || cclass != null ||
267 vclass != update.getClass()))
273 if (obj == null || obj.getClass() != tclass || cclass != null ||
275 vclass != newValue.getClass()))
281 if (obj == null || obj.getClass() != tclass || cclass != null ||
283 vclass != newValue.getClass()))
290 if (obj == null || obj.getClass() != tclass || cclass != null
    [all...]
  /frameworks/base/services/core/java/com/android/server/
SystemServiceManager.java 138 + service.getClass().getName()
153 + " to service " + service.getClass().getName(), ex);
166 + " to service " + service.getClass().getName(), ex);
179 + " to service " + service.getClass().getName(), ex);
192 + " to service " + service.getClass().getName(), ex);
221 .append(service.getClass().getSimpleName())
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
BooleanTest.java 76 System.setProperty(getClass().getName(), "true");
77 assertTrue(Boolean.getBoolean(getClass().getName()));
79 System.setProperty(getClass().getName(), "TRUE");
80 assertTrue(Boolean.getBoolean(getClass().getName()));
82 System.setProperty(getClass().getName(), "false");
83 assertFalse(Boolean.getBoolean(getClass().getName()));
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventHandlerTest.java 121 method = getClass().getMethod("recordingMethod", Object.class);
144 method = getClass().getMethod("exceptionThrowingMethod", Object.class);
167 method = getClass().getMethod("errorThrowingMethod", Object.class);
  /external/mockito/src/org/mockito/internal/configuration/
InjectingAnnotationEngine.java 55 processIndependentAnnotations(testInstance.getClass(), testInstance);
56 processInjectMocks(testInstance.getClass(), testInstance);
90 Class<?> clazz = testClassInstance.getClass();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
CustomRobolectricTestRunnerTest.java 33 assertEquals(CustomApplication.class, Robolectric.application.getClass());
39 assertEquals(RobolectricClassLoader.class.getName(), preparedTest.getClass().getClassLoader().getClass().getName());
  /frameworks/base/telecomm/java/android/telecom/
ConnectionRequest.java 70 mAccountHandle = in.readParcelable(getClass().getClassLoader());
71 mAddress = in.readParcelable(getClass().getClassLoader());
72 mExtras = in.readParcelable(getClass().getClassLoader());
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConfigurationException.java 144 Method m = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
156 Method m1 = this.getClass().getMethod("getCause", new Class[] {});
162 Method m2 = this.getClass().getMethod("initCause", new Class[] {Throwable.class});

Completed in 2616 milliseconds

1 2 3 45 6 7 8 91011>>