HomeSort by relevance Sort by last modified time
    Searched refs:uc16 (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/v8/src/
regexp-macro-assembler-tracer.h 50 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
51 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
61 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
62 uc16 minus,
63 uc16 and_with,
65 virtual void CheckCharacterInRange(uc16 from,
66 uc16 to,
68 virtual void CheckCharacterNotInRange(uc16 from,
69 uc16 to,
72 virtual bool CheckSpecialCharacterClass(uc16 type
    [all...]
regexp-macro-assembler-irregexp.h 83 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
84 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
92 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
93 uc16 minus,
94 uc16 mask,
96 virtual void CheckCharacterInRange(uc16 from,
97 uc16 to,
99 virtual void CheckCharacterNotInRange(uc16 from,
100 uc16 to,
scanner-character-streams.h 52 virtual void SlowPushBack(uc16 character);
57 const uc16* pushback_limit_;
58 uc16 buffer_[kBufferSize];
124 const uc16* raw_data_; // Pointer to the actual array of characters.
preparser-api.cc 92 pushback_buffer_backing_ = NewArray<uc16>(kPushBackSize);
102 uc16* new_buffer = NewArray<uc16>(pushback_buffer_backing_size_ * 2);
113 static_cast<uc16>(ch);
127 uc16* buffer_start = buffer_ + kPushBackSize;
138 buffer_start[buffer_end_++ - buffer_start] = static_cast<uc16>(value);
161 uc16 buffer_[kPushBackSize + kBufferSize];
163 uc16* pushback_buffer_;
166 const uc16* pushback_buffer_end_cache_;
167 uc16* pushback_buffer_backing_
    [all...]
regexp-macro-assembler.h 88 virtual void CheckCharacterGT(uc16 limit, Label* on_greater) = 0;
89 virtual void CheckCharacterLT(uc16 limit, Label* on_less) = 0;
105 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
106 uc16 minus,
107 uc16 and_with,
109 virtual void CheckCharacterInRange(uc16 from,
110 uc16 to, // Both inclusive.
112 virtual void CheckCharacterNotInRange(uc16 from,
113 uc16 to, // Both inclusive.
129 virtual bool CheckSpecialCharacterClass(uc16 type
    [all...]
char-predicates-inl.h 86 inline bool IsRegExpWord(uc16 c) {
93 inline bool IsRegExpNewline(uc16 c) {
v8conversions.cc 93 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
94 const uc16* end = begin + str->length();
119 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
120 const uc16* end = begin + str->length();
regexp-macro-assembler-tracer.cc 205 explicit PrintablePrinter(uc16 character) : character_(character) { }
220 uc16 character_;
225 void RegExpMacroAssemblerTracer::CheckCharacterLT(uc16 limit, Label* on_less) {
235 void RegExpMacroAssemblerTracer::CheckCharacterGT(uc16 limit,
308 uc16 c,
309 uc16 minus,
310 uc16 mask,
323 uc16 from,
324 uc16 to,
339 uc16 from
    [all...]
scanner.h 118 const uc16* buffer_cursor_;
119 const uc16* buffer_end_;
175 *reinterpret_cast<uc16*>(&backing_store_[position_]) = code_unit;
186 Vector<const uc16> utf16_literal() {
189 return Vector<const uc16>(
190 reinterpret_cast<const uc16*>(backing_store_.start()),
233 // Ensure room for all currently read code units as UC16 as well
240 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
325 Vector<const uc16> literal_utf16_string()
    [all...]
  /external/v8/src/
regexp-macro-assembler-tracer.h 50 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
51 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
53 Vector<const uc16> str,
67 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
68 uc16 minus,
69 uc16 and_with,
71 virtual bool CheckSpecialCharacterClass(uc16 type,
scanner-character-streams.h 52 virtual void SlowPushBack(uc16 character);
57 const uc16* pushback_limit_;
58 uc16 buffer_[kBufferSize];
124 const uc16* raw_data_; // Pointer to the actual array of characters.
preparser-api.cc 92 pushback_buffer_backing_ = NewArray<uc16>(kPushBackSize);
102 uc16* new_buffer = NewArray<uc16>(pushback_buffer_backing_size_ * 2);
113 static_cast<uc16>(ch);
127 uc16* buffer_start = buffer_ + kPushBackSize;
138 buffer_start[buffer_end_++ - buffer_start] = static_cast<uc16>(value);
161 uc16 buffer_[kPushBackSize + kBufferSize];
163 uc16* pushback_buffer_;
166 const uc16* pushback_buffer_end_cache_;
167 uc16* pushback_buffer_backing_
    [all...]
regexp-macro-assembler-irregexp.h 83 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
84 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
92 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
93 uc16 minus,
94 uc16 mask,
100 virtual void CheckCharacters(Vector<const uc16> str,
char-predicates-inl.h 74 inline bool IsRegExpWord(uc16 c) {
81 inline bool IsRegExpNewline(uc16 c) {
v8conversions.cc 92 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
93 const uc16* end = begin + str->length();
116 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
117 const uc16* end = begin + str->length();
regexp-macro-assembler.h 83 virtual void CheckCharacterGT(uc16 limit, Label* on_greater) = 0;
84 virtual void CheckCharacterLT(uc16 limit, Label* on_less) = 0;
92 Vector<const uc16> str,
111 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
112 uc16 minus,
113 uc16 and_with,
128 virtual bool CheckSpecialCharacterClass(uc16 type,
180 enum Mode { ASCII = 1, UC16 = 2 };
scanner.h 137 const uc16* buffer_cursor_;
138 const uc16* buffer_end_;
194 *reinterpret_cast<uc16*>(&backing_store_[position_]) = code_unit;
200 Vector<const uc16> utf16_literal() {
203 return Vector<const uc16>(
204 reinterpret_cast<const uc16*>(backing_store_.start()),
247 // Ensure room for all currently read code units as UC16 as well
254 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
341 Vector<const uc16> literal_utf16_string()
    [all...]
regexp-macro-assembler-tracer.cc 201 void RegExpMacroAssemblerTracer::CheckCharacterLT(uc16 limit, Label* on_less) {
208 void RegExpMacroAssemblerTracer::CheckCharacterGT(uc16 limit,
268 uc16 c,
269 uc16 minus,
270 uc16 mask,
310 void RegExpMacroAssemblerTracer::CheckCharacters(Vector<const uc16> str,
326 uc16 type,
  /external/chromium_org/v8/src/arm/
regexp-macro-assembler-arm.h 54 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
55 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
67 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
68 uc16 minus,
69 uc16 mask,
71 virtual void CheckCharacterInRange(uc16 from,
72 uc16 to,
74 virtual void CheckCharacterNotInRange(uc16 from,
75 uc16 to,
82 virtual bool CheckSpecialCharacterClass(uc16 type
    [all...]
  /external/chromium_org/v8/src/ia32/
regexp-macro-assembler-ia32.h 53 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
54 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
66 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
67 uc16 minus,
68 uc16 mask,
70 virtual void CheckCharacterInRange(uc16 from,
71 uc16 to,
73 virtual void CheckCharacterNotInRange(uc16 from,
74 uc16 to,
81 virtual bool CheckSpecialCharacterClass(uc16 type, Label* on_no_match)
    [all...]
  /external/chromium_org/v8/src/mips/
regexp-macro-assembler-mips.h 56 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
57 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
69 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
70 uc16 minus,
71 uc16 mask,
73 virtual void CheckCharacterInRange(uc16 from,
74 uc16 to,
76 virtual void CheckCharacterNotInRange(uc16 from,
77 uc16 to,
84 virtual bool CheckSpecialCharacterClass(uc16 type
    [all...]
  /external/v8/src/arm/
regexp-macro-assembler-arm.h 60 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
61 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
62 virtual void CheckCharacters(Vector<const uc16> str,
78 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
79 uc16 minus,
80 uc16 mask,
85 virtual bool CheckSpecialCharacterClass(uc16 type,
227 // Which mode to generate code for (ASCII or UC16).
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.h 59 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
60 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
61 virtual void CheckCharacters(Vector<const uc16> str,
77 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
78 uc16 minus,
79 uc16 mask,
84 virtual bool CheckSpecialCharacterClass(uc16 type, Label* on_no_match);
196 // Which mode to generate code for (ASCII or UC16).
  /external/v8/src/mips/
regexp-macro-assembler-mips.h 62 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
63 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
64 virtual void CheckCharacters(Vector<const uc16> str,
80 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
81 uc16 minus,
82 uc16 mask,
87 virtual bool CheckSpecialCharacterClass(uc16 type,
232 // Which mode to generate code for (ASCII or UC16).
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.h 56 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
57 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
69 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
70 uc16 minus,
71 uc16 mask,
73 virtual void CheckCharacterInRange(uc16 from,
74 uc16 to,
76 virtual void CheckCharacterNotInRange(uc16 from,
77 uc16 to,
84 virtual bool CheckSpecialCharacterClass(uc16 type
    [all...]

Completed in 2409 milliseconds

1 2 3 4 5