Searched refs:one_byte (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/v8/test/mjsunit/regress/ |
D | regress-320948.js | 30 var one_byte = %NewString(10, true); variable 36 foo1(one_byte, 0, 0); 47 bar1(one_byte, 0, 0); 48 bar1(one_byte, 0, 0); 49 bar1(one_byte, 0, 0); 51 bar1(one_byte, 0, 0);
|
D | regress-seqstrsetchar-ex1.js | 39 var one_byte = %NewString(n, true); 52 return one_byte + two_byte;
|
/external/chromium_org/v8/test/mjsunit/lithium/ |
D | SeqStringSetChar.js | 31 var one_byte = %NewString(3, true); 32 %_OneByteSeqStringSetChar(one_byte, 0, code); 33 %_OneByteSeqStringSetChar(one_byte, 1, code); 34 %_OneByteSeqStringSetChar(one_byte, i, code); 39 return one_byte + two_byte;
|
/external/chromium_org/v8/src/ |
D | uri.js | 216 var one_byte = %NewString(uriLength, NEW_ONE_BYTE_STRING); 228 %_OneByteSeqStringSetChar(one_byte, index++, 37); // '%'. 229 %_OneByteSeqStringSetChar(one_byte, index++, uri.charCodeAt(k+1)); 230 %_OneByteSeqStringSetChar(one_byte, index++, uri.charCodeAt(k+2)); 232 %_OneByteSeqStringSetChar(one_byte, index++, cc); 237 %_OneByteSeqStringSetChar(one_byte, index++, code); 241 one_byte = %TruncateString(one_byte, index); 242 if (k == uriLength) return one_byte; 279 return one_byte + two_byte;
|
D | uri.h | 108 bool one_byte = true; in UnescapeSlow() local 118 one_byte = false; in UnescapeSlow() 130 if (one_byte) { in UnescapeSlow()
|
D | string.js | 862 var one_byte = %NewString(n, NEW_ONE_BYTE_STRING); 869 %_OneByteSeqStringSetChar(one_byte, i, code); 871 if (i == n) return one_byte; 872 one_byte = %TruncateString(one_byte, i); 880 return one_byte + two_byte;
|
D | runtime.cc | 7065 bool one_byte = special->HasOnlyOneByteChars(); in RUNTIME_FUNCTION() local 7106 if (one_byte && !element->HasOnlyOneByteChars()) { in RUNTIME_FUNCTION() 7107 one_byte = false; in RUNTIME_FUNCTION() 7123 if (one_byte) { in RUNTIME_FUNCTION()
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/ |
D | sfinae-1.cpp | 4 typedef char one_byte; typedef 7 template<typename T> one_byte __is_class_check(int T::*);
|
/external/clang/test/SemaTemplate/ |
D | instantiate-expr-2.cpp | 2 typedef char one_byte; typedef 26 one_byte operator+(N1::X, N2::Y);
|