HomeSort by relevance Sort by last modified time
    Searched defs:Is (Results 1 - 13 of 13) sorted by null

  /external/v8/src/
char-predicates.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
47 static inline bool Is(uc32 c) {
50 default: return unibrow::Letter::Is(c);
57 static inline bool Is(uc32 c) {
58 return IdentifierStart::Is(c)
59 || unibrow::Number::Is(c)
60 || c == 0x200C // U+200C is Zero-Width Non-Joiner.
61 || c == 0x200D // U+200D is Zero-Width Joiner.
62 || unibrow::CombiningMark::Is(c
    [all...]
dateparser.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
49 // If parsing fails, return false (content of output array is not defined).
91 // is longer.
144 bool Is(uint32_t c) const { return ch_ == c; }
293 // and 'len' is the word length.
389 // If set, ensures that data is always parsed in year-month-date order.
394 // to continue with in the legacy date string parser. If parsing is
unicode.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
70 * about a character is around 10, slightly higher if there is no
82 // next one is not also less than this one, we've arrived.
110 // which is of the specified length and uses the specified special case
111 // mapping for multi-char mappings. The next parameter is the character
114 // if the allow_caching_ptr is non-null then false will be stored in
117 // If ranges are linear, a match between a start and end point is
119 // the result is the same as for the start point on the entire range
    [all...]