HomeSort by relevance Sort by last modified time
    Searched refs:one_byte (Results 1 - 21 of 21) sorted by null

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 4 typedef char one_byte; typedef
7 template<typename T> one_byte __is_class_check(int T::*);
  /external/v8/test/mjsunit/lithium/
SeqStringSetChar.js 31 var one_byte = %NewString(3, true);
32 %_OneByteSeqStringSetChar(0, code, one_byte);
33 %_OneByteSeqStringSetChar(1, code, one_byte);
34 %_OneByteSeqStringSetChar(i, code, one_byte);
39 return one_byte + two_byte;
  /external/v8/src/
uri.js 216 var one_byte = %NewString(uriLength, NEW_ONE_BYTE_STRING);
228 %_OneByteSeqStringSetChar(index++, 37, one_byte); // '%'.
229 %_OneByteSeqStringSetChar(index++, uri.charCodeAt(k+1), one_byte);
230 %_OneByteSeqStringSetChar(index++, uri.charCodeAt(k+2), one_byte);
232 %_OneByteSeqStringSetChar(index++, cc, one_byte);
237 %_OneByteSeqStringSetChar(index++, code, one_byte);
241 one_byte = %TruncateString(one_byte, index);
242 if (k == uriLength) return one_byte;
279 return one_byte + two_byte
    [all...]
uri.h 87 bool one_byte = true; local
97 one_byte = false;
110 if (one_byte) {
jsregexp.cc 1028 inline bool one_byte() { return one_byte_; } function in class:v8::internal::RegExpCompiler
1644 bool one_byte = compiler->one_byte(); local
1725 bool one_byte = compiler->one_byte(); local
3233 bool one_byte = compiler->one_byte(); local
3510 bool one_byte = compiler->one_byte(); local
    [all...]
string.js 809 var one_byte = %NewString(n, NEW_ONE_BYTE_STRING);
816 %_OneByteSeqStringSetChar(i, code, one_byte);
818 if (i == n) return one_byte;
819 one_byte = %TruncateString(one_byte, i);
827 return one_byte + two_byte;
jsregexp.h 530 bool Rationalize(bool one_byte);
534 void Advance(int by, bool one_byte);
    [all...]
runtime.cc     [all...]
objects.cc 1131 bool one_byte = true; local
    [all...]
  /system/extras/perfprofd/quipper/
perf_utils.cc 63 string one_byte = str.substr(i * kNumHexDigitsInByte, kNumHexDigitsInByte); local
64 array[i] = strtol(one_byte.c_str(), &err, kHexRadix);
  /external/v8/test/mjsunit/regress/
regress-seqstrsetchar-ex1.js 39 var one_byte = %NewString(n, true);
52 return one_byte + two_byte;
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 2 typedef char one_byte; typedef
26 one_byte operator+(N1::X, N2::Y);
  /external/v8/src/arm64/
codegen-arm64.cc 488 Label one_byte, done; local
491 __ TestAndBranchIfAnySet(result, kStringEncodingMask, &one_byte);
495 __ Bind(&one_byte);
  /external/v8/src/x64/
codegen-x64.cc 550 Label one_byte; local
555 __ j(not_zero, &one_byte, Label::kNear);
568 __ bind(&one_byte);
  /external/v8/src/x87/
codegen-x87.cc 532 Label one_byte; local
537 __ j(not_zero, &one_byte, Label::kNear);
549 __ bind(&one_byte);
  /external/v8/src/arm/
codegen-arm.cc 762 Label one_byte, done; local
766 __ b(ne, &one_byte);
770 __ bind(&one_byte);
  /external/v8/src/ia32/
codegen-ia32.cc 890 Label one_byte; local
895 __ j(not_zero, &one_byte, Label::kNear);
907 __ bind(&one_byte);
    [all...]
  /external/v8/src/mips64/
codegen-mips64.cc 951 Label one_byte, done; local
    [all...]
  /external/v8/test/cctest/
test-strings.cc 944 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;
    [all...]
test-heap.cc 874 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);
    [all...]
  /external/v8/src/mips/
codegen-mips.cc 1062 Label one_byte, done; local
    [all...]

Completed in 733 milliseconds