HomeSort by relevance Sort by last modified time
    Searched refs:c2 (Results 326 - 350 of 629) sorted by null

<<11121314151617181920>>

  /gdk/samples/quake/jni/
common.cpp 259 int c1, c2; local
264 c2 = *s2++;
269 if (c1 != c2)
273 if (c2 >= 'a' && c2 <= 'z')
274 c2 -= ('a' - 'A');
275 if (c1 != c2)
    [all...]
  /bionic/libc/regex/
regcomp.c 1232 samesets(struct re_guts *g, int c1, int c2)
1238 unsigned uc2 = (uch)c2;
1254 int c2; local
1265 for (c2 = c+1; c2 <= CHAR_MAX; c2++)
1266 if (cats[c2] == 0 && samesets(g, c, c2))
1267 cats[c2] = cat;
    [all...]
  /external/llvm/lib/Support/
regcomp.c 1240 samesets(struct re_guts *g, int c1, int c2)
1246 unsigned uc2 = (uch)c2;
1262 int c2; local
1273 for (c2 = c+1; c2 <= CHAR_MAX; c2++)
1274 if (cats[c2] == 0 && samesets(g, c, c2))
1275 cats[c2] = cat;
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 1232 samesets(struct re_guts *g, int c1, int c2)
1238 unsigned uc2 = (uch)c2;
1254 int c2; local
1265 for (c2 = c+1; c2 <= CHAR_MAX; c2++)
1266 if (cats[c2] == 0 && samesets(g, c, c2))
1267 cats[c2] = cat;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
TreeToNFAConverter.g 357 | ^(CHAR_RANGE c1=CHAR_LITERAL c2=CHAR_LITERAL)
360 $g = factory.build_CharRange($c1.text, $c2.text);
764 | ^(CHAR_RANGE c1=CHAR_LITERAL c2=CHAR_LITERAL)
769 int b = Grammar.getCharValueFromGrammarCharLiteral($c2.text);
848 | ^(CHAR_RANGE c1=CHAR_LITERAL c2=CHAR_LITERAL)
849 {{ $alts = IntervalSet.of( Grammar.getCharValueFromGrammarCharLiteral($c1.text), Grammar.getCharValueFromGrammarCharLiteral($c2.text) ).size(); }}
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 31 CipherSuite c2 = new CipherSuite("CipherSuite2", false, 0, "", "", local
37 if (!c1.equals(c2) || c1.equals(c3) || c4.equals(c1) || c4.equals(c3)) {
93 CipherSuite c2 = new CipherSuite("CipherSuite2", false, local
  /external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 356 uint c2 = QChar::toCaseFolded(ushort(b[i])); local
357 if (c1 != c2)
358 return c1 - c2;
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 378 const QPainterPath::Element& c2 = m_path.elementAt(i + 2); local
381 Q_ASSERT(c2.type == QPainterPath::CurveToDataElement);
386 pelement.points[2] = QPointF(c2);
  /external/webkit/Tools/android/flex-2.5.4a/
misc.c 195 register char *c2; local
209 for ( c2 = copy; (*c2++ = *str++) != 0; )
  /external/wpa_supplicant_8/src/crypto/
ms_funcs.c 45 u8 c2 = utf8_string[++i]; local
49 ((c & 0x1F) << 6) | (c2 & 0x3F));
60 ((c2 & 0x3F) << 6) | (c3 & 0x3F));
  /external/clang/test/Sema/
array-init.c 161 char c2[] = { "Hello", "Good bye" }; //expected-warning{{excess elements in char array initializer}} local
format-strings.c 340 void pr7981(wint_t c, wchar_t c2) {
345 printf("%lc", c2); // no-warning
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 290 wchar_t c2 = L'\u0041'; // expected-warning {{specifying character 'A' with a universal character name is incompatible with C++98}} member in namespace:LiteralUCNs
nested-name-spec.cpp 29 class C2 {
39 void C2::m() const { } // expected-error{{out-of-line definition of 'm' does not match any declaration in 'C2'}}
41 void C2::f(int) { } // expected-error{{out-of-line definition of 'f' does not match any declaration in 'C2'}}
43 void C2::m() {
65 struct A::C c2; variable in typeref:struct:C
99 typedef void C2::f5(int); // expected-error{{typedef declarator cannot be qualified}}
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 301 Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f)); local
304 // assertEquals(c1, c2);
307 assertEquals(c1.hashCode(), c2.hashCode());
309 assertEquals(c1.apply(1.0f), c2.apply(1.0f));
310 assertEquals(c1.apply(5.0f), c2.apply(5.0f));
  /external/icu4c/common/
uidna.cpp 95 UChar c1,c2; local
106 c2 = s2[i];
109 if(c1!=c2) {
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
  /external/icu4c/tools/toolutil/
ucbuf.c 376 UChar32 c32,c1,c2; local
392 c2 = *(buf->currentPos);
431 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 105 | Some (Token.Kwd c2) ->
108 let next_prec = precedence c2 in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 116 | Some (Token.Kwd c2) ->
119 let next_prec = precedence c2 in
  /external/v8/test/mjsunit/compiler/
inline-construct.js 84 function c2(a, b, counter) { function
90 TestInAllContexts(c2);
  /external/valgrind/main/callgrind/
events.c 269 Bool CLG_(is_equal_cost)(EventSet* es, ULong* c1, ULong* c2)
273 if (!c1) return CLG_(is_zero_cost)(es, c2);
274 if (!c2) return CLG_(is_zero_cost)(es, c1);
277 if (c1[i] != c2[i]) return False;
  /external/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 835 unsigned char csum, c1, c2; local
863 c2 = fromhex (readchar (0));
865 if (csum == (c1 << 4) + c2)
869 (c1 << 4) + c2, csum, buf);
  /frameworks/native/opengl/libagl/
context.h 550 int32_t c0, int32_t c1, int32_t c2) const;
553 GGLfixed c0, GGLfixed c1, GGLfixed c2) const;
556 int32_t c0, int32_t c1, int32_t c2) const;
559 int32_t c0, int32_t c1, int32_t c2) const;
  /external/bluetooth/bluez/sbc/
sbc_primitives_neon.c 254 "vmov.s32 q15, %[c2]\n"
284 [c2] "i" (31 - SCALE_OUT_BITS)
413 "vmov.s32 q13, %[c2]\n"
524 [c2] "i" (31 - SCALE_OUT_BITS),
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 

Completed in 1812 milliseconds

<<11121314151617181920>>