HomeSort by relevance Sort by last modified time
    Searched defs:c2 (Results 526 - 550 of 1527) sorted by null

<<21222324252627282930>>

  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-cxx11-nowarn.cpp 12 char c2{x}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}}
153 Agg<char> c2 = {127}; // OK local
196 Agg<const unsigned char> c2 = {j}; // expected-warning {{from type 'int' to 'const unsigned char' in}} expected-note {{silence}} local
  /external/clang/test/CodeGenCXX/
mangle-ms-return-qualifiers.cpp 59 const A c2() { return A(); } function
60 // CHECK: "\01?c2@@YA?BVA@@XZ"
mangle-ms-templates.cpp 67 Class<Nested<Typename> > c2; local
x86_64-arguments.cpp 70 struct c2 : public s2 {}; struct in namespace:PR7742
72 // CHECK-LABEL: define <2 x float> @_ZN6PR77423fooEPNS_2c2E(%"struct.PR7742::c2"* %P)
73 c2 foo(c2 *P) {
74 return c2();
  /external/clang/test/Sema/
MicrosoftExtensions.c 19 char c2[]; /* expected-warning {{flexible array member 'c2' in a union is a Microsoft extension}} */ member in union:C::__anon15362
  /external/clang/test/SemaCXX/
array-bounds.cpp 70 char c2 = str2[5]; // expected-warning {{array index 5 is past the end of the array (which contains 4 elements)}} local
191 char c2[1]; member in struct:tailpad::foo
198 char c2[1]; member in class:tailpad::baz
203 F->c2[3] + // no warning, foo could have tail padding allocated.
205 B->c2[3]; // no warning, baz could have tail padding allocated.
cxx0x-initializer-constructor.cpp 406 C c2[3] = { member in namespace:PR11410
scope-check.cpp 242 const C &c2 = c0; local
  /external/curl/lib/
cookie.c 1000 struct Cookie *c2 = *(struct Cookie **)p2; local
1005 l2 = c2->path ? strlen(c2->path) : 0;
1012 l2 = c2->domain ? strlen(c2->domain) : 0;
1018 if(c1->name && c2->name)
1019 return strcmp(c1->name, c2->name);
    [all...]
  /external/dnsmasq/src/
forward.c 739 unsigned char c1, c2; local
748 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
749 !(size = c1 << 8 | c2) ||
842 c2 = size;
845 !read_write(last_server->tcpfd, &c2, 1, 0) ||
848 !read_write(last_server->tcpfd, &c2, 1, 1))
855 m = (c1 << 8) | c2;
891 c2 = m;
893 !read_write(confd, &c2, 1, 0) ||
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CaseMapImpl.java 311 char c2 = src.charAt(titleStart+1); local
312 if (c2 == 'j') {
319 assert c == c2; local
321 } else if (c2 == 'J') {
326 assert c == c2; local
    [all...]
UBiDiProps.java 190 int c2; local
197 c2=getMirrorCodePoint(m);
198 if(c==c2) {
201 } else if(c<c2) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
BiDiConformanceTest.java 380 char c0, c1, c2; local
387 c2=line.charAt(lineIndex+2);
388 if(c2=='E') {
390 } else if(c2=='I') {
392 } else if(c2=='O') {
400 c2=line.charAt(lineIndex+2);
401 if(c2=='E') {
403 } else if(c2=='I') {
405 } else if(c2=='O') {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
TestUCharacterIterator.java 347 int c1, c2; local
360 c2=iter32.previous();
363 c2=iter32.current();
366 c2=iter32.next();
370 if(c1!=c2) {
374 +"got c1= " + hex(c1) +" != expected c2= "+ hex(c2));
398 int c1, c2; local
406 c2=ci.previous();
409 c2=ci.current()
    [all...]
  /external/icu/icu4c/source/common/
uiter.cpp 1025 UChar32 c, c2; local
1035 if(U16_IS_TRAIL(c2=iter->current(iter))) {
1036 c=U16_GET_SUPPLEMENTARY(c, c2);
1042 if(U16_IS_LEAD(c2=iter->previous(iter))) {
1043 c=U16_GET_SUPPLEMENTARY(c2, c);
1045 if(c2>=0) {
1056 UChar32 c, c2; local
1060 if(U16_IS_TRAIL(c2=iter->next(iter))) {
1061 c=U16_GET_SUPPLEMENTARY(c, c2);
1062 } else if(c2>=0)
1072 UChar32 c, c2; local
    [all...]
unisetspan.cpp 486 UChar c=*s, c2; local
487 if(c>=0xd800 && c<=0xdbff && length>=2 && U16_IS_TRAIL(c2=s[1])) {
488 return set.contains(U16_GET_SUPPLEMENTARY(c, c2)) ? 2 : -2;
495 UChar c=s[length-1], c2; local
496 if(c>=0xdc00 && c<=0xdfff && length>=2 && U16_IS_LEAD(c2=s[length-2])) {
497 return set.contains(U16_GET_SUPPLEMENTARY(c2, c)) ? 2 : -2;
    [all...]
ustrcase.cpp 159 UChar32 c, c2 = 0; local
173 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff)) {
175 dest[destIndex++]=(UChar)c2;
910 UChar32 c2 = 0; local
912 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff)) {
914 dest[destIndex++]=(UChar)c2;
981 UChar32 c, c2 = 0; local
988 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff))
1162 UChar32 c1, c2, cp1, cp2; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utf8tst.c 415 UChar32 c, c2, expected; local
457 U8_GET(input, 0, j, -1, c2);
458 if(c2!=c) {
459 log_err("U8_NEXT(from %d)=U+%04x != U+%04x=U8_GET(at %d)\n", i0, c, c2, j);
461 U8_GET_OR_FFFD(input, 0, j, -1, c2);
463 if(c2!=expected) {
464 log_err("U8_NEXT_OR_FFFD(from %d)=U+%04x != U+%04x=U8_GET_OR_FFFD(at %d)\n", i0, expected, c2, j);
    [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 397 UChar32 c2 = cpi.next(); local
398 if(c1 != c2) {
400 name, (long)c1, (long)c2, cpi.getIndex());
409 UChar32 c2 = cpi.previous(); local
410 if(c1 != c2) {
412 name, (long)c1, (long)c2, cpi.getIndex());
420 UChar32 c2 = cpi.next(); local
421 if(c1 != c2) {
423 name, (long)c1, (long)c2, cpi.getIndex());
432 UChar32 c2 = cpi.previous() local
    [all...]
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 196 int32_t c2=(uint8_t)*s2++; local
197 cmp=c1-c2;
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.cpp 378 UChar32 c32,c1,c2; local
394 c2 = *(buf->currentPos);
433 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CaseMapImpl.java 307 char c2 = src.charAt(titleStart+1); local
308 if (c2 == 'j') {
315 assert c == c2; local
317 } else if (c2 == 'J') {
322 assert c == c2; local
    [all...]
UBiDiProps.java 186 int c2; local
193 c2=getMirrorCodePoint(m);
194 if(c==c2) {
197 } else if(c<c2) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
BiDiConformanceTest.java 379 char c0, c1, c2; local
386 c2=line.charAt(lineIndex+2);
387 if(c2=='E') {
389 } else if(c2=='I') {
391 } else if(c2=='O') {
399 c2=line.charAt(lineIndex+2);
400 if(c2=='E') {
402 } else if(c2=='I') {
404 } else if(c2=='O') {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
TestUCharacterIterator.java 346 int c1, c2; local
359 c2=iter32.previous();
362 c2=iter32.current();
365 c2=iter32.next();
369 if(c1!=c2) {
373 +"got c1= " + hex(c1) +" != expected c2= "+ hex(c2));
397 int c1, c2; local
405 c2=ci.previous();
408 c2=ci.current()
    [all...]

Completed in 1667 milliseconds

<<21222324252627282930>>