HomeSort by relevance Sort by last modified time
    Searched defs:Is (Results 1 - 25 of 25) 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
15 // A simple type system for compiler-internal use. It is based entirely on
52 // There is no subtyping relation between Array, Function, or Context types
57 // TODO(rossberg): the latter is not currently true for proxies, because of fix,
92 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
95 // Typically, the former is to be used to select representations (e.g., via
96 // T->Is(SignedSmall())), and the latter to check whether a specific case needs
99 // 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.
43 // Ensure the upper 2 bits have the same value by sign extending it. This is
57 bool Object::Is##type() { \
65 SLOW_ASSERT(object->Is##type()); \
140 // External objects are not extensible, so the map check is enough.
263 // Dictionary is covered under FixedArray.
485 ASSERT(result != 0); // Ensure that the hash value of 0 is never computed.
531 ASSERT(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.
88 // Star is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
98 // This is the main entry point to pattern matching, and so provides a couple of extra API bits:
114 // If there is no such span, return false. If there is, return true and set [*begin, *end).
127 // T is checked statically at compile time; no casting is involved. It's just an API wart.
144 // If head is a Star, walk i until it doesn't match
    [all...]
  /external/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.
88 // Star is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
98 // This is the main entry point to pattern matching, and so provides a couple of extra API bits:
114 // If there is no such span, return false. If there is, return true and set [*begin, *end).
127 // T is checked statically at compile time; no casting is involved. It's just an API wart.
144 // If head is a Star, walk i until it doesn't match
    [all...]
  /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)
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /external/chromium_org/v8/test/cctest/
test-types.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
367 type1->Is(type2) && type2->Is(type1) &&
393 CHECK(type1->Is(type2));
394 CHECK(!type2->Is(type1));
401 CHECK(!type1->Is(type2));
402 CHECK(!type2->Is(type1));
418 CHECK(!type1->Is(type2));
419 CHECK(!type2->Is(type1))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 24 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 24 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
  /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...]
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mmcobj.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
    [all...]
  /external/owasp/sanitizer/lib/junit/
junit.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-all/1.9.5/
mockito-all-1.9.5.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 337 milliseconds