HomeSort by relevance Sort by last modified time
    Searched full:class1 (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/testdata/
jar_example.jar 
  /external/clang/test/CodeGenCXX/
attr-notail.cpp 3 class Class1 {
9 int foo1(int a, Class1 *c1) {
16 // CHECK: %{{[a-z0-9]+}} = notail call i32 @_ZN6Class12m1Ev(%class.Class1*
17 // CHECK: %{{[a-z0-9]+}} = call i32 @_ZN6Class12m2Ev(%class.Class1*
  /ndk/tests/device/test-stlport_shared-exception/jni/
rvalue1.cpp 36 class Class1 {
38 Class1(const String & constStringRef);
41 Class1 :: Class1 (const String & constStringRef)
51 Class1 *class1 = new Class1((char*) "Hi!"); local
  /ndk/tests/device/test-stlport_static-exception/jni/
rvalue1.cpp 36 class Class1 {
38 Class1(const String & constStringRef);
41 Class1 :: Class1 (const String & constStringRef)
51 Class1 *class1 = new Class1((char*) "Hi!"); local
  /external/clang/test/ASTMerge/
class.cpp 1 // RUN: %clang_cc1 -emit-pch -o %t.1.ast %S/Inputs/class1.cpp
6 // CHECK: class1.cpp:5:8: warning: type 'B' has incompatible definitions in different translation units
7 // CHECK: class1.cpp:6:9: note: field 'y' has type 'float' here
12 // CHECK: class1.cpp:17:6: warning: type 'E' has incompatible definitions in different translation units
13 // CHECK: class1.cpp:18:3: note: enumerator 'b' with value 1 here
  /external/v8/test/webkit/fast/js/kde/
object_prototype.js 50 function Class1() {}
54 Class1.prototype = new Object();
55 Class1.prototype.hasClass1 = true;
56 Class2.prototype = new Class1();
66 shouldBe("Class1.prototype.isPrototypeOf(obj)","true");
69 shouldBe("obj.isPrototypeOf(Class1.prototype)","false");
73 shouldBe("Class1.prototype.isPrototypeOf(Class2.prototype)","true");
74 shouldBe("Class2.prototype.isPrototypeOf(Class1.prototype)","false");
75 shouldBe("Class1.prototype.isPrototypeOf(Class3.prototype)","true");
76 shouldBe("Class3.prototype.isPrototypeOf(Class1.prototype)","false")
    [all...]
object_prototype-expected.txt 40 PASS Class1.prototype.isPrototypeOf(obj) is true
43 PASS obj.isPrototypeOf(Class1.prototype) is false
46 PASS Class1.prototype.isPrototypeOf(Class2.prototype) is true
47 PASS Class2.prototype.isPrototypeOf(Class1.prototype) is false
48 PASS Class1.prototype.isPrototypeOf(Class3.prototype) is true
49 PASS Class3.prototype.isPrototypeOf(Class1.prototype) is false
52 PASS Class1.prototype.prototype is undefined.
  /external/clang/test/SemaObjC/
warn-selector-selection.m 7 @interface Class1
class-method-lookup.m 30 @interface Class1
35 - (void)setWindow:(Class1 *)window;
check-dup-decl-methods-1.m 10 @interface class1 : SUPER
18 @interface class1(cat)
26 @interface class1(cat1)
  /external/testng/src/test/java/test/inheritance/testng471/
Class1.java 6 public class Class1 extends SuperClass1 {
TestNG471.java 15 TestNG tng = create(Class1.class, Class2.class, Class3.class);
  /external/llvm/unittests/Support/
TrailingObjectsTest.cpp 19 class Class1 final : protected TrailingObjects<Class1, short> {
27 Class1(int *ShortArray, unsigned NumShorts) : NumShorts(NumShorts) {
33 static Class1 *create(int *ShortArray, unsigned NumShorts) {
35 return new (Mem) Class1(ShortArray, NumShorts);
102 Class1 *C = Class1::create(arr, 3);
103 EXPECT_EQ(sizeof(Class1), sizeof(unsigned));
104 EXPECT_EQ(Class1::additionalSizeToAlloc<short>(1), sizeof(short));
105 EXPECT_EQ(Class1::additionalSizeToAlloc<short>(3), sizeof(short) * 3)
    [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());
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
MultiArgTestAdapter.java 43 @BindingAdapter({"android:class1", "android:class2"})
44 public static void setBoth(TextView view, MultiBindingClass1 class1,
46 view.setText(join(class1, class2));
55 @BindingAdapter({"android:class1"})
56 public static void setClass1(TextView view, MultiBindingClass1 class1) {
57 view.setText(class1.getValue());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/not_source_folder/jar/example/
Class1.java 19 public class Class1 {
24 public Class1() {
Class2.java 19 public class Class2 extends Class1 {
  /art/test/465-checker-clinit-gvn/src/
Main.java 30 /// CHECK-DAG: <<Class1:l\d+>> LoadClass
31 /// CHECK-DAG: ClinitCheck [<<Class1>>]
45 /// CHECK-DAG: <<Class1:l\d+>> LoadClass
46 /// CHECK-DAG: ClinitCheck [<<Class1>>]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoaderTest.java 34 * Uses the classes jar.example.Class1/Class2 stored in tests/data/jar_example.jar.
60 assertTrue(data.containsKey("jar.example.Class1")); //$NON-NLS-1$
62 assertTrue(data.containsKey("jar.example.Class1$InnerStaticClass1")); //$NON-NLS-1$
63 assertTrue(data.containsKey("jar.example.Class1$InnerClass2")); //$NON-NLS-1$
81 assertTrue(map.containsKey("jar.example.Class1")); //$NON-NLS-1$
116 "jar.example.Class1", //$NON-NLS-1$
119 assertTrue(found.containsKey("jar.example.Class1")); //$NON-NLS-1$
122 // Only Class2 derives from Class1..
123 // Class1 and Class1$InnerStaticClass1 derive from Object and are thus ignored
    [all...]
  /external/clang/test/PCH/
pr18806.cpp 16 struct Class1 {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
util_test.py 79 class Class1(object):
88 instance_of_class1 = Class1()
91 instance_of_class1, util.Typecheck(instance_of_class1, Class1))
95 util.Typecheck(instance_of_class1, ((Class1, Class2), Class3)))
99 util.Typecheck(instance_of_class1, (Class1, (Class2, Class3))))
103 util.Typecheck(instance_of_class1, Class1, 'message'))
108 instance_of_class1, ((Class1, Class2), Class3), 'message'))
113 instance_of_class1, (Class1, (Class2, Class3)), 'message'))
  /external/v8/test/mjsunit/strong/
class-extend-null.js 13 class Class1 extends null {
59 class Class1 extends null {
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
PackagePageTest.java 61 IClassCoverage class1 = new ClassCoverageImpl( local
70 class1, class2), Arrays.asList(src1));
98 IClassCoverage class1 = new ClassCoverageImpl( local
105 class1, class2), Collections.<ISourceFileCoverage> emptyList());
  /external/testng/src/main/java/org/testng/collections/
Objects.java 90 public static ToStringHelper toStringHelper(Class<?> class1) {
91 return new ToStringHelper(class1.getSimpleName());
  /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

Completed in 788 milliseconds

1 2 3 4 5 6 7 8