Home
last modified time | relevance | path

Searched refs:one_byte (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/v8/test/mjsunit/regress/
Dregress-320948.js30 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);
Dregress-seqstrsetchar-ex1.js39 var one_byte = %NewString(n, true);
52 return one_byte + two_byte;
/external/chromium_org/v8/test/mjsunit/lithium/
DSeqStringSetChar.js31 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/
Duri.js216 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;
Duri.h108 bool one_byte = true; in UnescapeSlow() local
118 one_byte = false; in UnescapeSlow()
130 if (one_byte) { in UnescapeSlow()
Dstring.js862 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;
Druntime.cc7065 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/
Dsfinae-1.cpp4 typedef char one_byte; typedef
7 template<typename T> one_byte __is_class_check(int T::*);
/external/clang/test/SemaTemplate/
Dinstantiate-expr-2.cpp2 typedef char one_byte; typedef
26 one_byte operator+(N1::X, N2::Y);