HomeSort by relevance Sort by last modified time
    Searched refs:Is (Results 1 - 25 of 469) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
char-predicates.h 2 // Use of this source code is governed by a BSD-style license that can be
42 static inline bool Is(uc32 c) {
44 return unibrow::ID_Start::Is(c);
56 static inline bool Is(uc32 c) {
58 return unibrow::ID_Start::Is(c) || unibrow::ID_Continue::Is(c);
66 // so it is also included.
70 static inline bool Is(uc32 c) { return unibrow::WhiteSpace::Is(c); }
77 static inline bool Is(uc32 c)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/util/
tuple.hpp 4 // Permission is hereby granted, free of charge, to any person obtaining a
9 // Software is furnished to do so, subject to the following conditions:
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33 template<int... Is>
39 template<int N, int... Is>
41 typedef typename enumerate<N-1, N-1, Is...>::type
45 template<int... Is>
46 struct enumerate<0, Is...> {
47 typedef integral_sequence<Is...> type
    [all...]
adaptor.hpp 4 // Permission is hereby granted, free of charge, to any person obtaining a
9 // Software is furnished to do so, subject to the following conditions:
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
36 /// value of the source iterators \a Is on dereference by use of
42 template<typename F, typename... Is>
47 F(typename std::iterator_traits<Is>::reference...)
56 iterator_adaptor(F f, std::tuple<Is...> &&its) :
164 std::tuple<Is...> its;
167 template<typename F, typename... Is>
    [all...]
  /external/skia/src/core/
SkRecordOpts.cpp 4 * Use of this source code is governed by a BSD-style license that can be
40 typedef Pattern<Is<SetMatrix>,
41 Greedy<Is<NoOp>>,
42 Is<SetMatrix> >
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>
    [all...]
  /external/v8/src/compiler/
operation-typer.cc 2 // Use of this source code is governed by a BSD-style license that can be
86 // minima (or negative infinity if there is no such entry).
100 // maxima (or infinity if there is no such entry).
116 if (!type->Is(cache_.kInteger)) {
134 // Any -0 is converted to 0.
149 // Any -0 is converted to 0.
173 // On the other hand, if none of the "results" above is nan, then the
200 // On the other hand, if none of the "results" above is nan, then the actual
229 // "results" above is nan, the actual result may still be, so we have to do a
245 if (type->Is(Type::Number())) return type
    [all...]
typed-optimization.cc 2 // Use of this source code is governed by a BSD-style license that can be
33 // Check if the output type is a singleton. In that case we already know the
52 } else if (upper->Is(Type::MinusZero())) {
56 } else if (upper->Is(Type::NaN())) {
60 } else if (upper->Is(Type::Null())) {
64 } else if (upper->Is(Type::PlainNumber()) &&
69 } else if (upper->Is(Type::Undefined())) {
128 // The CheckMaps(o, ...map...) can be eliminated if map is stable,
156 if (input_type->Is(Type::String())) {
169 // We can replace LoadField[Map](o) with map if is stable, an
    [all...]
  /external/v8/src/crankshaft/
hydrogen-types.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 if (AstType::Any()->Is(type)) return HType::Any();
19 if (type->Is(AstType::SignedSmall())) return HType::Smi();
20 if (type->Is(AstType::Number())) return HType::TaggedNumber();
21 if (type->Is(AstType::Null())) return HType::Null();
22 if (type->Is(AstType::String())) return HType::String();
23 if (type->Is(AstType::Boolean())) return HType::Boolean();
24 if (type->Is(AstType::Undefined())) return HType::Undefined();
25 if (type->Is(AstType::Object())) return HType::JSObject();
26 if (type->Is(AstType::DetectableReceiver())) return HType::JSReceiver()
    [all...]
  /art/compiler/utils/arm64/
managed_register_arm64_test.cc 11 * distributed under the License is distributed on an "AS IS" BASIS,
594 EXPECT_TRUE(vixl::aarch64::x0.Is(Arm64Assembler::reg_x(X0)));
595 EXPECT_TRUE(vixl::aarch64::x1.Is(Arm64Assembler::reg_x(X1)));
596 EXPECT_TRUE(vixl::aarch64::x2.Is(Arm64Assembler::reg_x(X2)));
597 EXPECT_TRUE(vixl::aarch64::x3.Is(Arm64Assembler::reg_x(X3)));
598 EXPECT_TRUE(vixl::aarch64::x4.Is(Arm64Assembler::reg_x(X4)));
599 EXPECT_TRUE(vixl::aarch64::x5.Is(Arm64Assembler::reg_x(X5)));
600 EXPECT_TRUE(vixl::aarch64::x6.Is(Arm64Assembler::reg_x(X6)));
601 EXPECT_TRUE(vixl::aarch64::x7.Is(Arm64Assembler::reg_x(X7)))
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
enumeration.h 24 template <typename Is, typename... Ts>
29 // enumeration is instantiated this way the compiler is able to deduce either I
31 template <std::size_t... Is, typename... Ts>
32 struct ElementIndexer<IndexSequence<Is...>, Ts...> : IndexedElement<Is, Ts>... {
56 // this implementation is provided here for symmetry.
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
IsTest.java 7 import static org.hamcrest.core.Is.is;
8 import static org.hamcrest.core.Is.isA;
15 Matcher<String> matcher = is("something");
23 final Matcher<Boolean> matcher = is(equalTo(true));
31 assertDescription("is <true>", is(equalTo(true)));
32 assertDescription("is \"A\"", is("A"));
37 final Matcher<String> matcher = is("A")
    [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
27 bool IsRegister; // True if location is a register.
32 // The target register number for an abstract frame pointer. The value is
51 /// \return true iff this is a register-indirect location.
56 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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 = false; // True if location is a register.
30 // The target register number for an abstract frame pointer. The value is
47 /// \return true iff this is a register-indirect location.
52 void setIsRegister(bool Is) { IsRegister = Is; }
  /external/protobuf/src/google/protobuf/
any_test.cc 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
76 EXPECT_TRUE(any.Is<protobuf_unittest::TestAny>());
77 EXPECT_FALSE(any.Is<google::protobuf::Any>());
82 EXPECT_FALSE(message.any_value().Is<protobuf_unittest::TestAny>());
83 EXPECT_TRUE(message.any_value().Is<google::protobuf::Any>());
  /prebuilts/go/darwin-x86/src/unicode/
graphic_test.go 2 // Use of this source code is governed by a BSD-style
12 // Independently check that the special "Is" functions work
34 want := Is(Letter, i)
44 want := Is(Upper, i)
54 want := Is(Lower, i)
64 want := Is(Number, i)
97 want := Is(Punct, i)
107 want := Is(White_Space, i)
117 want := Is(Symbol, i)
  /prebuilts/go/linux-x86/src/unicode/
graphic_test.go 2 // Use of this source code is governed by a BSD-style
12 // Independently check that the special "Is" functions work
34 want := Is(Letter, i)
44 want := Is(Upper, i)
54 want := Is(Lower, i)
64 want := Is(Number, i)
97 want := Is(Punct, i)
107 want := Is(White_Space, i)
117 want := Is(Symbol, i)
  /external/vixl/src/aarch32/
assembler-aarch32.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
68 VIXL_ASSERT(IsUsingA32() || condition.Is(al));
70 VIXL_ASSERT(condition.Is(first_condition_));
73 // For A32, AdavanceIT() is not called by the assembler. We must call it
1149 if (align.Is(k64BitAlign) || align.Is(kNoAlignment)) {
1151 } else if (align.Is(k128BitAlign)) {
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
Is.java 15 * vs. assertThat(cheese, is(equalTo(smelly)))
17 public class Is<T> extends BaseMatcher<T> {
20 public Is(Matcher<T> matcher) {
31 description.appendText("is ").appendDescriptionOf(matcher);
43 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
48 public static <T> Matcher<T> is(Matcher<T> matcher) { method in class:Is
49 return new Is<T>(matcher);
53 * A shortcut to the frequently used <code>is(equalTo(x))</code>.
55 * <pre>assertThat(cheese, is(smelly))</pre>
57 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre
60 public static <T> Matcher<T> is(T value) { method in class:Is
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclTuple.h 1 // This file is part of Eigen, a lightweight C++ template library
9 // This Source Code Form is subject to the terms of the Mozilla
26 /// \brief The StaticIf struct is used to statically choose the type based on the
29 /// \brief specialisation of the \ref StaticIf when the condition is true
36 /// \brief is a fixed-size collection of heterogeneous values
38 /// Empty list is supported.
54 /// \brief ElemTypeHolder class is used to specify the types of the
62 /// elements inside the tuple is 1
69 /// elements inside the tuple is bigger than 1. It recursively calls itself to
73 /// \tparam K is the Kth element in the tupl
    [all...]

Completed in 1400 milliseconds

1 2 3 4 5 6 7 8 91011>>