Searched defs:one_byte (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dsfinae-1.cpp4 typedef char one_byte; typedef
7 template<typename T> one_byte __is_class_check(int T::*);
/external/v8/src/
H A Duri.h87 bool one_byte = true; local
97 one_byte = false;
110 if (one_byte) {
H A Djsregexp.cc1028 inline bool one_byte() { return one_byte_; } function in class:v8::internal::RegExpCompiler
1074 bool one_byte, Zone* zone)
1079 one_byte_(one_byte),
1644 bool one_byte = compiler->one_byte(); local
1646 int length = GetCaseIndependentLetters(isolate, c, one_byte, chars);
1656 if (one_byte && c > String::kMaxOneByteCharCodeU) {
1671 bool one_byte, uc16 c1, uc16 c2,
1674 if (one_byte) {
1725 bool one_byte local
1073 RegExpCompiler(int capture_count, bool ignore_case, bool one_byte, Zone* zone) argument
1670 ShortCutEmitCharacterPair(RegExpMacroAssembler* macro_assembler, bool one_byte, uc16 c1, uc16 c2, Label* on_failure) argument
2115 EmitCharClass(RegExpMacroAssembler* macro_assembler, RegExpCharacterClass* cc, bool one_byte, Label* on_failure, int cp_offset, bool check_offset, bool preloaded, Zone* zone) argument
2691 Advance(int by, bool one_byte) argument
3233 bool one_byte = compiler->one_byte(); local
3510 bool one_byte = compiler->one_byte(); local
[all...]
H A Dobjects.cc1131 bool one_byte = true; local
1136 one_byte = false;
1140 if (one_byte) {
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-2.cpp2 typedef char one_byte; typedef
26 one_byte operator+(N1::X, N2::Y);
/external/v8/src/arm64/
H A Dcodegen-arm64.cc488 Label one_byte, done; local
491 __ TestAndBranchIfAnySet(result, kStringEncodingMask, &one_byte);
495 __ Bind(&one_byte);
/external/v8/src/x64/
H A Dcodegen-x64.cc550 Label one_byte; local
555 __ j(not_zero, &one_byte, Label::kNear);
568 __ bind(&one_byte);
/external/v8/src/arm/
H A Dcodegen-arm.cc762 Label one_byte, done; local
766 __ b(ne, &one_byte);
770 __ bind(&one_byte);
/external/v8/src/mips/
H A Dcodegen-mips.cc1062 Label one_byte, done; local
1066 __ Branch(&one_byte, ne, at, Operand(zero_reg));
1072 __ bind(&one_byte);
/external/v8/src/mips64/
H A Dcodegen-mips64.cc951 Label one_byte, done; local
955 __ Branch(&one_byte, ne, at, Operand(zero_reg));
961 __ bind(&one_byte);
/external/v8/src/x87/
H A Dcodegen-x87.cc532 Label one_byte; local
537 __ j(not_zero, &one_byte, Label::kNear);
549 __ bind(&one_byte);
/external/v8/src/ia32/
H A Dcodegen-ia32.cc890 Label one_byte; local
895 __ j(not_zero, &one_byte, Label::kNear);
907 __ bind(&one_byte);
/external/v8/test/cctest/
H A Dtest-strings.cc944 char* one_byte = NewArray<char>(i + 1); local
946 one_byte[j] = 'a';
950 OneByteResource* one_byte_resource = new OneByteResource(one_byte, i);
986 " var one_byte = Array(max_length + 1);"
989 " one_byte[i] = one_byte_chars.substring(0, i);"
993 " if (one_byte[i] != external_one_byte[i]) return 3;"
1004 " if (one_byte[i] != (one_byte[j] + one_byte[i - j])) return 8;"
1005 " if (one_byte[
[all...]
H A Dtest-heap.cc874 char* one_byte = NewArray<char>(length + 1); local
876 one_byte[length] = 0;
878 one_byte[i] = 'a';
887 factory->InternalizeOneByteString(OneByteVector(one_byte, length));
895 factory->NewStringFromUtf8(Vector<const char>(one_byte, length))
900 DeleteArray(one_byte);

Completed in 388 milliseconds