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

1 2

  /external/clang/test/Sema/
attr-deprecated-message.c 4 typedef int INT1 __attribute__((deprecated("Please avoid INT1")));
6 typedef INT1 INT2 __attribute__ ((__deprecated__("Please avoid INT2")));
8 typedef INT1 INT1a; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
10 typedef INT1 INT1b __attribute__ ((deprecated("Please avoid INT1b")));
12 INT1 should_be_unavailable; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
    [all...]
  /external/clang/test/CodeGenObjC/
compatibility-alias.m 3 @interface Int1 @end
5 typedef Int1 Int1Typedef;
encode-test.m 6 @class Int1;
12 @interface Int1 {
18 @implementation Int1
55 Int1 *sBase;
  /external/clang/test/SemaObjC/
interface-1.m 19 @interface INT1
24 INT1 b[3]; // expected-error {{array of interface 'INT1' is invalid (probably should be an array of pointers)}}
25 INT1 *c = &b[0];
  /external/clang/test/Index/
complete-interfaces.m 4 @class Int1, Int2, Int3, Int4;
23 // CHECK-CC1: ObjCInterfaceDecl:{TypedText Int1}
28 // CHECK-CC2: ObjCInterfaceDecl:{TypedText Int1}
33 // CHECK-CC3: ObjCInterfaceDecl:{TypedText Int1}
37 // CHECK-CC4: ObjCInterfaceDecl:{TypedText Int1}
42 // CHECK-CC5: ObjCInterfaceDecl:{TypedText Int1}
  /dalvik/tests/070-nio-buffer/src/
Main.java 85 IntBuffer int1 = direct.asIntBuffer(); local
87 //FloatBuffer int1 = direct.asFloatBuffer();
89 int1.clear ();
90 int1.put (data);
91 int1.position (0);
93 int1.clear ();
94 int1.put (data);
95 int1.position (0);
  /external/skia/tests/
PDFPrimitivesTest.cpp 68 SkRefPtr<SkPDFInt> int1 = new SkPDFInt(1); local
69 int1->unref(); // SkRefPtr and new both took a reference.
74 SkRefPtr<SkPDFInt> int1Again(int1.get());
76 catalog.addObject(int1.get(), false);
80 REPORTER_ASSERT(reporter, catalog.getObjectNumberSize(int1.get()) == 3);
85 catalog.emitObjectNumber(&buffer, int1.get());
95 SkRefPtr<SkPDFInt> int1 = new SkPDFInt(1); local
96 int1->unref(); // SkRefPtr and new both took a reference.
103 catalog.addObject(int1.get(), false);
105 REPORTER_ASSERT(reporter, catalog.getObjectNumberSize(int1.get()) == 3)
168 SkRefPtr<SkPDFInt> int1 = new SkPDFInt(1); local
    [all...]
  /external/llvm/test/ExecutionEngine/
test-setcond-int.ll 4 %int1 = add i32 0, 0 ; <i32> [#uses=6]
56 %test37 = icmp eq i32 %int1, %int2 ; <i1> [#uses=0]
57 %test38 = icmp sge i32 %int1, %int2 ; <i1> [#uses=0]
58 %test39 = icmp sgt i32 %int1, %int2 ; <i1> [#uses=0]
59 %test40 = icmp sle i32 %int1, %int2 ; <i1> [#uses=0]
60 %test41 = icmp slt i32 %int1, %int2 ; <i1> [#uses=0]
61 %test42 = icmp ne i32 %int1, %int2 ; <i1> [#uses=0]
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 55 long int1 = Long.MAX_VALUE; local
56 assertTrue(window.putLong(int1, 0, 1));
58 assertEquals(int1, int2);
  /external/llvm/unittests/VMCore/
InstructionsTest.cpp 29 IntegerType* Int1 = IntegerType::get(C, 1);
30 Constant* One = ConstantInt::get(Int1, 1, true);
67 IntegerType* Int1 = IntegerType::get(C, 1);
68 Constant* One = ConstantInt::get(Int1, 1, true);
ConstantsTest.cpp 19 IntegerType* Int1 = IntegerType::get(getGlobalContext(), 1);
20 Constant* One = ConstantInt::get(Int1, 1, true);
21 Constant* Zero = ConstantInt::get(Int1, 0);
22 Constant* NegOne = ConstantInt::get(Int1, static_cast<uint64_t>(-1), true);
23 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
24 Constant* Undef = UndefValue::get(Int1);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_AvailTest.java 31 // string of the form '<int1> <int2> <data>'
32 // where data is some bytes, <int1> is the length of the whole string
  /external/libxml2/
error.c 402 (err->int1 < 100) &&
403 (err->int1 < xmlStrlen((const xmlChar *)err->str1))) {
408 for (i=0;i < err->int1;i++)
431 * @int1: extra int info
445 const char *str2, const char *str3, int int1, int col,
585 to->int1 = int1;
972 to->int1 = from->int1;
  /packages/apps/Calendar/tests/src/com/android/calendar/
UtilsTests.java 126 Integer int1 = new Integer(1); local
128 assertTrue(Utils.equals(int1, int2));
  /external/apache-harmony/math/src/test/java/tests/api/java/math/
BigDecimalTest.java 382 BigDecimal int1 = new BigDecimal(value, 3); local
384 int1.intValue() == 12345);
385 int1 = new BigDecimal("1.99");
386 assertTrue("the int value of 1.99 is not 1", int1.intValue() == 1);
387 int1 = new BigDecimal("23423419083091823091283933");
389 assertTrue("the int value of 23423419083091823091283933 is wrong", int1
391 int1 = new BigDecimal(-1235D);
393 int1.intValue() == -1235);
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 51 int && int1 = ConvertsTo<int&&>(); local
  /external/libxml2/include/libxml/
xmlerror.h 86 int int1; /* extra number information */ member in struct:_xmlError
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectStreamFieldTest.java 354 int int1 = 1; field in class:MockClass
SerializationStressTest3.java 325 new ObjectStreamField("int1", Integer.TYPE) };
342 int int1 = in.readInt(); local
344 passed = int1 == 0xA9 && object1.equals(v1);
352 fields.put("int1", 0xA9);
    [all...]
  /external/bison/data/
c.m4 139 # b4_ints_in(INT1, INT2, LOW, HIGH)
141 # Return 1 iff both INT1 and INT2 are in [LOW, HIGH], 0 otherwise.
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_p2p.c 226 unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0; local
245 int1 = entry.uint32_value;
257 if (wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2) < 0)
    [all...]
  /frameworks/base/libs/utils/
README 264 integer/int1 0x7f030001 -
  /external/collada/src/1.4/dom/
domConstants.cpp 341 DLLSPEC daeString COLLADA_TYPE_INT1 = "int1";
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/nxp/
NativeNfcTag.java 566 * 2 INT1 INT2 LOCK LOCK
  /external/grub/stage2/
asm.S 308 /* replace the int1 handler */
349 /* restore the int1 handler */
    [all...]

Completed in 1115 milliseconds

1 2