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

  /external/chromium_org/v8/src/
char-predicates.h 2 // Use of this source code is governed by a BSD-style license that can be
26 static inline bool Is(uc32 c) {
29 default: return unibrow::Letter::Is(c);
36 static inline bool Is(uc32 c) {
37 return IdentifierStart::Is(c)
38 || unibrow::Number::Is(c)
39 || c == 0x200C // U+200C is Zero-Width Non-Joiner.
40 || c == 0x200D // U+200D is Zero-Width Joiner.
41 || unibrow::CombiningMark::Is(c)
42 || unibrow::ConnectorPunctuation::Is(c)
    [all...]
dateparser.h 2 // Use of this source code is governed by a BSD-style license that can be
26 // If parsing fails, return false (content of output array is not defined).
68 // is longer.
121 bool Is(uint32_t c) const { return ch_ == c; }
270 // and 'len' is the word length.
366 // If set, ensures that data is always parsed in year-month-date order.
371 // to continue with in the legacy date string parser. If parsing is
types.h 2 // Use of this source code is governed by a BSD-style license that can be
18 // A simple type system for compiler-internal use. It is based entirely on
56 // There is no subtyping relation between Array, Function, or Context types
61 // TODO(rossberg): the latter is not currently true for proxies, because of fix,
100 // Constant(v) is considered a subtype of Range(x..y) if v happens to be an
108 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
111 // Typically, the former is to be used to select representations (e.g., via
112 // T->Is(SignedSmall())), and the latter to check whether a specific case needs
115 // There is no functionality to discover whether a type is a leaf in th
    [all...]
unicode.cc 2 // Use of this source code is governed by a BSD-style license that can be
50 * about a character is around 10, slightly higher if there is no
62 // next one is not also less than this one, we've arrived.
91 // which is of the specified length and uses the specified special case
92 // mapping for multi-char mappings. The next parameter is the character
95 // if the allow_caching_ptr is non-null then false will be stored in
98 // If ranges are linear, a match between a start and end point is
100 // the result is the same as for the start point on the entire range.
118 // is not also less than this one, we've arrived
    [all...]
objects-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
8 // but it is absolutely needed to make sure gcc generates optimal
9 // code. gcc is not happy when attempting to inline too deep.
46 // Ensure the upper 2 bits have the same value by sign extending it. This is
60 bool Object::Is##type() const { \
68 SLOW_DCHECK(object->Is##type()); \
72 SLOW_DCHECK(object->Is##type()); \
147 // External objects are not extensible, so the map check is enough.
271 // Dictionary is covered under FixedArray.
510 DCHECK(result != 0); // Ensure that the hash value of 0 is never computed
    [all...]
  /external/hamcrest/src/org/hamcrest/core/
Is.java 15 * vs assertThat(cheese, is(equalTo(smelly)))
17 public class Is<T> extends BaseMatcher<T> {
21 public Is(Matcher<T> matcher) {
30 description.appendText("is ").appendDescriptionOf(matcher);
38 * vs assertThat(cheese, is(equalTo(smelly)))
41 public static <T> Matcher<T> is(Matcher<T> matcher) { method in class:Is
42 return new Is<T>(matcher);
46 * This is a shortcut to the frequently used is(equalTo(x)).
48 * eg. assertThat(cheese, is(equalTo(smelly))
52 public static <T> Matcher<T> is(T value) { method in class:Is
63 public static Matcher<Object> is(Class<?> type) { method in class:Is
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
testharness.h 2 // Use of this source code is governed by a BSD-style license that can be
19 // environment variable "LEVELDB_TESTS" is not set, runs all tests.
40 // An instance of Tester is allocated to hold temporary state during
61 Tester& Is(bool b, const char* msg) {
105 #define ASSERT_TRUE(c) ::leveldb::test::Tester(__FILE__, __LINE__).Is((c), #c)
  /external/chromium_org/third_party/skia/src/core/
SkRecordPattern.h 13 class Is {
15 Is() : fPtr(NULL) {}
63 // Abstracts away whether the paint is always part of the command or optional.
92 // Star is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
102 // This is the main entry point to pattern matching, and so provides a couple of extra API bits:
118 // If there is no such span, return false. If there is, return true and set [*begin, *end).
131 // T is checked statically at compile time; no casting is involved. It's just an API wart.
148 // If head is a Star, walk i until it doesn't match
    [all...]
  /external/chromium_org/v8/src/compiler/
node-matchers.h 2 // Use of this source code is governed by a BSD-style license that can be
29 bool Is##Opcode() const { return opcode() == IrOpcode::k##Opcode; }
54 bool Is(const T& value) const {
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
config.cpp 12 * distributed under the License is distributed on an "AS IS" BASIS,
74 inline bool Is(unsigned long f) {return (state & f) == f;}
83 ** Description: detremine if a char is printable
100 ** Description: detremine if a char is numeral digit
298 if (Is(IsStringValue) && base == 16 && i > 0)
  /external/libnfc-nci/src/adaptation/
config.cpp 12 * distributed under the License is distributed on an "AS IS" BASIS,
74 inline bool Is(unsigned long f) {return (state & f) == f;}
83 ** Description: detremine if a char is printable
100 ** Description: detremine if a char is numeral digit
309 if (Is(IsStringValue) && base == 16 && i > 0)
  /external/chromium_org/v8/test/cctest/
test-types.cc 2 // Use of this source code is governed by a BSD-style license that can be
373 CHECK(type1->Is(type2));
374 CHECK(!type2->Is(type1));
381 CHECK(!type1->Is(type2));
382 CHECK(!type2->Is(type1));
394 CHECK(!type1->Is(type2));
395 CHECK(!type2->Is(type1));
417 // Union(T1, T2) is bitset for bitsets T1,T2
428 // Intersect(T1, T2) is bitset for bitsets T1,T2
439 // Union(T1, T2) is bitset if T2 is bitset and T1->Is(T2
    [all...]
  /external/chromium_org/v8/tools/
grokdump.py 18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
96 if type is not None:
129 if is_executable is not False:
135 if is_ascii is not False:
158 if is_executable is not True and is_ascii is not True:
553 assert not self.arch is None
579 assert self.module_list is None
584 print >>sys.stderr, "Warning: This is not a full minidump!
    [all...]
  /external/owasp/sanitizer/lib/junit/
junit.jar 

Completed in 1081 milliseconds