Searched refs:Is (Results 1 - 25 of 218) sorted by relevance

123456789

/external/v8/src/
H A Dchar-predicates.h42 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierStart
44 return unibrow::ID_Start::Is(c);
56 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierPart
58 return unibrow::ID_Start::Is(c) || unibrow::ID_Continue::Is(c);
70 static inline bool Is(uc32 c) { return unibrow::WhiteSpace::Is(c); } function in struct:v8::internal::WhiteSpace
77 static inline bool Is(uc32 c) { function in struct:v8::internal::WhiteSpaceOrLineTerminator
78 return WhiteSpace::Is(c) || unibrow::LineTerminator::Is(
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/util/
H A Dtuple.hpp33 template<int... Is>
39 template<int N, int... Is>
41 typedef typename enumerate<N-1, N-1, Is...>::type
45 template<int... Is>
46 struct enumerate<0, Is...> {
47 typedef integral_sequence<Is...> type;
57 template<typename F, typename T, int... Is>
58 struct _apply<F, T, integral_sequence<Is...>> {
61 std::declval<func_type>()(std::get<Is>(std::declval<T &&>())...)
66 return f(std::get<Is>(st
[all...]
H A Dadaptor.hpp36 /// value of the source iterators \a Is on dereference by use of
42 template<typename F, typename... Is>
47 F(typename std::iterator_traits<Is>::reference...)
56 iterator_adaptor(F f, std::tuple<Is...> &&its) :
164 std::tuple<Is...> its;
167 template<typename F, typename... Is>
168 iterator_adaptor<F, Is...>
169 operator+(typename iterator_adaptor<F, Is...>::difference_type n,
170 const iterator_adaptor<F, Is...> &jt) {
174 template<typename F, typename... Is>
[all...]
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
H A DFieldMaskTest.cs49 Assert.That(text, Is.StringContaining("@warning"));
50 Assert.That(text, Is.StringContaining(input));
/external/skia/src/core/
H A DSkRecordOpts.cpp40 typedef Pattern<Is<SetMatrix>,
41 Greedy<Is<NoOp>>,
42 Is<SetMatrix> >
58 typedef Pattern<Is<SetMatrix>,
59 Greedy<Is<NoOp>>,
60 Is<SetMatrix> >
77 typedef Pattern<Is<Save>,
78 Greedy<Or<Is<NoOp>, IsDraw>>,
79 Is<Restore>>
150 typedef Pattern<Is<Sav
[all...]
/external/skqp/src/core/
H A DSkRecordOpts.cpp40 typedef Pattern<Is<SetMatrix>,
41 Greedy<Is<NoOp>>,
42 Is<SetMatrix> >
58 typedef Pattern<Is<SetMatrix>,
59 Greedy<Is<NoOp>>,
60 Is<SetMatrix> >
77 typedef Pattern<Is<Save>,
78 Greedy<Or<Is<NoOp>, IsDraw>>,
79 Is<Restore>>
150 typedef Pattern<Is<Sav
[all...]
/external/v8/src/compiler/
H A Doperation-typer.cc116 if (!type->Is(cache_.kInteger)) {
245 if (type->Is(Type::Number())) return type;
246 if (type->Is(Type::NullOrUndefined())) {
247 if (type->Is(Type::Null())) return cache_.kSingletonZero;
248 if (type->Is(Type::Undefined())) return Type::NaN();
251 if (type->Is(Type::Boolean())) {
252 if (type->Is(singleton_false_)) return cache_.kSingletonZero;
253 if (type->Is(singleton_true_)) return cache_.kSingletonOne;
256 if (type->Is(Type::NumberOrOddball())) {
257 if (type->Is(Typ
[all...]
H A Dtyped-optimization.cc52 } else if (upper->Is(Type::MinusZero())) {
56 } else if (upper->Is(Type::NaN())) {
60 } else if (upper->Is(Type::Null())) {
64 } else if (upper->Is(Type::PlainNumber()) &&
69 } else if (upper->Is(Type::Undefined())) {
156 if (input_type->Is(Type::String())) {
194 if (input_type->Is(type_cache_.kIntegerOrMinusZeroOrNaN)) {
197 if (input_type->Is(Type::PlainNumber()) &&
203 if (lhs_type->Is(Type::Unsigned32()) && rhs_type->Is(Typ
[all...]
H A Drepresentation-change.cc190 if (output_type->Is(Type::SignedSmall())) {
199 if (output_type->Is(Type::None())) {
204 if (output_type->Is(Type::Signed31())) {
206 } else if (output_type->Is(Type::Signed32())) {
215 } else if (output_type->Is(Type::Unsigned32()) &&
223 if (output_type->Is(Type::Signed31())) {
227 } else if (output_type->Is(Type::Signed32())) {
238 } else if (output_type->Is(Type::Unsigned32()) &&
279 } else if (output_type->Is(Type::SignedSmall())) {
314 if (output_type->Is(Typ
[all...]
H A Dmachine-operator-reducer.cc170 if (m.right().Is(0)) return Replace(m.left().node()); // x ror 0 => x
182 if (m.left().IsInt32Sub() && m.right().Is(0)) { // x - y == 0 => x == y
197 if (m.left().IsInt64Sub() && m.right().Is(0)) { // x - y == 0 => x == y
217 if (m.right().Is(0)) return Replace(m.right().node()); // x * 0 => 0
218 if (m.right().Is(1)) return Replace(m.left().node()); // x * 1 => x
222 if (m.right().Is(-1)) { // x * -1 => 0 - x
238 if (m.right().Is(2)) {
243 if (m.right().Is(-1)) {
265 if (m.left().IsWord32Or() && m.right().Is(0)) {
285 if (m.left().Is(kMaxUInt3
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-types.cc17 if (AstType::Any()->Is(type)) return HType::Any();
19 if (type->Is(AstType::SignedSmall())) return HType::Smi();
20 if (type->Is(AstType::Number())) return HType::TaggedNumber();
21 if (type->Is(AstType::Null())) return HType::Null();
22 if (type->Is(AstType::String())) return HType::String();
23 if (type->Is(AstType::Boolean())) return HType::Boolean();
24 if (type->Is(AstType::Undefined())) return HType::Undefined();
25 if (type->Is(AstType::Object())) return HType::JSObject();
26 if (type->Is(AstType::DetectableReceiver())) return HType::JSReceiver();
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
H A DIsTest.java7 import static org.hamcrest.core.Is.is;
8 import static org.hamcrest.core.Is.isA;
/external/vixl/test/aarch64/
H A Dtest-api-aarch64.cc70 VIXL_CHECK(NoReg.Is(NoFPReg));
71 VIXL_CHECK(NoFPReg.Is(NoReg));
73 VIXL_CHECK(NoVReg.Is(NoReg));
74 VIXL_CHECK(NoReg.Is(NoVReg));
76 VIXL_CHECK(NoReg.Is(NoCPUReg));
77 VIXL_CHECK(NoCPUReg.Is(NoReg));
79 VIXL_CHECK(NoFPReg.Is(NoCPUReg));
80 VIXL_CHECK(NoCPUReg.Is(NoFPReg));
82 VIXL_CHECK(NoVReg.Is(NoCPUReg));
83 VIXL_CHECK(NoCPUReg.Is(NoVRe
[all...]
/external/protobuf/src/google/protobuf/
H A Dany_test.cc76 EXPECT_TRUE(any.Is<protobuf_unittest::TestAny>());
77 EXPECT_FALSE(any.Is<google::protobuf::Any>());
82 EXPECT_FALSE(message.any_value().Is<protobuf_unittest::TestAny>());
83 EXPECT_TRUE(message.any_value().Is<google::protobuf::Any>());
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DIs.java17 public class Is<T> extends BaseMatcher<T> { class in inherits:BaseMatcher
20 public Is(Matcher<T> matcher) { method in class:Is
49 return new Is<T>(matcher);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorSyclTuple.h137 /// \tparam Is... a list of index from [0 to sizeof...(tuple elements))
138 template <size_t... Is>
145 /// \tparam N represents sizeof..(elemens)- sizeof...(Is)
146 /// \tparam Is... are the list of generated index so far
147 template <size_t MIN, size_t N, size_t... Is>
151 /// MIN==MAX. In this case the Is... is [0 to sizeof...(tuple elements))
153 /// \tparam Is is [0 to sizeof...(tuple elements))
154 template <size_t MIN, size_t... Is>
155 struct RangeBuilder<MIN, MIN, Is...> {
156 typedef IndexList<Is
[all...]
/external/skia/tests/
H A DRecordPatternTest.cpp16 typedef Pattern<Is<Save>,
17 Is<ClipRect>,
18 Is<Restore>>
81 Pattern<Is<Save>, Greedy<Is<ClipRect>>, Is<Restore>> pattern;
101 Pattern<Is<Save>,
102 Greedy<Not<Or<Is<Save>,
103 Is<Restore>,
105 Is<Restor
[all...]
/external/skqp/tests/
H A DRecordPatternTest.cpp16 typedef Pattern<Is<Save>,
17 Is<ClipRect>,
18 Is<Restore>>
81 Pattern<Is<Save>, Greedy<Is<ClipRect>>, Is<Restore>> pattern;
101 Pattern<Is<Save>,
102 Greedy<Not<Or<Is<Save>,
103 Is<Restore>,
105 Is<Restor
[all...]
/external/vixl/src/aarch32/
H A Dassembler-aarch32.cc68 VIXL_ASSERT(IsUsingA32() || condition.Is(al));
70 VIXL_ASSERT(condition.Is(first_condition_));
1108 if (align.Is(k64BitAlign) || align.Is(kNoAlignment)) {
1110 } else if (align.Is(k128BitAlign)) {
1572 if (dt.Is(Untyped16)) SetEncodingValue(0x1);
1575 if (dt.Is(Untyped32)) SetEncodingValue(0x1);
1593 if (dt.Is(Untyped8)) SetEncodingValue(0x1);
1596 if (dt.Is(Untyped16)) SetEncodingValue(0x1);
1599 if (dt.Is(Untyped3
[all...]
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat43 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/
H A Ddebug-info-template.cpp15 template<typename T, T, const int *x, foo_mem a, void (foo::*b)(), void (*f)(), int ...Is>
74 // CHECK: [[TCARG7]] = !DITemplateValueParameter(tag: DW_TAG_GNU_template_parameter_pack, name: "Is", value: [[TCARG7_VALS:![0-9]*]])
113 // CHECK: [[TCNARG7]] = !DITemplateValueParameter(tag: DW_TAG_GNU_template_parameter_pack, name: "Is", value: [[EMPTY]])
/external/llvm/include/llvm/Support/
H A DFormat.h82 template <std::size_t... Is>
84 index_sequence<Is...>) const {
86 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
88 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DShapeDrawableTest.java9 import static org.hamcrest.core.Is.is;
/external/llvm/include/llvm/MC/
H A DMachineLocation.h56 void setIsRegister(bool Is) { IsRegister = Is; } argument
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMachineLocation.h54 void setIsRegister(bool Is) { IsRegister = Is; } argument

Completed in 4994 milliseconds

123456789