OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getClass
(Results
1 - 25
of
2266
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DataKey.java
46
return
getClass
().hashCode();
54
return obj != null &&
getClass
().equals(obj.
getClass
());
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
UserDataKey.java
28
return
getClass
().hashCode();
37
return obj != null &&
getClass
().equals(obj.
getClass
());
/art/test/005-annotations/src/android/test/anno/
ClassWithInnerClasses.java
22
return "Canonical:" +
getClass
().getCanonicalName() + " Simple:" +
getClass
().getSimpleName();
27
return "Canonical:" +
getClass
().getCanonicalName() + " Simple:" +
getClass
().getSimpleName();
/external/proguard/src/proguard/evaluation/value/
TopValue.java
46
return this.
getClass
() == other.
getClass
() ? this : null;
65
this.
getClass
() == object.
getClass
();
71
return this.
getClass
().hashCode();
Value.java
48
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a Category 1 value [" + this.
getClass
().getName() + "]");
56
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a Category 2 value [" + this.
getClass
().getName() + "]");
65
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not an integer value [" + this.
getClass
().getName() + "]");
73
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a long value [" + this.
getClass
().getName() + "]");
81
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a float value [" + this.
getClass
().getName() + "]");
89
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a double value [" + this.
getClass
().getName() + "]");
97
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a reference value [" + this.
getClass
().getName() + "]");
105
throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not an instruction offset value [" + this.
getClass
().getName() + "]");
/external/testng/src/test/java/test/triangle/
Child1.java
13
assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " +
getClass
();
19
assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " +
getClass
();
/art/test/137-cfi/src-multidex/
Base.java
20
if (!this.
getClass
().getName().equals("Main")) {
/art/test/164-resolution-trampoline-dex-cache/src/
Base.java
19
System.out.println("Base.foo() on " +
getClass
().getName());
/external/apache-commons-bcel/src/test/java/org/apache/bcel/verifier/tests/
TestLegalInvokeSpecial01.java
23
new TestLegalInvokeSpecial01().
getClass
();
/art/test/631-checker-get-class/src/
Main.java
26
if (m.
getClass
() == Main.class) {
48
return new Main().
getClass
() == Main.class;
64
return o.
getClass
() == Main.class;
79
return new Main().
getClass
() != Main.class;
95
return o.
getClass
() != Main.class;
/external/objenesis/main/src/test/java/org/objenesis/
ObjenesisTest.java
49
assertEquals(o.getInstantiatorOf(
getClass
()).newInstance().
getClass
(),
getClass
());
55
assertEquals(
getClass
(), o.newInstance(
getClass
()).
getClass
());
61
ObjectInstantiator<?> i1 = o.getInstantiatorOf(
getClass
());
63
assertEquals(
getClass
(), i1.newInstance().
getClass
());
66
ObjectInstantiator<?> i2 = o.getInstantiatorOf(
getClass
());
[
all
...]
/external/objenesis/main/src/test/java/org/objenesis/instantiator/basic/
ClassDefinitionUtilsTest.java
32
Class<?> c = ClassDefinitionUtils.defineClass(className, b,
getClass
().getClassLoader());
50
Class<?> actual = ClassDefinitionUtils.getExistingClass(
getClass
().getClassLoader(),
51
getClass
().getName());
52
assertSame(actual,
getClass
());
57
Class<?> actual = ClassDefinitionUtils.getExistingClass(
getClass
().getClassLoader(),
getClass
().getName() + "$$$1");
/external/conscrypt/libcore-stub/src/main/java/libcore/util/
Objects.java
32
Class<?> c = o.
getClass
();
51
if (value.
getClass
().isArray()) {
52
if (value.
getClass
() == boolean[].class) {
54
} else if (value.
getClass
() == byte[].class) {
56
} else if (value.
getClass
() == char[].class) {
58
} else if (value.
getClass
() == double[].class) {
60
} else if (value.
getClass
() == float[].class) {
62
} else if (value.
getClass
() == int[].class) {
64
} else if (value.
getClass
() == long[].class) {
66
} else if (value.
getClass
() == short[].class)
[
all
...]
/art/test/506-verify-aput/src/
Main.java
27
} catch (Error e) { System.out.println(e.
getClass
() + " " + e.
getClass
().getClassLoader()); }
32
} catch (Error e) { System.out.println(e.
getClass
() + " " + e.
getClass
().getClassLoader()); }
/external/replicaisland/src/com/replica/replicaisland/
AllocationGuard.java
30
DebugLog.e("AllocGuard", "An allocation of type " + this.
getClass
().getName()
/external/testng/src/main/java/org/testng/junit/
JUnit3TestClass.java
12
super(test.
getClass
());
/external/testng/src/test/java/test/groupbug/
ITCaseOne.java
11
System.out.printf("RUN %s.beforeClass()\n",
getClass
());
16
System.out.printf("RUN %s.afterClass()\n",
getClass
());
22
System.out.printf("RUN %s.one1()\n",
getClass
());
31
System.out.printf("RUN %s.one2()\n",
getClass
());
ITCaseTwo.java
11
System.out.printf("RUN %s.beforeClass()\n",
getClass
());
16
System.out.printf("RUN %s.afterClass()\n",
getClass
());
22
System.out.printf("RUN %s.two1()\n",
getClass
());
28
System.out.printf("RUN %s.two2()\n",
getClass
());
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
DefaultVisitorAdapter.java
18
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
23
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
28
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
33
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
38
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
43
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
48
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
53
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
58
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName());
63
throw new UnsupportedOperationException(node.
getClass
().getCanonicalName())
[
all
...]
/cts/tests/signature/lib/common/src/android/signature/cts/
ClassProvider.java
31
public Class<?>
getClass
(String name) throws ClassNotFoundException {
32
return Class.forName(name, false, this.
getClass
().getClassLoader());
/external/testng/src/test/java/test/thread/
ThreadPoolSizeBase.java
8
log(
getClass
().getName(), "Init log ids");
14
log(
getClass
().getName(), "");
/external/mockito/src/test/java/org/mockito/internal/creation/instance/
ConstructorInstantiatorTest.java
44
assertEquals(new ConstructorInstantiator(false, new Object[0]).newInstance(SomeClass.class).
getClass
(), SomeClass.class);
49
assertEquals(new ConstructorInstantiator(true, this).newInstance(SomeInnerClass.class).
getClass
(), SomeInnerClass.class);
50
assertEquals(new ConstructorInstantiator(true, new ChildOfThis()).newInstance(SomeInnerClass.class).
getClass
(), SomeInnerClass.class);
55
assertEquals(new ConstructorInstantiator(false, "someString").newInstance(SomeClass2.class).
getClass
(), SomeClass2.class);
60
assertEquals(new ConstructorInstantiator(false, new Object[]{null}).newInstance(SomeClass2.class).
getClass
(), SomeClass2.class);
65
assertEquals(new ConstructorInstantiator(false, 123).newInstance(SomeClass3.class).
getClass
(), SomeClass3.class);
70
assertEquals(new ConstructorInstantiator(false, new Object[]{null}).newInstance(SomeClass3.class).
getClass
(), SomeClass3.class);
/cts/hostsidetests/classloaders/splits/apps/feature_a/src/com/android/cts/classloadersplitapp/feature_a/
FeatureAReceiver.java
31
final ClassLoader loader =
getClass
().getClassLoader();
34
b.putString("featureA_loaderClassName", loader.
getClass
().getName());
35
b.putString("featureA_parentClassName", parent.
getClass
().getName());
/cts/hostsidetests/classloaders/splits/apps/feature_b/src/com/android/cts/classloadersplitapp/feature_b/
FeatureBReceiver.java
31
final ClassLoader loader =
getClass
().getClassLoader();
34
b.putString("featureB_loaderClassName", loader.
getClass
().getName());
35
b.putString("featureB_parentClassName", parent.
getClass
().getName());
/cts/hostsidetests/classloaders/splits/apps/src/com/android/cts/classloadersplitapp/
BaseReceiver.java
30
final ClassLoader loader =
getClass
().getClassLoader();
33
b.putString("loaderClassName", loader.
getClass
().getName());
34
b.putString("parentClassName", parent.
getClass
().getName());
Completed in 1083 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>