Searched defs:Is (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/v8/src/
H A Dchar-predicates.h26 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierStart
29 default: return unibrow::Letter::Is(c);
36 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierPart
37 return IdentifierStart::Is(c)
38 || unibrow::Number::Is(c)
41 || unibrow::CombiningMark::Is(c)
42 || unibrow::ConnectorPunctuation::Is(c);
49 static inline bool Is(uc32 c) { function in struct:v8::internal::WhiteSpace
55 unibrow::WhiteSpace::Is(c);
62 static inline bool Is(uc3 function in struct:v8::internal::WhiteSpaceOrLineTerminator
[all...]
H A Ddateparser.h121 bool Is(uint32_t c) const { return ch_ == c; } function in class:v8::internal::DateParser::BASE_EMBEDDED
H A Dtypes.h108 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
112 // T->Is(SignedSmall())), and the latter to check whether a specific case needs
119 // Consequently, do not normally use Equals for type tests, always use Is!
390 bool Is(TypeImpl* that) { return this == that || this->SlowIs(that); } function in class:v8::internal::TypeImpl
392 bool Is(TypeHandle that) { return this->Is(*that); } function in class:v8::internal::TypeImpl
398 bool Equals(TypeImpl* that) { return this->Is(that) && that->Is(this); }
402 // Equivalent to Constant(val)->Is(this), but avoiding allocation.
592 static bool Is(bitse function in class:v8::internal::TypeImpl::BitsetType
[all...]
H A Dunicode.cc175 if (next != 0 && Letter::Is(next)) {
421 bool Uppercase::Is(uchar c) { function in class:unibrow::Uppercase
533 bool Lowercase::Is(uchar c) { function in class:unibrow::Lowercase
658 bool Letter::Is(uchar c) { function in class:unibrow::Letter
708 bool Number::Is(uchar c) { function in class:unibrow::Number
733 bool WhiteSpace::Is(uchar c) { function in class:unibrow::WhiteSpace
755 bool LineTerminator::Is(uchar c) { function in class:unibrow::LineTerminator
821 bool CombiningMark::Is(uchar c) { function in class:unibrow::CombiningMark
852 bool ConnectorPunctuation::Is(uchar c) { function in class:unibrow::ConnectorPunctuation
H A Dobjects-inl.h60 bool Object::Is##type() const { \
68 SLOW_DCHECK(object->Is##type()); \
72 SLOW_DCHECK(object->Is##type()); \
780 template <> inline bool Is<JSFunction>(Object* obj) { function in namespace:v8::internal
825 template <> inline bool Is<JSArray>(Object* obj) { function in namespace:v8::internal
1014 bool Object::Is##Name() const { \
/external/hamcrest/src/org/hamcrest/core/
H A DIs.java17 public class Is<T> extends BaseMatcher<T> { class in inherits:BaseMatcher
21 public Is(Matcher<T> matcher) { method in class:Is
42 return new Is<T>(matcher);
/external/llvm/include/llvm/MC/
H A DMachineLocation.h56 void setIsRegister(bool Is) { IsRegister = Is; } argument
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dtestharness.h61 Tester& Is(bool b, const char* msg) { function in class:leveldb::test::Tester
105 #define ASSERT_TRUE(c) ::leveldb::test::Tester(__FILE__, __LINE__).Is((c), #c)
/external/chromium_org/third_party/skia/src/core/
H A DSkRecordPattern.h13 class Is { class in namespace:SkRecords
15 Is() : fPtr(NULL) {} function in class:SkRecords::Is
/external/skia/src/core/
H A DSkRecordPattern.h13 class Is { class in namespace:SkRecords
15 Is() : fPtr(NULL) {} function in class:SkRecords::Is
/external/chromium_org/v8/src/compiler/
H A Dnode-matchers.h29 bool Is##Opcode() const { return opcode() == IrOpcode::k##Opcode; }
54 bool Is(const T& value) const { function in struct:v8::internal::compiler::ValueMatcher
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Dconfig.cpp74 inline bool Is(unsigned long f) {return (state & f) == f;} function in class:CNfcConfig
298 if (Is(IsStringValue) && base == 16 && i > 0)
/external/libnfc-nci/src/adaptation/
H A Dconfig.cpp74 inline bool Is(unsigned long f) {return (state & f) == f;} function in class:CNfcConfig
309 if (Is(IsStringValue) && base == 16 && i > 0)
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc373 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));
439 // Union(T1, T2) is bitset if T2 is bitset and T1->Is(T2)
445 CHECK(!(this->IsBitset(type2) && type1->Is(type2)) ||
535 CHECK(T.Constant(fac->NewNumber(0))->Is(T.UnsignedSmall));
536 CHECK(T.Constant(fac->NewNumber(1))->Is(
874 void Is() { function in struct:Tests
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h237 Container<Variable *> &Is, R_SExpr T) {
370 Container<Variable *> &Is, R_SExpr T) {
371 return (As.Success && Is.Success && T);
236 reduceBasicBlock(BasicBlock &Orig, Container<Variable *> &As, Container<Variable *> &Is, R_SExpr T) argument
369 reduceBasicBlock(BasicBlock &Orig, Container<Variable *> &As, Container<Variable *> &Is, R_SExpr T) argument
H A DThreadSafetyTIL.h1415 BasicBlock(BasicBlock &B, VarArray &&As, VarArray &&Is, SExpr *T) argument
1417 Parent(nullptr), Args(std::move(As)), Instrs(std::move(Is)),
/external/chromium_org/v8/tools/
H A Dgrokdump.py938 def Is(self, cls): member in class:HeapObject
1347 if self.shared.script.Is(Script) and self.shared.script.name.Is(String):
1361 if self.shared.Is(SharedFunctionInfo):
1370 if not self.shared.script.Is(Script): return source
1372 if not script_source.Is(String): return source
/external/owasp/sanitizer/lib/junit/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 823 milliseconds