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

1234

/external/v8/src/
H A Dchar-predicates.h47 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierStart
50 default: return unibrow::Letter::Is(c);
57 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierPart
58 return IdentifierStart::Is(c)
59 || unibrow::Number::Is(c)
62 || unibrow::CombiningMark::Is(c)
63 || unibrow::ConnectorPunctuation::Is(c);
H A Dinspector.cc51 if (obj->Is##type()) { \
H A Dunicode.h259 static bool Is(uchar c);
262 static bool Is(uchar c);
265 static bool Is(uchar c);
268 static bool Is(uchar c);
271 static bool Is(uchar c);
274 static bool Is(uchar c);
277 static bool Is(uchar c);
280 static bool Is(uchar c);
283 static bool Is(uchar c);
H A Dunicode.cc194 if (next != 0 && Letter::Is(next)) {
450 bool Uppercase::Is(uchar c) { function in class:unibrow::Uppercase
561 bool Lowercase::Is(uchar c) { function in class:unibrow::Lowercase
685 bool Letter::Is(uchar c) { function in class:unibrow::Letter
724 bool Space::Is(uchar c) { function in class:unibrow::Space
755 bool Number::Is(uchar c) { function in class:unibrow::Number
779 bool WhiteSpace::Is(uchar c) { function in class:unibrow::WhiteSpace
800 bool LineTerminator::Is(uchar c) { function in class:unibrow::LineTerminator
865 bool CombiningMark::Is(uchar c) { function in class:unibrow::CombiningMark
895 bool ConnectorPunctuation::Is(ucha function in class:unibrow::ConnectorPunctuation
[all...]
/external/chromium_org/v8/src/
H A Dchar-predicates.h49 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierStart
52 default: return unibrow::Letter::Is(c);
59 static inline bool Is(uc32 c) { function in struct:v8::internal::IdentifierPart
60 return IdentifierStart::Is(c)
61 || unibrow::Number::Is(c)
64 || unibrow::CombiningMark::Is(c)
65 || unibrow::ConnectorPunctuation::Is(c);
H A Dunicode.h210 static bool Is(uchar c);
213 static bool Is(uchar c);
216 static bool Is(uchar c);
219 static bool Is(uchar c);
222 static bool Is(uchar c);
225 static bool Is(uchar c);
228 static bool Is(uchar c);
231 static bool Is(uchar c);
234 static bool Is(uchar c);
H A Dtypes.cc251 if (!this_i->Is(that)) return false;
263 if (this->Is(that_i)) return true;
319 if (this->Is(type)) return true;
335 ASSERT(i == 0 || !(type->is_bitset() || type->Is(union_get(unioned, 0))));
345 // TODO(rossberg): Should we use object sets somehow? Is it worth it?
360 if (type1->Is(type2)) return *type2;
361 if (type2->Is(type1)) return *type1;
404 if (this->Is(that) && !this->InUnion(result, old_size))
410 ASSERT(i == 0 || !(type->is_bitset() || type->Is(union_get(unioned, 0))));
412 if (type->Is(tha
[all...]
H A Dunicode.cc198 if (next != 0 && Letter::Is(next)) {
444 bool Uppercase::Is(uchar c) { function in class:unibrow::Uppercase
556 bool Lowercase::Is(uchar c) { function in class:unibrow::Lowercase
681 bool Letter::Is(uchar c) { function in class:unibrow::Letter
721 bool Space::Is(uchar c) { function in class:unibrow::Space
753 bool Number::Is(uchar c) { function in class:unibrow::Number
778 bool WhiteSpace::Is(uchar c) { function in class:unibrow::WhiteSpace
800 bool LineTerminator::Is(uchar c) { function in class:unibrow::LineTerminator
866 bool CombiningMark::Is(uchar c) { function in class:unibrow::CombiningMark
897 bool ConnectorPunctuation::Is(ucha function in class:unibrow::ConnectorPunctuation
[all...]
H A Dtypes.h75 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
79 // T->Is(Integer31())), and the to check whether a specific case needs handling
87 // Consequently, do not use pointer equality for type tests, always use Is!
158 bool Is(Type* that) { return (this == that) ? true : IsSlowCase(that); } function in class:v8::internal::Type
159 bool Is(Handle<Type> that) { return this->Is(*that); } function in class:v8::internal::Type
H A Dtyping.cc582 if (!upper->Is(Type::Signed32())) upper = Type::Signed32();
604 l.lower->Is(Type::Number()) && r.lower->Is(Type::Number()) ?
606 l.lower->Is(Type::String()) || r.lower->Is(Type::String()) ?
609 l.upper->Is(Type::Number()) && r.upper->Is(Type::Number()) ?
611 l.upper->Is(Type::String()) || r.upper->Is(Type::String()) ?
/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/clang/test/CodeGenCXX/
H A Ddebug-info-template.cpp44 // CHECK: [[TCARG8]] = {{.*}}metadata !"Is", null, metadata [[TCARG8_VALS:![0-9]*]], {{.*}} ; [ DW_TAG_GNU_template_parameter_pack ]
71 // CHECK: [[TCNARG8]] = {{.*}}metadata !"Is", null, metadata [[EMPTY]], {{.*}} ; [ DW_TAG_GNU_template_parameter_pack ]
78 template<typename T, T, int *x, int foo::*a, void (foo::*b)(), void (*f)(), template<typename> class tmpl, int ...Is>
/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/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DShapeDrawableTest.java9 import static org.hamcrest.core.Is.is;
H A DNotificationTest.java11 import static org.hamcrest.core.Is.is;
H A DProgressDialogTest.java19 import static org.hamcrest.core.Is.is;
H A DTabSpecTest.java18 import static org.hamcrest.core.Is.is;
/external/llvm/include/llvm/MC/
H A DMachineLocation.h52 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/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java14 return org.hamcrest.core.Is.is(matcher);
24 return org.hamcrest.core.Is.is(value);
34 return org.hamcrest.core.Is.is(type);
55 * Is the value equal to another value, as tested by the
63 * Is the value an instance of a particular type?
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc61 CHECK(type1->Is(type2));
62 CHECK(type2->Is(type1));
67 CHECK(type1->Is(type2));
68 CHECK(!type2->Is(type1));
76 CHECK(!type1->Is(type2));
77 CHECK(!type2->Is(type1));
94 CHECK(!type1->Is(type2));
95 CHECK(!type2->Is(type1));
253 TEST(Is) {
260 CHECK(T.None->Is(
[all...]
/external/llvm/bindings/ocaml/executionengine/
H A Dllvm_executionengine.mli61 Is invalid if [gv] has a bitwidth greater than 32 bits. See the field
66 Is invalid if [gv] has a bitwidth greater than the host bit width (but the
72 [nativeint]. Is invalid if [gv] has a bitwidth greater than
77 Is invalid if [gv] has a bitwidth greater than [int64]. See the field
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
H A DTestHttpResponseTest.java11 import static org.hamcrest.core.Is.is;
/external/v8/test/mjsunit/
H A Djson.js372 var func = function() { /* Is callable */ };
374 var funcJSON = function() { /* Is callable */ };
377 var re = /Is callable/;
379 var reJSON = /Is callable/;
/external/v8/tools/
H A Dgrokdump.py644 def Is(self, cls): member in class:HeapObject
811 if self.shared.script.Is(Script) and self.shared.script.name.Is(String):
825 if self.shared.Is(SharedFunctionInfo):
834 if not self.shared.script.Is(Script): return source
836 if not script_source.Is(String): return source

Completed in 2116 milliseconds

1234