/external/regex-re2/re2/ |
parse.cc | 317 static void AddFoldedRange(CharClassBuilder* cc, Rune lo, Rune hi, int depth) { 327 if (!cc->AddRange(lo, hi)) // lo-hi was already there? we're done 361 AddFoldedRange(cc, lo1, hi1, depth+1); 519 // Adds r to cc, along with r's upper case if foldascii is set. 520 static void AddLiteral(CharClassBuilder* cc, Rune r, bool foldascii) { 521 cc->AddRange(r, r); 523 cc->AddRange(r + 'A' - 'a', r + 'A' - 'a'); 957 CharClass* cc = re->cc(); local 958 for (CharClass::iterator it = cc->begin(); it != cc->end(); ++it [all...] |
regexp.h | 94 // Keep in sync with string list kOpcodeNames[] in testing/dump.cc 159 // Keep in sync with string list in regexp.cc 328 CharClass* cc() { DCHECK_EQ(op_, kRegexpCharClass); return cc_; } function in class:re2::Regexp 393 static Regexp* NewCharClass(CharClass* cc, ParseFlags flags); 419 // on the Regexp. See mimics_pcre.cc for the exact conditions. 592 void AddCharClass(CharClassBuilder* cc);
|
/ndk/sources/host-tools/nawk-20071023/ |
b.c | 773 struct charclass *cc; local 817 for (cc = charclasses; cc->cc_name; cc++) 818 if (strncmp((const char *) prestr + 1, (const char *) cc->cc_name, cc->cc_namelen) == 0) 820 if (cc->cc_name != NULL && prestr[1 + cc->cc_namelen] == ':' && 821 prestr[2 + cc->cc_namelen] == ']') { 822 prestr += cc->cc_namelen + 3 [all...] |
/build/core/ |
binary.mk | 194 LOCAL_CC := $($(my_prefix)CC) 277 ## Compile the .proto files to .cc and then to .o 286 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath))) 287 proto_generated_objects := $(patsubst %.cc,%.o, $(proto_generated_cc_sources)) 292 $(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC) 293 $(transform-proto-to-cc) 295 proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources)) 296 $(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc 300 $(proto_generated_objects): $(proto_generated_cc_sources_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
crypto_cryptoapi.c | 671 PCCERT_CONTEXT cc; local 677 cc = CertCreateCertificateContext(X509_ASN_ENCODING | 679 if (!cc) { 689 CertFreeCertificateContext(cc); 695 &cc->pCertInfo->SubjectPublicKeyInfo, 700 CertFreeCertificateContext(cc); 704 CertFreeCertificateContext(cc);
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_cryptoapi.c | 662 PCCERT_CONTEXT cc; local 668 cc = CertCreateCertificateContext(X509_ASN_ENCODING | 670 if (!cc) { 680 CertFreeCertificateContext(cc); 686 &cc->pCertInfo->SubjectPublicKeyInfo, 691 CertFreeCertificateContext(cc); 695 CertFreeCertificateContext(cc);
|
/dalvik/vm/compiler/ |
Compiler.cpp | 97 int cc; local 143 cc = pthread_cond_signal(&gDvmJit.compilerQueueActivity); 144 assert(cc == 0); 656 int cc; local 657 cc = pthread_cond_signal(&gDvmJit.compilerQueueEmpty); 658 assert(cc == 0);
|
/external/icu4c/i18n/ |
ucol_cnt.cpp | 187 uint8_t ccMax = 0, ccMin = 255, cc = 0; local 189 cc = u_getCombiningClass(table->elements[i]->codePoints[j]); 190 if(cc>ccMax) { 191 ccMax = cc; 193 if(cc<ccMin) { 194 ccMin = cc;
|
/external/javassist/src/main/javassist/compiler/ |
JvstCodeGen.java | 44 public JvstCodeGen(Bytecode b, CtClass cc, ClassPool cp) { 45 super(b, cc, cp); 46 setTypeChecker(new JvstTypeChecker(cc, cp, this)); 548 private int recordVar(CtClass cc, String varName, int varNo, 551 if (cc == CtClass.voidType) { 557 setType(cc);
|
/external/v8/src/ia32/ |
macro-assembler-ia32.h | 89 Condition cc, 775 void IncrementCounter(Condition cc, StatsCounter* counter, int value); 776 void DecrementCounter(Condition cc, StatsCounter* counter, int value); 782 // Calls Abort(msg) if the condition cc is not satisfied. 784 void Assert(Condition cc, const char* msg); [all...] |
assembler-ia32.h | 229 // Returns the equivalent of !cc. 233 inline Condition NegateCondition(Condition cc) { 234 return static_cast<Condition>(cc ^ 1); 239 inline Condition ReverseCondition(Condition cc) { 240 switch (cc) { 258 return cc; 722 void cmov(Condition cc, Register dst, Register src) { 723 cmov(cc, dst, Operand(src)); 725 void cmov(Condition cc, Register dst, const Operand& src); 860 // Takes a branch opcode (cc) and a label (L) and generate [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
fastquant_inline.h | 453 register int32 cc = coeff; local 462 : "r"(cc), 515 register int32 cc = (int32)round; local 521 "r"(cc)); 541 register int32 cc = coeff; local 548 : "r"(cc),
|
/external/v8/src/x64/ |
assembler-x64.cc | 939 void Assembler::cmovq(Condition cc, Register dst, Register src) { 940 if (cc == always) { 942 } else if (cc == never) { 947 ASSERT(cc >= 0); // Use mov for unconditional moves. 949 // Opcode: REX.W 0f 40 + cc /r. 952 emit(0x40 + cc); 957 void Assembler::cmovq(Condition cc, Register dst, const Operand& src) { 958 if (cc == always) { 960 } else if (cc == never) { 963 ASSERT(cc >= 0) [all...] |
assembler-x64.h | 322 // Returns the equivalent of !cc. 326 inline Condition NegateCondition(Condition cc) { 327 return static_cast<Condition>(cc ^ 1); 332 inline Condition ReverseCondition(Condition cc) { 333 switch (cc) { 351 return cc; 738 void cmovq(Condition cc, Register dst, Register src); 739 void cmovq(Condition cc, Register dst, const Operand& src); 740 void cmovl(Condition cc, Register dst, Register src); 741 void cmovl(Condition cc, Register dst, const Operand& src) [all...] |
/frameworks/av/media/libstagefright/ |
MetaData.cpp | 345 char cc[5]; local 346 MakeFourCCString(key, cc); 348 ALOGI("%s: %s", cc, item.asString().string());
|
/system/core/libpixelflinger/codeflinger/ |
GGLAssembler.cpp | 707 int cc = NV; local 709 case GGL_NEVER: cc = NV; break; 710 case GGL_LESS: cc = LT; break; 711 case GGL_EQUAL: cc = EQ; break; 712 case GGL_LEQUAL: cc = LS; break; 713 case GGL_GREATER: cc = HI; break; 714 case GGL_NOTEQUAL: cc = NE; break; 715 case GGL_GEQUAL: cc = HS; break; 717 B(cc^1, "discard_after_textures"); 732 int cc=AL, ic=AL local [all...] |
/dalvik/vm/ |
Misc.cpp | 36 01234567: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 0123456789abcdef\n 683 int cc = read(fd, lineBuf, sizeof(lineBuf)-1); local 684 if (cc <= 0) { 685 const char* msg = (cc == 0) ? "unexpected EOF" : strerror(errno); 691 lineBuf[cc] = '\0';
|
/development/build/tools/ |
windows_sdk.mk | 39 llvm-rs-cc \ 50 llvm-rs-cc \
|
/external/harfbuzz/src/ |
harfbuzz-myanmar.c | 350 MymrCharClass cc; local 358 cc = getMyanmarCharClass(uc[i]); 359 if (kinzi >= 0 && i > base && (cc & Mymr_CF_AFTER_KINZI)) { 370 switch(cc & Mymr_CF_POS_MASK) {
|
/external/icu4c/tools/gennorm2/ |
n2builder.h | 59 void setCC(UChar32 c, uint8_t cc);
|
/external/qemu/distrib/sdl-1.2.15/build-scripts/ |
makedep.sh | 54 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 58 cc) cat >>${output}.new <<__EOF__ 60 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 66 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 72 \$(LIBTOOL) --tag=CC --mode=compile \$(auxdir)/strip_fPIC.sh \$(NASM) -I\$(srcdir)/src/hermes/ $src -o \$@ 78 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
|
/external/v8/src/mips/ |
disasm-mips.cc | 240 // Print the integer value of the cc field for the bc1t/f instructions. 242 int cc = instr->FBccValue(); local 243 out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%d", cc); 247 // Print the integer value of the cc field for the FP compare instructions. 249 int cc = instr->FCccValue(); local 250 out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "cc(%d)", cc); 422 case 'b': { // 'bc - Special for bc1 cc field. 427 case 'C': { // 'Cc - Special for c.xx.d cc field [all...] |
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
options.py | 35 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.") variable in class:Options 57 suggest_reviewers = make_option("--suggest-reviewers", action="store_true", default=False, help="Offer to CC appropriate reviewers.")
|
/external/zlib/src/contrib/puff/ |
Makefile | 13 cc -fprofile-arcs -ftest-coverage -o puft puff.c pufftest.o
|
/ndk/build/tools/ |
build-gabi++.sh | 98 GABIXX_SOURCES=$(cd $GABIXX_SRCDIR && ls src/*.cc)
|