Searched refs:characters (Results 1 - 25 of 238) sorted by last modified time

12345678910

/external/vulkan-validation-layers/tests/gtest-1.7.0/build-aux/
H A Dltmain.sh212 # characters, hashes, percent signs, but SUFFIX may contain a leading
592 # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
696 # Result is stored in $func_tr_sh_result. All characters
1509 # $PATH. Assumes ARG has no leading or trailing path separator characters.
1846 # Remove leading and trailing path separator characters from ARG. MSYS
1933 # Remove leading and trailing path separator characters from
2108 && func_warning "libobj name \`$libobj' may not contain shell special characters."
3622 # These lines can sometimes be longer than 43 characters, but
3628 # Remove all lines with less than 43 characters
3630 # From remaining lines, remove first 43 characters
[all...]
/external/valgrind/none/tests/s390x/
H A Dcu12.stdout.exp3 ----- Valid characters -----
10 ----- Invalid characters -----
52 ----- Invalid characters if m3 == 1 -----
88 ----- Valid characters -----
95 ----- Valid characters if m3 == 0 -----
102 ----- Invalid characters if m3 == 1 -----
133 ----- Valid characters -----
425 ----- Invalid characters (2nd byte is invalid) -----
587 ----- Invalid characters (3rd byte is invalid) -----
772 ----- Valid characters
[all...]
H A Dcu12_1.stdout.exp3 ----- Valid characters -----
10 ----- Invalid characters -----
52 ----- Invalid characters if m3 == 1 -----
88 ----- Valid characters -----
95 ----- Valid characters if m3 == 0 -----
102 ----- Invalid characters if m3 == 1 -----
133 ----- Valid characters -----
425 ----- Invalid characters (2nd byte is invalid) -----
587 ----- Invalid characters (3rd byte is invalid) -----
772 ----- Valid characters
[all...]
H A Dcu14.stdout.exp3 ----- Valid characters -----
10 ----- Invalid characters -----
52 ----- Invalid characters if m3 == 1 -----
88 ----- Valid characters -----
95 ----- Valid characters if m3 == 0 -----
102 ----- Invalid characters if m3 == 1 -----
133 ----- Valid characters -----
425 ----- Invalid characters (2nd byte is invalid) -----
587 ----- Invalid characters (3rd byte is invalid) -----
772 ----- Valid characters
[all...]
H A Dcu14_1.stdout.exp3 ----- Valid characters -----
10 ----- Invalid characters -----
52 ----- Invalid characters if m3 == 1 -----
88 ----- Valid characters -----
95 ----- Valid characters if m3 == 0 -----
102 ----- Invalid characters if m3 == 1 -----
133 ----- Valid characters -----
425 ----- Invalid characters (2nd byte is invalid) -----
587 ----- Invalid characters (3rd byte is invalid) -----
772 ----- Valid characters
[all...]
/external/v8/src/runtime/
H A Druntime-regexp.cc95 Vector<Char> characters, int capture_count,
97 int length = characters.length();
100 Char c = characters[i];
106 Char c2 = characters[next_index];
163 Char c3 = characters[second_digit_index];
/external/v8/include/
H A Dv8-inspector.h40 StringView(const uint8_t* characters, size_t length) argument
41 : m_is8Bit(true), m_length(length), m_characters8(characters) {}
43 StringView(const uint16_t* characters, size_t length) argument
44 : m_is8Bit(false), m_length(length), m_characters16(characters) {}
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/v8/src/inspector/
H A Dstring-16.cc27 int charactersToInteger(const UChar* characters, size_t length, argument
32 if (!isASCII(characters[i])) {
36 buffer.push_back(static_cast<char>(characters[i]));
435 void String16Builder::append(const UChar* characters, size_t length) { argument
436 m_buffer.insert(m_buffer.end(), characters, characters + length);
439 void String16Builder::append(const char* characters, size_t length) { argument
440 m_buffer.insert(m_buffer.end(), characters, characters + length);
493 // Allocate a buffer big enough to hold all the characters
506 const UChar* characters = m_impl.data(); local
[all...]
H A Dstring-16.h28 String16(const UChar* characters, size_t size) : m_impl(characters, size) {} argument
29 String16(const UChar* characters) // NOLINT(runtime/explicit) argument
30 : m_impl(characters) {}
31 String16(const char* characters) // NOLINT(runtime/explicit) argument
32 : String16(characters, std::strlen(characters)) {}
33 String16(const char* characters, size_t size) { argument
35 for (size_t i = 0; i < size; ++i) m_impl[i] = characters[i];
/external/v8/src/regexp/arm/
H A Dregexp-macro-assembler-arm.cc223 // Check that there are enough characters left in the input.
366 // Check that there are enough characters left in the input.
504 // Match space-characters
506 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
576 // Table is 256 entries, so all Latin1 characters can be tested.
590 // Table is 256 entries, so all Latin1 characters can be tested.
747 // r1 is length of input in characters.
749 // r1 is length of string in characters.
939 int characters) {
943 CheckPosition(cp_offset + characters
936 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
H A Dregexp-macro-assembler-arm.h74 int characters = 1);
132 // Load a number of characters at the given offset from the
/external/v8/src/regexp/arm64/
H A Dregexp-macro-assembler-arm64.cc300 // Check that there are enough characters left in the input.
461 // Check that there are enough characters left in the input.
592 // Match space-characters
594 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
640 // We have to check all 4 newline characters before emitting
657 // Table is 256 entries, so all Latin1 characters can be tested.
669 // Table is 256 entries, so all Latin1 characters can be tested.
1129 int characters) {
1136 CheckPosition(cp_offset + characters - 1, on_end_of_input);
1141 LoadCurrentCharacterUnchecked(cp_offset, characters);
1126 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
H A Dregexp-macro-assembler-arm64.h79 int characters = 1);
143 // Load a number of characters at the given offset from the
/external/v8/src/regexp/ia32/
H A Dregexp-macro-assembler-ia32.cc202 // Check that there are sufficient characters left in the input.
368 // Check that there are sufficient characters left in the input.
525 // Match space-characters
527 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
577 // Table is 256 entries, so all Latin1 characters can be tested.
591 // Table is 256 entries, so all Latin1 characters can be tested.
982 int characters) {
986 CheckPosition(cp_offset + characters - 1, on_end_of_input);
991 LoadCurrentCharacterUnchecked(cp_offset, characters);
1242 int characters) {
979 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
H A Dregexp-macro-assembler-ia32.h72 int characters = 1);
128 // Load a number of characters at the given offset from the
/external/v8/src/regexp/
H A Djsregexp.cc104 // In a 3-character pattern you can maximally step forwards 3 characters
124 // characters as it has different characters.
522 // but the characters are always the same).
1606 // Returns the number of characters in the equivalence class, omitting those
1613 // Unibrow returns 0 or 1 for characters where case independence is
1713 // If the characters differ by 2^n but don't differ by one bit then
1942 // case characters on some Unicode pages).
2014 // It is faster to test for individual characters, so we look for those
2311 // If we know we are not at the start and we are asked "how many characters
2545 int characters = details->characters(); local
[all...]
H A Djsregexp.h387 explicit QuickCheckDetails(int characters) argument
388 : characters_(characters),
406 int characters() { return characters_; } function in class:v8::internal::QuickCheckDetails
407 void set_characters(int characters) { characters_ = characters; } argument
417 // How many characters do we have quick check information from. This is
443 // How many characters must this node consume at a minimum in order to
444 // succeed. If we have found at least 'still_to_find' characters that
446 // they are sure to eat any more characters. The not_at_start argument is
449 // determining how many characters ar
[all...]
H A Dregexp-macro-assembler-irregexp.cc217 int characters) {
222 if (characters == 4) {
224 } else if (characters == 2) {
227 DCHECK(characters == 1);
231 if (characters == 4) {
233 } else if (characters == 2) {
236 DCHECK(characters == 1);
214 LoadCurrentCharacter(int cp_offset, Label* on_failure, bool check_bounds, int characters) argument
/external/v8/src/regexp/mips/
H A Dregexp-macro-assembler-mips.cc235 // Check that there are enough characters left in the input.
384 // Check that there are enough characters left in the input.
509 // Match space-characters.
511 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
572 // Table is 256 entries, so all Latin1 characters can be tested.
585 // Table is 256 entries, so all Latin1 characters can be tested.
747 // a1 is length of input in characters.
749 // a1 is length of string in characters.
956 int characters) {
960 CheckPosition(cp_offset + characters
953 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
H A Dregexp-macro-assembler-mips.h73 int characters = 1);
132 // Load a number of characters at the given offset from the
/external/v8/src/regexp/mips64/
H A Dregexp-macro-assembler-mips64.cc271 // Check that there are enough characters left in the input.
420 // Check that there are enough characters left in the input.
539 // Match space-characters.
541 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
602 // Table is 256 entries, so all Latin1 characters can be tested.
615 // Table is 256 entries, so all Latin1 characters can be tested.
783 // a1 is length of input in characters.
785 // a1 is length of string in characters.
993 int characters) {
997 CheckPosition(cp_offset + characters
990 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
H A Dregexp-macro-assembler-mips64.h73 int characters = 1);
136 // Load a number of characters at the given offset from the
/external/v8/src/regexp/ppc/
H A Dregexp-macro-assembler-ppc.cc239 // Check that there are enough characters left in the input.
385 // Check that there are enough characters left in the input.
522 // Match space-characters
524 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
594 // Table is 256 entries, so all Latin1 characters can be tested.
608 // Table is 256 entries, so all Latin1 characters can be tested.
789 // r4 is length of input in characters.
791 // r4 is length of string in characters.
983 int characters) {
987 CheckPosition(cp_offset + characters
980 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
H A Dregexp-macro-assembler-ppc.h66 int characters = 1);
123 // Load a number of characters at the given offset from the

Completed in 261 milliseconds

12345678910