/external/clang/test/Sema/ |
pointer-conversion.c | 10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}} variable
|
attr-cleanup.c | 41 void c5(void*) __attribute__((deprecated)); // expected-note{{'c5' declared here}} 43 int i __attribute__((cleanup(c5))); // expected-warning {{'c5' is deprecated}}
|
warn-unreachable.c | 51 c5: 58 goto c5;
|
string-init.c | 25 char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
|
/external/clang/test/Parser/ |
c1x-alignas.c | 10 char _Alignas(_Alignof(int)) c5;
|
/external/clang/test/CodeGen/ |
tentative-decls.c | 34 // RUN: grep '@c5 = internal global \[1 x .*\] zeroinitializer' %t 35 static int c5[]; variable 36 static int func() { return c5[0]; }
|
constant-comparison.c | 9 int *c5 = &a + (6 * 5 >= 30); variable
|
arm-abi-vector.c | 89 __char5 c5 = va_arg(ap, __char5); local 90 sum = sum + c5.x + c5.y; 216 __short5 c5 = va_arg(ap, __short5); local 217 sum = sum + c5.x + c5.y;
|
/external/clang/test/SemaTemplate/ |
instantiation-default-2.cpp | 14 Constant<float (*)(int, double), &f> *c5; variable
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Kube.java | 49 float c5 = 1.0f; local 52 mCubes[0] = new Cube(world, c0, c4, c0, c1, c5, c1); 53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1); 54 mCubes[2] = new Cube(world, c4, c4, c0, c5, c5, c1); 56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3); 57 mCubes[4] = new Cube(world, c2, c4, c2, c3, c5, c3); 58 mCubes[5] = new Cube(world, c4, c4, c2, c5, c5, c3); 60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_normalization.py | 57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]] 72 self.assertTrue(c4 == NFC(c4) == NFC(c5), line) 74 self.assertTrue(c5 == NFD(c4) == NFD(c5), line) 76 NFKC(c3) == NFKC(c4) == NFKC(c5), 78 self.assertTrue(c5 == NFKD(c1) == NFKD(c2) == \ 79 NFKD(c3) == NFKD(c4) == NFKD(c5),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_normalization.py | 57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]] 72 self.assertTrue(c4 == NFC(c4) == NFC(c5), line) 74 self.assertTrue(c5 == NFD(c4) == NFD(c5), line) 76 NFKC(c3) == NFKC(c4) == NFKC(c5), 78 self.assertTrue(c5 == NFKD(c1) == NFKD(c2) == \ 79 NFKD(c3) == NFKD(c4) == NFKD(c5),
|
/external/chromium_org/content/browser/ |
storage_partition_impl_map_unittest.cc | 23 StoragePartitionImplMap::StoragePartitionConfig c5("b", std::string(), true); 37 EXPECT_TRUE(less(c4, c5)); 47 EXPECT_FALSE(less(c5, c4));
|
/external/chromium_org/v8/test/mjsunit/ |
generated-transition-stub.js | 153 c5 = [0, 2.5, 0]; 155 c5[i] = 0; 157 assertTrue(%HasFastDoubleElements(c5)); 158 assertTrue(!%HasFastHoleyElements(c5)); 159 transition3(c5, 0, new Array(5)); 160 assertTrue(!%HasFastHoleyElements(c5)); 161 assertTrue(%HasFastObjectElements(c5)); 162 assertEquals(5, c5[0].length);
|
/external/clang/test/SemaCXX/ |
string-init.cpp | 20 char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
codec_unittest.cc | 49 AudioCodec c5(96, "A", 44100, 20000, 1, 3); 55 EXPECT_TRUE(c0 != c5); 128 VideoCodec c5(96, "V", 320, 200, 10, 3); 134 EXPECT_TRUE(c0 != c5); 186 VideoEncoderConfig c5(VideoCodec( 200 EXPECT_TRUE(c1 != c5); 251 DataCodec c5(0, "", 0); 253 EXPECT_TRUE(c5 == c4);
|
/external/chromium/base/ |
callback_unittest.cc | 83 Callback<void(int,int,int,int,int)> c5; local 91 EXPECT_TRUE(c5.is_null());
|
/external/chromium_org/base/ |
callback_unittest.cc | 82 Callback<void(int,int,int,int,int)> c5; local 90 EXPECT_TRUE(c5.is_null());
|
callback_list_unittest.cc | 133 CallbackList<void(int, int, int, int, int)> c5; local 135 subscription5 = c5.Add(Bind(&Summer::AddFiveParam, Unretained(&s))); 137 c5.Notify(1, 2, 3, 4, 5);
|
bind_unittest.cc | 272 Callback<int(int,int,int,int,int)> c5 = Bind(&Sum, 32); local 273 EXPECT_EQ(87, c5.Run(13, 12, 11, 10, 9)); 284 Callback<int(int,int,int,int,int)> c5 = Bind(c6, 32); local 285 EXPECT_EQ(87, c5.Run(13, 12, 11, 10, 9)); 287 Callback<int(int,int,int,int)> c4 = Bind(c5, 16);
|
/external/clang/test/CodeGenCXX/ |
mangle-ms-return-qualifiers.cpp | 68 const A* c5() { return 0; } function 69 // CHECK: "\01?c5@@YAPBVA@@XZ"
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontTest.cpp | 80 static UChar c5[] = { 0x1DFF }; local 81 EXPECT_EQ(Font::Complex, Font::characterRangeCodePath(c5, 1)); 117 static UChar c5[] = { 0xDC00, 0xDBFF }; local 118 EXPECT_EQ(Font::Simple, Font::characterRangeCodePath(c5, 2)); 162 static UChar c5[] = { 0x1E00, 0x2FF }; local 163 EXPECT_EQ(Font::SimpleWithGlyphOverflow, Font::characterRangeCodePath(c5, 2));
|
/dalvik/dx/tests/024-code-bytecode/ |
small-class.txt | 293 c5 0002 04 # 01bb: multianewarray 0002, #04 296 c8 70000000 # 01c5: goto_w 700001c5 297 c9 fffffffb # 01ca: jsr_w 000001c5
|
/external/libvorbis/vq/ |
Makefile.am | 21 44c3.vqs 44c4.vqs 44c5.vqs 44c6.vqs 44c7.vqs 44c8.vqs 44c9.vqs \
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
itercoll.cpp | 159 Collator *c5 = Collator::createInstance(Locale("ja", "JP", ""), status); local 161 iter = ((RuleBasedCollator*)c5)->createCollationElementIterator(source); 167 delete c5;
|