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

/external/chromium_org/v8/test/mjsunit/lithium/
H A 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/test/mjsunit/regress/
H A Dregress-320948.js30 var one_byte = %NewString(10, true); variable
36 foo1(one_byte, 0, 0);
38 assertThrows("{ foo1(one_byte, new Object(), 0); }");
39 assertThrows("{ foo1(one_byte, 0, new Object()); }");
40 assertThrows("{ foo1(one_byte, 100000, 100; }");
41 assertThrows("{ foo1(one_byte, -1, 100; }");
47 bar1(one_byte, 0, 0);
48 bar1(one_byte, 0, 0);
49 bar1(one_byte, 0, 0);
51 bar1(one_byte,
[all...]
H A Dregress-seqstrsetchar-ex1.js39 var one_byte = %NewString(n, true);
52 return one_byte + two_byte;
/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/chromium_org/v8/src/
H A 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
[all...]
H A Duri.h108 bool one_byte = true; local
118 one_byte = false;
130 if (one_byte) {
H A 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;
H A Druntime.cc7065 bool one_byte = special->HasOnlyOneByteChars();
7106 if (one_byte && !element->HasOnlyOneByteChars()) {
7107 one_byte = false;
7123 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);

Completed in 320 milliseconds