HomeSort by relevance Sort by last modified time
    Searched refs:Is (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /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...]
property-details-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
30 if (type->Is(Type::None())) return Representation::None();
31 if (type->Is(Type::SignedSmall())) return Representation::Smi();
32 if (type->Is(Type::Signed32())) return Representation::Integer32();
33 if (type->Is(Type::Number())) return Representation::Double();
hydrogen-types.cc 2 // Use of this source code is governed by a BSD-style license that can be
16 if (T::Any()->Is(type)) return HType::Any();
17 if (type->Is(T::None())) return HType::None();
18 if (type->Is(T::SignedSmall())) return HType::Smi();
19 if (type->Is(T::Number())) return HType::TaggedNumber();
20 if (type->Is(T::Null())) return HType::Null();
21 if (type->Is(T::String())) return HType::String();
22 if (type->Is(T::Boolean())) return HType::Boolean();
23 if (type->Is(T::Undefined())) return HType::Undefined();
24 if (type->Is(T::Array())) return HType::JSArray()
    [all...]
ic-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
27 // At least one break point is active perform additional test to ensure that
31 // If the call site is a call to debug break then return the address in
39 // Return the address in the original code. This is the place where
60 // At least one break point is active perform additional test to ensure that
65 // If the call site is a call to debug break then we want to return the
88 // is safe for use during GC where the map might be marked.
124 // If the object is a value, we use the prototype map for the cache.
142 if (type->Is(HeapType::Boolean()) ||
143 type->Is(HeapType::Number()) |
    [all...]
unicode.h 2 // Use of this source code is governed by a BSD-style license that can be
100 // of UTF-8 data. The special case where the unit is a surrogate
101 // trail produces 1 byte net, because the encoding of the pair is
105 // One UTF-16 surrogate is endoded (illegally) as 3 UTF-8 bytes.
146 // A single surrogate is coded as a 3 byte UTF-8 sequence, but two together
198 static bool Is(uchar c);
201 static bool Is(uchar c);
204 static bool Is(uchar c);
207 static bool Is(uchar c);
210 static bool Is(uchar c)
    [all...]
types.cc 2 // Use of this source code is governed by a BSD-style license that can be
225 // When compiling stub templates, the meta map is used as a place holder
226 // for the actual map with which the template is later instantiated.
227 // We treat it as a kind of type variable whose upper bound is Any.
272 BitsetType::New(this->BitsetLub())->Is(
278 && this->AsConstant()->Bound()->Is(that->AsConstant()->Bound());
309 if (!unioned->Get(i)->Is(that)) return false;
315 // (iff T is not a union)
320 if (this->Is(unioned->Get(i))) return true;
321 if (this->IsBitset()) break; // Fast fail, only first field is a bitset
    [all...]
hydrogen-types.h 2 // Use of this source code is governed by a BSD-style license that can be
57 bool Is##Name() const V8_WARN_UNUSED_RESULT { \
  /art/compiler/utils/arm64/
managed_register_arm64_test.cc 11 * distributed under the License is distributed on an "AS IS" BASIS,
614 EXPECT_TRUE(vixl::x0.Is(Arm64Assembler::reg_x(X0)));
615 EXPECT_TRUE(vixl::x1.Is(Arm64Assembler::reg_x(X1)));
616 EXPECT_TRUE(vixl::x2.Is(Arm64Assembler::reg_x(X2)));
617 EXPECT_TRUE(vixl::x3.Is(Arm64Assembler::reg_x(X3)));
618 EXPECT_TRUE(vixl::x4.Is(Arm64Assembler::reg_x(X4)));
619 EXPECT_TRUE(vixl::x5.Is(Arm64Assembler::reg_x(X5)));
620 EXPECT_TRUE(vixl::x6.Is(Arm64Assembler::reg_x(X6)));
621 EXPECT_TRUE(vixl::x7.Is(Arm64Assembler::reg_x(X7)))
    [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/skia/tests/
RecordPatternTest.cpp 9 typedef Pattern3<Is<Save>,
10 Is<ClipRect>,
11 Is<Restore> >
74 Pattern3<Is<Save>, Star<Is<ClipRect> >, Is<Restore> > pattern;
96 Pattern3<Is<Save>, IsDraw, Is<Restore> > pattern;
131 Pattern3<Is<Save>,
132 Star<Not<Or3<Is<Save>
    [all...]
  /external/skia/tests/
RecordPatternTest.cpp 9 typedef Pattern3<Is<Save>,
10 Is<ClipRect>,
11 Is<Restore> >
74 Pattern3<Is<Save>, Star<Is<ClipRect> >, Is<Restore> > pattern;
96 Pattern3<Is<Save>, IsDraw, Is<Restore> > pattern;
131 Pattern3<Is<Save>,
132 Star<Not<Or3<Is<Save>
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRecordOpts.cpp 4 * Use of this source code is governed by a BSD-style license that can be
49 typedef Pattern3<Is<PushCull>, Star<Is<NoOp> >, Is<PopCull> > Pattern;
65 typedef Pattern3<Is<Save>,
66 Star<Or<Is<NoOp>, IsDraw> >,
67 Is<Restore> >
79 typedef Pattern3<Is<Save>,
80 Star<Not<Or3<Is<Save>,
81 Is<Restore>
    [all...]
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/
SkRecordOpts.cpp 4 * Use of this source code is governed by a BSD-style license that can be
49 typedef Pattern3<Is<PushCull>, Star<Is<NoOp> >, Is<PopCull> > Pattern;
65 typedef Pattern3<Is<Save>,
66 Star<Or<Is<NoOp>, IsDraw> >,
67 Is<Restore> >
79 typedef Pattern3<Is<Save>,
80 Star<Not<Or3<Is<Save>,
81 Is<Restore>
    [all...]
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/ppp/pppd/plugins/radius/etc/
dictionary.compat 43 ATTRIBUTE User-Name-Is-Star 1035 integer
44 VALUE User-Name-Is-Star No 0
45 VALUE User-Name-Is-Star Yes 1
  /external/clang/test/CodeGenCXX/
debug-info-template.cpp 39 // CHECK: [[TCARG8]] = {{.*}}metadata !"Is", null, metadata [[TCARG8_VALS:![0-9]*]], {{.*}} ; [ DW_TAG_GNU_template_parameter_pack ]
73 // CHECK: [[TCNARG8]] = {{.*}}metadata !"Is", null, metadata [[EMPTY]], {{.*}} ; [ DW_TAG_GNU_template_parameter_pack ]
89 template<typename T, T, int *x, int foo::*a, void (foo::*b)(), void (*f)(), template<typename> class tmpl, int ...Is>
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ShapeDrawableTest.java 9 import static org.hamcrest.core.Is.is;
20 assertThat(shapeDrawable.getPaint(), is(paint)); method
NotificationTest.java 11 import static org.hamcrest.core.Is.is;
21 assertThat(pendingIntent, is(notification.contentIntent));
  /external/llvm/include/llvm/MC/
MachineLocation.h 5 // This file is distributed under the University of Illinois Open Source
9 // The MachineLocation class is used to represent a simple location in a machine
27 bool IsRegister; // True if location is a register.
32 // The target register number for an abstract frame pointer. The value is
51 /// \return true iff this is a register-indirect location.
56 void setIsRegister(bool Is) { IsRegister = Is; }
  /external/clang/tools/clang-format/
clang-format.py 1 # This file is a minimal clang-format vim-integration. To install:
2 # - Change 'binary' if clang-format is not on the path (see below).
14 # VISUAL mode. The line or region is extended to the next bigger syntactic
26 # Change this to the full path if clang-format is not on the path.
46 print 'Couldn\'t determine cursor position. Is your file empty?'
78 if op[0] is not 'equal':
  /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...]
  /external/llvm/unittests/ADT/
PointerUnionTest.cpp 5 // This file is distributed under the University of Illinois Open Source
57 TEST_F(PointerUnionTest, Is) {
58 EXPECT_FALSE(a.is<int *>());
59 EXPECT_TRUE(a.is<float *>());
60 EXPECT_TRUE(b.is<int *>());
61 EXPECT_FALSE(b.is<float *>());
62 EXPECT_TRUE(n.is<int *>());
63 EXPECT_FALSE(n.is<float *>());
  /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/hamcrest/src/org/hamcrest/
CoreMatchers.java 11 * vs assertThat(cheese, is(equalTo(smelly)))
13 public static <T> org.hamcrest.Matcher<T> is(org.hamcrest.Matcher<T> matcher) { method in class:CoreMatchers
14 return org.hamcrest.core.Is.is(matcher);
18 * This is a shortcut to the frequently used is(equalTo(x)).
20 * eg. assertThat(cheese, is(equalTo(smelly)))
21 * vs assertThat(cheese, is(smelly))
23 public static <T> org.hamcrest.Matcher<T> is(T value) { method in class:CoreMatchers
24 return org.hamcrest.core.Is.is(value)
33 public static org.hamcrest.Matcher<java.lang.Object> is(java.lang.Class<?> type) { method in class:CoreMatchers
    [all...]

Completed in 386 milliseconds

1 2 3 4 5 6