Searched refs:current_char (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/v8/src/
H A Dinterpreter-irregexp.cc73 uint32_t current_char,
77 bool printable = (current_char < 127 && current_char >= 32);
86 current_char,
87 printable ? current_char : '.',
112 current_char, \
164 uint32_t current_char) {
278 current_char = subject[pos];
285 current_char = subject[pos];
295 current_char
69 TraceInterpreter(const byte* code_base, const byte* pc, int stack_depth, int current_position, uint32_t current_char, int bytecode_length, const char* bytecode_name) argument
159 RawMatch(Isolate* isolate, const byte* code_base, Vector<const Char> subject, int* registers, int current, uint32_t current_char) argument
[all...]
/external/chromium_org/net/tools/balsa/
H A Dbalsa_frame.h167 inline bool LineFramingFound(char current_char) { argument
168 return current_char == '\n';
173 inline bool HeaderFramingFound(char current_char) { argument
174 // Note that the 'if (current_char == '\n' ...)' test exists to ensure that
178 if (current_char == '\n' || current_char == '\r') {
182 term_chars_ |= current_char & 0xFF;
/external/chromium_org/sandbox/win/src/
H A Dpolicy_low_level.cc225 const wchar_t* current_char = string; local
231 while (L'\0' != *current_char) {
232 switch (*current_char) {
260 if (L'?' == current_char[1]) {
261 ++current_char;
264 fragment += *current_char;
267 ++current_char;
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dasyoutypeformatter.cc77 const char current_char = *it; local
79 if (isdigit(current_char)) {
81 new_pattern += current_char;
86 new_pattern += current_char;
87 if (current_char == '{') {
89 } else if (current_char == '}') {
H A Dphonenumberutil.cc769 char current_char[5]; local
773 len = reverse_it.get_utf8(current_char);
774 current_char[len] = '\0';
775 if (!reg_exps_->unwanted_end_char_pattern_->FullMatch(current_char)) {
1960 char current_char[5]; local
1964 len = it.get_utf8(current_char);
1965 current_char[len] = '\0';
1966 if (reg_exps_->valid_start_char_pattern_->FullMatch(current_char)) {
H A Dstringutil.cc146 const char current_char = *it; local
147 if (chars.find(current_char) != string::npos) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dandroid.py1275 current_char = self._server_process.read_stdout(deadline, 1)
1276 if current_char == ' ':
1279 last_char = current_char
/external/chromium_org/ui/gfx/
H A Drender_text_harfbuzz.cc328 const UChar32 current_char = iter.get(); local
329 const UBlockCode current_block = ublock_getCode(current_char);
332 if (block_break || first_bracket != IsBracket(current_char))
H A Drender_text_win.cc408 const size_t current_char = next_char; local
409 const bool skip_line = BreakRunAtWidth(text_, *run, *words_, current_char,
411 AddSegment(run_index, Range(current_char, next_char), width);
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc480 const base::char16& current_char = (*text)[i]; local
481 if (current_char == kPdfiumHyphenEOL) {
487 } else if (IsWhitespace(current_char)) {
489 if (current_char != L'\r' && current_char != L'\n')

Completed in 218 milliseconds