/external/v8/src/ |
char-predicates.h | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 47 static inline bool Is(uc32 c) { 50 default: return unibrow::Letter::Is(c); 57 static inline bool Is(uc32 c) { 58 return IdentifierStart::Is(c) 59 || unibrow::Number::Is(c) 60 || c == 0x200C // U+200C is Zero-Width Non-Joiner. 61 || c == 0x200D // U+200D is Zero-Width Joiner. 62 || unibrow::CombiningMark::Is(c [all...] |
inspector.cc | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 51 if (obj->Is##type()) { \
|
unicode.h | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 135 // of UTF-8 data. The special case where the unit is a surrogate 136 // trail produces 1 byte net, because the encoding of the pair is 140 // One UTF-16 surrogate is endoded (illegally) as 3 UTF-8 bytes. 169 // A single surrogate is coded as a 3 byte UTF-8 sequence, but two together 188 // Note that default implementation is not efficient. 239 // implementation is free to decide whether it wants to use this 259 static bool Is(uchar c); 262 static bool Is(uchar c) [all...] |
unicode.cc | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 70 * about a character is around 10, slightly higher if there is no 82 // next one is not also less than this one, we've arrived. 110 // which is of the specified length and uses the specified special case 111 // mapping for multi-char mappings. The next parameter is the character 114 // if the allow_caching_ptr is non-null then false will be stored in 117 // If ranges are linear, a match between a start and end point is 119 // the result is the same as for the start point on the entire range [all...] |
/external/chromium_org/v8/src/ |
char-predicates.h | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 49 static inline bool Is(uc32 c) { 52 default: return unibrow::Letter::Is(c); 59 static inline bool Is(uc32 c) { 60 return IdentifierStart::Is(c) 61 || unibrow::Number::Is(c) 62 || c == 0x200C // U+200C is Zero-Width Non-Joiner. 63 || c == 0x200D // U+200D is Zero-Width Joiner. 64 || unibrow::CombiningMark::Is(c [all...] |
unicode.h | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 120 // of UTF-8 data. The special case where the unit is a surrogate 121 // trail produces 1 byte net, because the encoding of the pair is 125 // One UTF-16 surrogate is endoded (illegally) as 3 UTF-8 bytes. 161 // A single surrogate is coded as a 3 byte UTF-8 sequence, but two together 210 static bool Is(uchar c); 213 static bool Is(uchar c); 216 static bool Is(uchar c); 219 static bool Is(uchar c) [all...] |
ic-inl.h | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 51 // At least one break point is active perform additional test to ensure that 54 // If the call site is a call to debug break then return the address in 73 // is safe for use during GC where the map might be marked. 106 // If the object is a value, we use the prototype map for the cache. 124 if (type->Is(Type::Boolean()) || 125 type->Is(Type::Number()) || 126 type->Is(Type::String()) || 127 type->Is(Type::Symbol())) [all...] |
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 211 // When compiling stub templates, the meta map is used as a place holder 212 // for the actual map with which the template is later instantiated. 213 // We treat it as a kind of type variable whose upper bound is Any. 278 if (!this_i->Is(that)) return false; 284 // (iff T is not a union) 290 if (this->Is(that_i)) return true; 291 if (this->is_bitset()) break; // Fast fail, no other field is a bitset. 301 return this->Is(that) | [all...] |
types.h | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 39 // A simple type system for compiler-internal use. It is based entirely on 70 // TODO(rossberg): the latter is not currently true for proxies, because of fix, 75 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2) 78 // Typically, the former is to be used to select representations (e.g., via 79 // T->Is(Integer31())), and the to check whether a specific case needs handling 82 // There is no functionality to discover whether a type is a leaf in th [all...] |
typing.cc | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 125 // TODO(rossberg): is it worth having a non-termination effect? 130 // TODO(rossberg): is it worth having a non-termination effect? 140 // TODO(rossberg): is it worth having a non-termination effect? 435 // TODO(rossberg): is it worth having a non-termination effect? 611 if (!upper->Is(Type::Signed32())) 629 // is no 'positive Smi' type for the lower bound, we use the smallest 639 l.lower->Is(Type::None()) || r.lower->Is(Type::None()) [all...] |
unicode.cc | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 73 * about a character is around 10, slightly higher if there is no 85 // next one is not also less than this one, we've arrived. 114 // which is of the specified length and uses the specified special case 115 // mapping for multi-char mappings. The next parameter is the character 118 // if the allow_caching_ptr is non-null then false will be stored in 121 // If ranges are linear, a match between a start and end point is 123 // the result is the same as for the start point on the entire range [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/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 24 bool IsRegister; // True if location is a register. 29 // The target register number for an abstract frame pointer. The value is 52 void setIsRegister(bool Is) { IsRegister = Is; }
|
/external/clang/test/CodeGenCXX/ |
debug-info-template.cpp | 44 // 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/ |
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/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));
|
ProgressDialogTest.java | 19 import static org.hamcrest.core.Is.is; 45 CharSequence message = "This is only a test"; 69 assertThat(shadowProgressDialog.getContext(), is(context)); method 75 assertThat(cancelListener.onCancelDialogInterface, is((DialogInterface) progressDialog));
|
/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...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
PRESUBMIT.py | 2 # Use of this source code is governed by a BSD-style license that can be 45 Maybe this is ok? Follow this simple guide: 50 * Is this change to support a new feature in the templates? 57 Q: Is this a non-trivial change to the server? 62 Q: Is this a spelling correction? New test? Better comments?
|
/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 61 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)) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
negate-zero.js | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 assertTrue(x == 0); // Is 0 or -0.
|
/external/llvm/bindings/ocaml/executionengine/ |
llvm_executionengine.mli | 5 * This file is distributed under the University of Illinois Open Source 18 (** [GenericValue.t] is a boxed union type used to portably pass arguments to 20 selection of types; for more complex argument types, it is necessary to 61 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 84 (** An execution engine is either a JIT compiler or an interpreter, capable of 92 is not garbage collected and must be destroyed with [dispose ee]. 98 execution engine is not garbage collected and must be destroyed wit [all...] |
/external/v8/test/mjsunit/ |
negate-zero.js | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 assertTrue(x == 0); // Is 0 or -0.
|