Home
last modified time | relevance | path

Searched refs:Is (Results 1 – 25 of 388) sorted by relevance

12345678910>>...16

/external/v8/test/unittests/
Dchar-predicates-unittest.cc15 EXPECT_TRUE(WhiteSpace::Is(0x0009)); in TEST()
16 EXPECT_TRUE(WhiteSpace::Is(0x000B)); in TEST()
17 EXPECT_TRUE(WhiteSpace::Is(0x000C)); in TEST()
18 EXPECT_TRUE(WhiteSpace::Is(' ')); in TEST()
19 EXPECT_TRUE(WhiteSpace::Is(0x00A0)); in TEST()
20 EXPECT_TRUE(WhiteSpace::Is(0x180E)); in TEST()
21 EXPECT_TRUE(WhiteSpace::Is(0xFEFF)); in TEST()
29 EXPECT_TRUE(WhiteSpaceOrLineTerminator::Is(0x0009)); in TEST()
30 EXPECT_TRUE(WhiteSpaceOrLineTerminator::Is(0x000B)); in TEST()
31 EXPECT_TRUE(WhiteSpaceOrLineTerminator::Is(0x000C)); in TEST()
[all …]
/external/skia/src/core/
DSkRecordOpts.cpp40 typedef Pattern<Is<SetMatrix>, in multiple_set_matrices()
41 Greedy<Is<NoOp>>, in multiple_set_matrices()
42 Is<SetMatrix> > in multiple_set_matrices()
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<Save>,
[all …]
/external/v8/test/cctest/compiler/
Dtest-js-constant-cache.cc74 CHECK(t->Is(Type::Number())); in TEST()
75 CHECK(t->Is(Type::Integral32())); in TEST()
76 CHECK(t->Is(Type::Signed32())); in TEST()
77 CHECK(t->Is(Type::Unsigned32())); in TEST()
78 CHECK(t->Is(Type::SignedSmall())); in TEST()
79 CHECK(t->Is(Type::UnsignedSmall())); in TEST()
95 CHECK(t->Is(Type::Number())); in TEST()
96 CHECK(t->Is(Type::MinusZero())); in TEST()
97 CHECK(!t->Is(Type::Integral32())); in TEST()
98 CHECK(!t->Is(Type::Signed32())); in TEST()
[all …]
/external/v8/src/
Dchar-predicates.h42 static inline bool Is(uc32 c) { in Is() function
44 return unibrow::ID_Start::Is(c); in Is()
56 static inline bool Is(uc32 c) { in Is() function
58 return unibrow::ID_Start::Is(c) || unibrow::ID_Continue::Is(c); in Is()
70 static inline bool Is(uc32 c) { return unibrow::WhiteSpace::Is(c); } in Is() function
77 static inline bool Is(uc32 c) { in Is() function
78 return WhiteSpace::Is(c) || unibrow::LineTerminator::Is(c); in Is()
Dtyping-asm.cc373 if (!computed_type_->Is(return_type_) || !return_type_->Is(computed_type_)) { in VisitReturnStatement()
528 if (!computed_type_->Is(cache_.kAsmInt)) { in VisitConditional()
536 if (intish_ != 0 || !then_type->Is(cache_.kAsmComparable)) { in VisitConditional()
544 if (intish_ != 0 || !else_type->Is(cache_.kAsmComparable)) { in VisitConditional()
548 if (!then_type->Is(else_type) || !else_type->Is(then_type)) { in VisitConditional()
572 if (type->Is(cache_.kAsmInt)) { in VisitVariableProxy()
704 if (type->Is(cache_.kAsmSize8)) return 0; in ElementShiftSize()
705 if (type->Is(cache_.kAsmSize16)) return 1; in ElementShiftSize()
706 if (type->Is(cache_.kAsmSize32)) return 2; in ElementShiftSize()
707 if (type->Is(cache_.kAsmSize64)) return 3; in ElementShiftSize()
[all …]
Dunicode.h161 static bool Is(uchar c);
164 static bool Is(uchar c);
167 static bool Is(uchar c);
170 static bool Is(uchar c);
173 static bool Is(uchar c);
176 static bool Is(uchar c);
179 static bool Is(uchar c);
Dtypes.cc381 DCHECK(BitsetType::Is(boundaries[i].internal, boundaries[i].external)); in ExpandInternals()
438 DCHECK(Is(SEMANTIC(bits), kNumber)); in Min()
442 if (Is(SEMANTIC(mins[i].internal), bits)) { in Min()
454 DCHECK(Is(SEMANTIC(bits), kNumber)); in Max()
457 if (BitsetType::Is(SEMANTIC(mins[BoundariesSize() - 1].internal), bits)) { in Max()
461 if (Is(SEMANTIC(mins[i].internal), bits)) { in Max()
526 return BitsetType::Is(this->BitsetLub(), that->AsBitset()); in SlowIs()
530 return BitsetType::Is(this->AsBitset(), that->BitsetGlb()); in SlowIs()
534 if (!BitsetType::Is(Representation(), that->Representation())) { in SlowIs()
552 return BitsetType::Is(SEMANTIC(this->BitsetLub()), that->AsBitset()); in SemanticIs()
[all …]
/external/v8/src/crankshaft/
Dhydrogen-types.cc17 if (T::Any()->Is(type)) return HType::Any(); in FromType()
19 if (type->Is(T::SignedSmall())) return HType::Smi(); in FromType()
20 if (type->Is(T::Number())) return HType::TaggedNumber(); in FromType()
21 if (type->Is(T::Null())) return HType::Null(); in FromType()
22 if (type->Is(T::String())) return HType::String(); in FromType()
23 if (type->Is(T::Boolean())) return HType::Boolean(); in FromType()
24 if (type->Is(T::Undefined())) return HType::Undefined(); in FromType()
25 if (type->Is(T::Object())) return HType::JSObject(); in FromType()
26 if (type->Is(T::Receiver())) return HType::JSReceiver(); in FromType()
/external/v8/src/compiler/
Dmachine-operator-reducer.cc140 if (m.right().Is(0)) return Replace(m.left().node()); // x ^ 0 => x in Reduce()
145 if (m.left().IsWord32Xor() && m.right().Is(-1)) { in Reduce()
147 if (mleft.right().Is(-1)) { // (x ^ -1) ^ -1 => x in Reduce()
157 if (m.right().Is(0)) return Replace(m.left().node()); // x >>> 0 => x in Reduce()
167 if (m.right().Is(0)) return Replace(m.left().node()); // x ror 0 => x in Reduce()
179 if (m.left().IsInt32Sub() && m.right().Is(0)) { // x - y == 0 => x == y in Reduce()
194 if (m.left().IsInt64Sub() && m.right().Is(0)) { // x - y == 0 => x == y in Reduce()
210 if (m.right().Is(0)) return Replace(m.right().node()); // x * 0 => 0 in Reduce()
211 if (m.right().Is(1)) return Replace(m.left().node()); // x * 1 => x in Reduce()
215 if (m.right().Is(-1)) { // x * -1 => 0 - x in Reduce()
[all …]
Drepresentation-change.cc165 if (output_type->Is(Type::Signed32())) { in GetTaggedRepresentationFor()
168 } else if (output_type->Is(Type::Unsigned32())) { in GetTaggedRepresentationFor()
190 if (output_type->Is(Type::Unsigned32())) { in GetTaggedRepresentationFor()
192 } else if (output_type->Is(Type::Signed32())) { in GetTaggedRepresentationFor()
222 if (output_type->Is(Type::Unsigned32())) { in GetFloat32RepresentationFor()
240 if (output_type->Is(Type::Signed32())) { in GetFloat32RepresentationFor()
245 DCHECK(output_type->Is(Type::Unsigned32()) || in GetFloat32RepresentationFor()
274 if (output_type->Is(Type::Signed32())) { in GetFloat64RepresentationFor()
278 DCHECK(output_type->Is(Type::Unsigned32())); in GetFloat64RepresentationFor()
295 if (output_type->Is(Type::Signed32())) { in GetFloat64RepresentationFor()
[all …]
Dtyper.cc273 CHECK(previous->Is(current)); in UpdateType()
276 if (!current->Is(previous)) { in UpdateType()
342 DCHECK(type->Is(Type::Boolean())); in Invert()
344 if (type->Is(t->singleton_false_)) return t->singleton_true_; in Invert()
345 if (type->Is(t->singleton_true_)) return t->singleton_false_; in Invert()
374 if (!type->Is(t->cache_.kInteger)) { in Rangify()
393 if (type->Is(Type::Primitive()) && !type->Maybe(Type::Receiver())) { in ToPrimitive()
401 if (type->Is(Type::Boolean())) return type; in ToBoolean()
402 if (type->Is(t->falsish_)) return t->singleton_false_; in ToBoolean()
403 if (type->Is(t->truish_)) return t->singleton_true_; in ToBoolean()
[all …]
Dtype-hint-analyzer.cc20 if (type->Is(Type::None())) return BinaryOperationHints::kNone; in ToHint()
21 if (type->Is(Type::SignedSmall())) return BinaryOperationHints::kSignedSmall; in ToHint()
22 if (type->Is(Type::Signed32())) return BinaryOperationHints::kSigned32; in ToHint()
23 if (type->Is(Type::Number())) return BinaryOperationHints::kNumber; in ToHint()
24 if (type->Is(Type::String())) return BinaryOperationHints::kString; in ToHint()
Djs-builtin-reducer.cc48 NodeProperties::GetType(GetJSCallInput(0))->Is(t1); in InputsMatchOne()
54 NodeProperties::GetType(GetJSCallInput(0))->Is(t1) && in InputsMatchTwo()
55 NodeProperties::GetType(GetJSCallInput(1))->Is(t2); in InputsMatchTwo()
61 if (!NodeProperties::GetType(GetJSCallInput(i))->Is(t)) { in InputsMatchAll()
Dsimplified-lowering.cc509 DCHECK(info->output_type()->Is(output_type)); in SetOutput()
512 if (!output_type->Is(info->output_type()) || in SetOutput()
522 return GetInfo(node->InputAt(0))->output_type()->Is(Type::Signed32()) && in BothInputsAreSigned32()
523 GetInfo(node->InputAt(1))->output_type()->Is(Type::Signed32()); in BothInputsAreSigned32()
528 return GetInfo(node->InputAt(0))->output_type()->Is(Type::Unsigned32()) && in BothInputsAreUnsigned32()
529 GetInfo(node->InputAt(1))->output_type()->Is(Type::Unsigned32()); in BothInputsAreUnsigned32()
534 return GetInfo(node->InputAt(0))->output_type()->Is(type) && in BothInputsAre()
535 GetInfo(node->InputAt(1))->output_type()->Is(type); in BothInputsAre()
676 if (type->Is(Type::None())) { in GetOutputInfoForPhi()
678 } else if (type->Is(Type::Signed32()) || type->Is(Type::Unsigned32())) { in GetOutputInfoForPhi()
[all …]
/external/skia/tests/
DRecordPatternTest.cpp16 typedef Pattern<Is<Save>,
17 Is<ClipRect>,
18 Is<Restore>>
81 Pattern<Is<Save>, Greedy<Is<ClipRect>>, Is<Restore>> pattern; in DEF_TEST()
101 Pattern<Is<Save>, in DEF_TEST()
102 Greedy<Not<Or<Is<Save>, in DEF_TEST()
103 Is<Restore>, in DEF_TEST()
105 Is<Restore>> pattern; in DEF_TEST()
/external/v8/test/cctest/
Dtest-types.cc133 CHECK(type1->Is(type2)); in CheckSub()
134 CHECK(!type2->Is(type1)); in CheckSub()
141 CHECK(type1->Is(type2)); in CheckSubOrEqual()
149 CHECK(!type1->Is(type2)); in CheckUnordered()
150 CHECK(!type2->Is(type1)); in CheckUnordered()
162 CHECK(!type1->Is(type2)); in CheckDisjoint()
163 CHECK(!type2->Is(type1)); in CheckDisjoint()
213 CHECK(!(this->IsBitset(type2) && type1->Is(type2)) || in Bitset()
308 bool representation_is = representation1->Is(representation2); in PointwiseRepresentation()
309 bool semantic_is = semantic1->Is(semantic2); in PointwiseRepresentation()
[all …]
Dtest-asm-validator.cc1939 CHECK(cache.kAsmFixnum->Is(cache.kAsmFixnum)); in TEST()
1940 CHECK(cache.kAsmFixnum->Is(cache.kAsmSigned)); in TEST()
1941 CHECK(cache.kAsmFixnum->Is(cache.kAsmUnsigned)); in TEST()
1942 CHECK(cache.kAsmFixnum->Is(cache.kAsmInt)); in TEST()
1943 CHECK(!cache.kAsmFixnum->Is(cache.kAsmFloat)); in TEST()
1944 CHECK(!cache.kAsmFixnum->Is(cache.kAsmDouble)); in TEST()
1946 CHECK(cache.kAsmSigned->Is(cache.kAsmSigned)); in TEST()
1947 CHECK(cache.kAsmSigned->Is(cache.kAsmInt)); in TEST()
1948 CHECK(!cache.kAsmSigned->Is(cache.kAsmFixnum)); in TEST()
1949 CHECK(!cache.kAsmSigned->Is(cache.kAsmUnsigned)); in TEST()
[all …]
/external/parameter-framework/upstream/test/xml-generator/testVector/
Dcomplex.pfw7 Switch Is On
8 # Expecting a empty tree of all (except for the last `Switch Is On` rule)
14 Switch Is On
16 Switch Is On
26 Switch Is On
/external/jetty/src/resources/org/eclipse/jetty/webapp/jmx/
DWebAppContext-mbean.properties8 distributable: Is the web application distributable
9 extractWAR: Is the war file extraced on deploy
10 copyWebDir: Is the web application directory copied on deploy
11 parentLoaderPriority: Is the parent classloader given priority
/external/hamcrest/src/org/hamcrest/core/
DIs.java17 public class Is<T> extends BaseMatcher<T> { class
21 public Is(Matcher<T> matcher) { in Is() method in Is
42 return new Is<T>(matcher); in is()
/external/llvm/include/llvm/Support/
DFormat.h82 template <std::size_t... Is>
84 index_sequence<Is...>) const { in snprint_tuple() argument
86 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...); in snprint_tuple()
88 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...); in snprint_tuple()
/external/v8/src/wasm/
Dasm-wasm-builder.cc502 if (type->Is(cache_.kUint8Array)) { in VisitProperty()
505 } else if (type->Is(cache_.kInt8Array)) { in VisitProperty()
508 } else if (type->Is(cache_.kUint16Array)) { in VisitProperty()
511 } else if (type->Is(cache_.kInt16Array)) { in VisitProperty()
514 } else if (type->Is(cache_.kUint32Array)) { in VisitProperty()
517 } else if (type->Is(cache_.kInt32Array)) { in VisitProperty()
520 } else if (type->Is(cache_.kUint32Array)) { in VisitProperty()
523 } else if (type->Is(cache_.kFloat32Array)) { in VisitProperty()
526 } else if (type->Is(cache_.kFloat64Array)) { in VisitProperty()
884 if (type->Is(cache_.kAsmFixnum)) { in TypeIndexOf()
[all …]
/external/ppp/pppd/plugins/radius/etc/
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/deqp/framework/common/
DtcuEither.hpp114 struct Is;
117 struct Is<First, First, Second> struct
126 struct Is<Second, First, Second> struct
137 return Is<Type, First, Second>::is(either); in is()
/external/deqp/
DCMakeLists.txt18 set(DEQP_SUPPORT_GLES1 OFF) # Is GLESv1 supported
21 set(DEQP_SUPPORT_GLES2 OFF) # Is GLESv2 supported
24 set(DEQP_SUPPORT_GLES3 OFF) # Is GLESv3 supported
27 set(DEQP_SUPPORT_VG OFF) # Is VG supported
30 set(DEQP_SUPPORT_EGL OFF) # Is EGL supported
33 set(DEQP_SUPPORT_GLX OFF) # Is GLX supported
34 set(DEQP_SUPPORT_WGL OFF) # Is WGL supported
38 set(DEQP_SUPPORT_OPENGL OFF) # Is OpenGL supported on platform

12345678910>>...16