HomeSort by relevance Sort by last modified time
    Searched refs:Is (Results 26 - 50 of 174) sorted by null

12 3 4 5 6 7

  /external/chromium_org/v8/src/ic/
ic-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
28 // At least one break point is active perform additional test to ensure that
32 // If the call site is a call to debug break then return the address in
40 // Return the address in the original code. This is the place where
61 // At least one break point is active perform additional test to ensure that
66 // If the call site is a call to debug break then we want to return the
89 // is safe for use during GC where the map might be marked.
163 if (type->Is(TypeClass::Boolean())) {
165 } else if (type->Is(TypeClass::Number())) {
167 } else if (type->Is(TypeClass::String()))
    [all...]
  /external/llvm/unittests/ADT/
PointerUnionTest.cpp 5 // This file is distributed under the University of Illinois Open Source
57 TEST_F(PointerUnionTest, Is) {
58 EXPECT_FALSE(a.is<int *>());
59 EXPECT_TRUE(a.is<float *>());
60 EXPECT_TRUE(b.is<int *>());
61 EXPECT_FALSE(b.is<float *>());
62 EXPECT_TRUE(n.is<int *>());
63 EXPECT_FALSE(n.is<float *>());
  /external/chromium_org/v8/src/compiler/
representation-change.h 2 // Use of this source code is governed by a BSD-style license that can be
49 // no representation change is necessary.
313 if (type->Is(Type::None()))
315 if (type->Is(Type::Signed32())) return kTypeInt32;
316 if (type->Is(Type::Unsigned32())) return kTypeUint32;
317 if (type->Is(Type::Number())) return kTypeNumber;
318 if (type->Is(Type::Boolean())) return kTypeBool;
330 bool type_error_; // Set when a type error is detected.
node-matchers.h 2 // Use of this source code is governed by a BSD-style license that can be
29 bool Is##Opcode() const { return opcode() == IrOpcode::k##Opcode; }
54 bool Is(const T& value) const {
schedule.cc 2 // Use of this source code is governed by a BSD-style license that can be
57 if (!bounds.upper->Is(bounds.lower)) {
simplified-operator.cc 2 // Use of this source code is governed by a BSD-style license that can be
76 lhs.type->Is(rhs.type);
93 lhs.machine_type == rhs.machine_type && lhs.type->Is(rhs.type);
  /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/chromium_org/third_party/skia/src/core/
SkRecordPattern.h 13 class Is {
15 Is() : fPtr(NULL) {}
63 // Abstracts away whether the paint is always part of the command or optional.
92 // Star is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
102 // This is the main entry point to pattern matching, and so provides a couple of extra API bits:
118 // If there is no such span, return false. If there is, return true and set [*begin, *end).
131 // T is checked statically at compile time; no casting is involved. It's just an API wart.
148 // If head is a Star, walk i until it doesn't match
    [all...]
  /external/skia/src/core/
SkRecordPattern.h 13 class Is {
15 Is() : fPtr(NULL) {}
63 // Abstracts away whether the paint is always part of the command or optional.
88 // Star is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
98 // This is the main entry point to pattern matching, and so provides a couple of extra API bits:
114 // If there is no such span, return false. If there is, return true and set [*begin, *end).
127 // T is checked statically at compile time; no casting is involved. It's just an API wart.
144 // If head is a Star, walk i until it doesn't match
    [all...]
  /external/chromium_org/v8/src/
func-name-inferrer.cc 2 // Use of this source code is governed by a BSD-style license that can be
26 // Enclosing name is a name of a constructor function. To check
27 // that it is really a constructor, we check that it is not empty
29 if (!name->IsEmpty() && unibrow::Uppercase::Is(name->FirstCharacter())) {
hydrogen-types.h 2 // Use of this source code is governed by a BSD-style license that can be
58 bool Is##Name() const WARN_UNUSED_RESULT { \
typing.cc 2 // Use of this source code is governed by a BSD-style license that can be
85 // The receiver is a parameter with index -1.
174 // TODO(rossberg): is it worth having a non-termination effect?
179 // TODO(rossberg): is it worth having a non-termination effect?
189 // TODO(rossberg): is it worth having a non-termination effect?
477 // TODO(rossberg): is it worth having a non-termination effect?
652 if (!upper->Is(Type::Signed32())) upper = Type::Signed32(zone());
669 // is no 'positive Smi' type for the lower bound, we use the smallest
681 l.lower->Is(Type::String()) || r.lower->Is(Type::String())
    [all...]
unicode.cc 2 // Use of this source code is governed by a BSD-style license that can be
50 * about a character is around 10, slightly higher if there is no
62 // next one is not also less than this one, we've arrived.
91 // which is of the specified length and uses the specified special case
92 // mapping for multi-char mappings. The next parameter is the character
95 // if the allow_caching_ptr is non-null then false will be stored in
98 // If ranges are linear, a match between a start and end point is
100 // the result is the same as for the start point on the entire range.
118 // is not also less than this one, we've arrived
    [all...]
types.h 2 // Use of this source code is governed by a BSD-style license that can be
18 // A simple type system for compiler-internal use. It is based entirely on
56 // There is no subtyping relation between Array, Function, or Context types
61 // TODO(rossberg): the latter is not currently true for proxies, because of fix,
100 // Constant(v) is considered a subtype of Range(x..y) if v happens to be an
108 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
111 // Typically, the former is to be used to select representations (e.g., via
112 // T->Is(SignedSmall())), and the latter to check whether a specific case needs
115 // There is no functionality to discover whether a type is a leaf in th
    [all...]
  /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/src/arm64/
delayed-masm-arm64.h 2 // Use of this source code is governed by a BSD-style license that can be
47 return reg.Is(scratch_register_);
78 // StoreConstant can only be used if the scratch register is not acquired.
109 // Reset the saved value (i.e. the value of ScratchRegister is no longer
126 // generated. Then with the next instruction, if the instruction is
148 // Value held into the ScratchRegister if the saved_value_ is not 0.
macro-assembler-arm64.cc 2 // Use of this source code is governed by a BSD-style license that can be
70 // If the operation is NOT, invert the operation and immediate.
130 if (rd.Is(csp)) {
131 // If rd is the stack pointer we cannot use it as the destination
189 // [imm3, imm2, imm1, imm0], where each imm is 16 bits.
190 // A move-zero or move-inverted is generated for the first non-zero or
195 // If the number of 0xffff halfwords is greater than the number of 0x0000
274 // Note that mov(w0, w0) is not a no-op because it clears the top word of
275 // x0. A flag is provided (kDiscardForSameWReg) if a move between the same W
276 // registers is not required to clear the top word of the X register. I
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-js-typed-lowering.cc 2 // Use of this source code is governed by a BSD-style license that can be
194 // TODO(turbofan): Lowering of StringAdd is disabled for now.
264 if (old_type->Is(expected_type)) {
267 CHECK(NodeProperties::GetBounds(new_input).upper->Is(expected_type));
428 if (types[i]->Is(Type::Number())) {
453 // Note that either outcome below is correct. It only depends on whether
456 if (NodeProperties::GetBounds(n).upper->Is(Type::Number())) {
549 if (types[i]->Is(Type::Boolean())) {
551 } else if (types[i]->Is(Type::OrderedNumber())) {
623 if (types[i]->Is(Type::String()))
    [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
60 Is invalid if [gv] has a bitwidth greater than 32 bits. See the field
65 Is invalid if [gv] has a bitwidth greater than the host bit width (but the
71 [nativeint]. Is invalid if [gv] has a bitwidth greater than
76 Is invalid if [gv] has a bitwidth greater than [int64]. See the field
83 (** An execution engine is either a JIT compiler or an interpreter, capable of
91 is not garbage collected and must be destroyed with [dispose ee].
97 execution engine is not garbage collected and must be destroyed wit
    [all...]
  /external/vixl/src/a64/
macro-assembler-a64.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
31 VIXL_ASSERT((reg.Is(NoReg) || (type >= kBranchTypeFirstUsingReg)) &&
131 // If the operation is NOT, invert the operation and immediate.
184 if (rd.Is(sp)) {
185 // If rd is the stack pointer we cannot use it as the destination
235 // Note that mov(w0, w0) is not a no-op because it clears the top word of
236 // x0. A flag is provided (kDiscardForSameWReg) if a move between the same W
237 // registers is not required to clear the top word of the X register. In
238 // this case, the instruction is discarded
    [all...]
  /external/chromium_org/v8/src/compiler/ia32/
instruction-selector-ia32.cc 2 // Use of this source code is governed by a BSD-style license that can be
75 if (Int32Matcher(index).Is(0)) { // load [#base + #0]
146 if (Int32Matcher(index).Is(0)) { // store [#base], %|#value
228 if (m.right().Is(-1)) {
251 if (mright.right().Is(0x1F)) {
289 if (m.left().Is(0)) {
  /external/hamcrest/library/src/org/hamcrest/
Matchers.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:Matchers
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:Matchers
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:Matchers
    [all...]
  /external/chromium_org/v8/src/ic/arm/
ic-compiler-arm.cc 2 // Use of this source code is governed by a BSD-style license that can be
45 // check whether the name is unique.
65 map_reg.is(ElementTransitionAndStoreDescriptor::MapRegister()));
77 if (type->Is(HeapType::Number())) {

Completed in 1035 milliseconds

12 3 4 5 6 7