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

1 2 3 4

  /external/llvm/test/Transforms/GlobalOpt/
invariant-nodatalayout.ll 6 @object1 = global { i32, i32 } zeroinitializer
7 ; CHECK: @object1 = global { i32, i32 } zeroinitializer
10 %ptr = bitcast {i32, i32}* @object1 to i8*
invariant.ll 13 @object1 = global i32 0
14 ; CHECK: @object1 = constant i32 -1
16 store i32 -1, i32* @object1
17 %A = bitcast i32* @object1 to i8*
  /external/llvm/test/CodeGen/X86/
2012-11-28-merge-store-alias.ll 13 %object1 = alloca [10 x i32]
15 %ret0 = call i32 @foo([10 x i32]* %object1) nounwind
17 %O1_1 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 1
18 %O1_2 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 2
19 %O1_3 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 3
20 %O1_4 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 4
21 %ld_ptr = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 9
29 %ret1 = call i32 @foo([10 x i32]* %object1) nounwind
  /external/proguard/src/proguard/util/
ObjectUtil.java 31 * @param object1 the first object, may be null.
35 public static boolean equal(Object object1, Object object2)
37 return object1 == null ?
39 object1.equals(object2);
56 * @param object1 the first object, may be null.
61 public static int compare(Comparable object1, Comparable object2)
63 return object1 == null ?
65 object2 == null ? 1 : object1.compareTo(object2);
  /external/replicaisland/src/com/replica/replicaisland/
ChannelSystem.java 87 public int compare(final Channel object1, final Channel object2) {
89 if (object1 == null && object2 != null) {
91 } else if (object1 != null && object2 == null) {
93 } else if (object1 != null && object2 != null) {
94 if (object1.name == null && object2.name != null) {
96 } else if (object1.name != null && object2.name == null) {
98 } else if (object1.name != null && object2.name != null) {
99 result = object1.name.compareTo(object2.name);
PhasedObjectManager.java 88 public int compare(BaseObject object1, BaseObject object2) {
90 if (object1 != null && object2 != null) {
91 result = ((PhasedObject) object1).phase - ((PhasedObject) object2).phase;
92 } else if (object1 == null && object2 != null) {
94 } else if (object2 == null && object1 != null) {
GameObjectManager.java 185 public int compare(BaseObject object1, BaseObject object2) {
187 if (object1 == null && object2 != null) {
189 } else if (object1 != null && object2 == null) {
191 } else if (object1 != null && object2 != null) {
192 float delta = ((GameObject) object1).getPosition().x
SoundSystem.java 182 public int compare(final Sound object1, final Sound object2) {
184 if (object1 == null && object2 != null) {
186 } else if (object1 != null && object2 == null) {
188 } else if (object1 != null && object2 != null) {
189 result = object1.resource - object2.resource;
  /tools/loganalysis/src/com/android/loganalysis/item/
GenericItem.java 199 * @param object1 The first object
201 * @return True if object1 and object2 are both null or if object1 is equal to object2, false
204 static protected boolean areEqual(Object object1, Object object2) {
205 return object1 == null ? object2 == null : object1.equals(object2);
211 * @param object1 The first object
213 * @return True if either object1 or object2 is null or if object1 is equal to object2, false if
216 static protected boolean areConsistent(Object object1, Object object2)
    [all...]
  /external/libxml2/result/SVG/
group02.xml 6 <g id="OBJECT1">
  /external/libxml2/test/SVG/
group02.xml 7 <g id="OBJECT1">
  /external/clang/test/SemaObjCXX/
conversion-to-objc-pointer-2.mm 82 NSObject* object1 = [[[NSObject alloc] init] autorelease];
85 [bar setBlah: object1]; // <== Does not compile. It should.
86 if (object1 == object2)
  /external/skqp/tests/
TraceMemoryDumpTest.cpp 36 x.dumpNumericValue("foobar/object1", "size", "bytes", 23);
  /external/clang/test/SemaObjC/
arc-peformselector.m 19 - (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2;
37 - (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2 { return 0; }
continuation-class-err.m 9 @property(readwrite, assign) id object1; // expected-note {{property declared here}}
15 @property(readonly) id object1; // expected-error {{illegal redeclaration of property in class extension 'ReadOnly' (attribute must be 'readwrite', while its primary must be 'readonly')}}
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 56 public int compare(Object object1, Object object2)
58 ProgramMember member1 = (ProgramMember)object1;
AttributeSorter.java 80 public int compare(Object object1, Object object2)
82 Attribute attribute1 = (Attribute)object1;
  /tools/tradefederation/core/tests/src/com/android/tradefed/config/
OptionSetterTest.java 306 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
308 OptionSetter setter = new OptionSetter(object1, object2);
310 assertEquals("test", object1.mString);
319 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
328 OptionSetter parser = new OptionSetter(object1, object2);
331 // verify object1
332 assertEquals(1, object1.mEnumMap.size());
333 assertNotNull(object1.mEnumMap.get(expectedKey));
334 assertEquals(expectedValue, object1.mEnumMap.get(expectedKey));
348 AllTypesOptionSource object1 = new AllTypesOptionSource() local
384 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
397 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
412 ParentOptionSource object1 = new ParentOptionSource(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windows.security.cryptography.h 63 IBuffer *object1,
147 IBuffer *object1,
221 #define ICryptographicBufferStatics_Compare(This,object1,object2,isEqual) (This)->lpVtbl->Compare(This,object1,object2,isEqual)
254 static FORCEINLINE HRESULT ICryptographicBufferStatics_Compare(ICryptographicBufferStatics* This,IBuffer *object1,IBuffer *object2,boolean *isEqual) {
255 return This->lpVtbl->Compare(This,object1,object2,isEqual);
294 IBuffer *object1,
  /tools/loganalysis/tests/src/com/android/loganalysis/util/config/
OptionSetterTest.java 239 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
241 OptionSetter setter = new OptionSetter(object1, object2);
243 assertEquals("test", object1.mString);
252 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
261 OptionSetter parser = new OptionSetter(object1, object2);
264 // verify object1
265 assertEquals(1, object1.mEnumMap.size());
266 assertNotNull(object1.mEnumMap.get(expectedKey));
267 assertEquals(expectedValue, object1.mEnumMap.get(expectedKey));
281 AllTypesOptionSource object1 = new AllTypesOptionSource() local
317 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
330 AllTypesOptionSource object1 = new AllTypesOptionSource(); local
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-using-decl.cpp 27 void Visit(struct Object1*);
38 void Visit(struct Object1*); // expected-note {{candidate function}}
46 Knot().Visit((struct Object1*) 0);
  /libcore/luni/src/test/java/libcore/java/util/
OldPriorityQueueTest.java 87 public int compare(String object1, String object2) {
88 int length1 = object1.length();
103 public int compare(E object1, E object2) {
  /external/junit-params/src/test/java/junitparams/
ParametersReaderProvidersTest.java 83 public void providedDomainParams(DomainClass object1, DomainClass object2) {
84 assertThat(object1.toString()).isEqualTo("testNameOne");
  /external/libmojo/mojo/public/cpp/bindings/tests/
handle_passing_unittest.cc 327 sample::NamedObjectPtr object1; local
328 EXPECT_FALSE(object1);
330 InterfaceRequest<sample::NamedObject> object1_request = GetProxy(&object1);
335 ASSERT_TRUE(object1);
336 object1->SetName("object1");
344 object1->GetName(MakeStringRecorder(&name1, run_loop.QuitClosure()));
352 EXPECT_EQ(std::string("object1"), name1);
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CommonSuperclassTest.java 282 String object1 = "[Ljava/lang/Object;"; local
299 superclassTest(object1, object1, one1);
302 superclassTest(object1, one1, two1);
307 superclassTest(object1, one1, one2);
308 superclassTest(object1, two1, one2);
311 superclassTest(object1, five1, one2);
316 superclassTest(object, object1, one);

Completed in 877 milliseconds

1 2 3 4