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

1 2

  /external/v8/src/
char-predicates.cc 2 // Use of this source code is governed by a BSD-style license that can be
6 #error Internationalization is expected to be enabled.
19 bool IdentifierStart::Is(uc32 c) {
28 bool IdentifierPart::Is(uc32 c) {
38 bool WhiteSpace::Is(uc32 c) {
char-predicates.h 2 // Use of this source code is governed by a BSD-style license that can be
36 static bool Is(uc32 c);
40 static inline bool Is(uc32 c) {
41 return (c <= 0xFFFF) ? unibrow::ID_Start::Is(c) : false;
53 static bool Is(uc32 c);
56 static inline bool Is(uc32 c) {
59 return unibrow::ID_Start::Is(c) || unibrow::ID_Continue::Is(c);
71 static bool Is(uc32 c);
74 static inline bool Is(uc32 c) { return unibrow::WhiteSpace::Is(c);
    [all...]
dateparser.h 2 // Use of this source code is governed by a BSD-style license that can be
27 // If parsing fails, return false (content of output array is not defined).
69 // is longer.
106 bool Is(uint32_t c) const { return ch_ == c; }
255 // and 'len' is the word length.
351 // If set, ensures that data is always parsed in year-month-date order.
356 // to continue with in the legacy date string parser. If parsing is
unicode.cc 2 // Use of this source code is governed by a BSD-style license that can be
55 * about a character is around 10, slightly higher if there is no
67 // next one is not also less than this one, we've arrived.
96 // which is of the specified length and uses the specified special case
97 // mapping for multi-char mappings. The next parameter is the character
100 // if the allow_caching_ptr is non-null then false will be stored in
103 // If ranges are linear, a match between a start and end point is
105 // the result is the same as for the start point on the entire range.
123 // is not also less than this one, we've arrived
    [all...]
  /external/v8/src/objects/
ordered-hash-table-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
37 inline bool OrderedHashSet::Is(Handle<HeapObject> table) {
41 inline bool OrderedHashMap::Is(Handle<HeapObject> table) {
45 inline bool SmallOrderedHashSet::Is(Handle<HeapObject> table) {
49 inline bool SmallOrderedHashMap::Is(Handle<HeapObject> table) {
  /external/golang-protobuf/ptypes/
any.go 20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
50 // Note that regular type assertions should be done using the Is
51 // function. AnyMessageName is provided for less common use cases like filtering a
55 return "", fmt.Errorf("message is nil")
59 return "", fmt.Errorf("message type url %q is invalid", any.TypeUrl)
73 // DynamicAny is a value that can be passed to UnmarshalAny to automatically
75 // message. The allocated message is stored in the embedded proto.Message.
131 // Is returns true if any value contains a given message type.
132 func Is(any *any.Any, pb proto.Message) bool
    [all...]
  /external/protobuf/src/google/protobuf/
any.h 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
71 // A type is consdiered matching if its full name matches the full name after
74 bool Is() const {
97 // See if message is of type google.protobuf.Any, if so, return the descriptors
any.pb.h 12 #error This file was generated by a newer version of protoc which is
17 #error This file was generated by an older version of protoc which is
66 template<typename T> bool Is() const {
67 return _any_metadata_.Is<T>();
  /external/syzkaller/vendor/github.com/golang/protobuf/ptypes/
any.go 20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
50 // Note that regular type assertions should be done using the Is
51 // function. AnyMessageName is provided for less common use cases like filtering a
55 return "", fmt.Errorf("message is nil")
59 return "", fmt.Errorf("message type url %q is invalid", any.TypeUrl)
73 // DynamicAny is a value that can be passed to UnmarshalAny to automatically
75 // message. The allocated message is stored in the embedded proto.Message.
131 // Is returns true if any value contains a given message type.
132 func Is(any *any.Any, pb proto.Message) bool
    [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/deqp/framework/common/
tcuEither.hpp 16 * distributed under the License is distributed on an "AS IS" BASIS,
23 * \brief Template class that is either type of First or Second.
63 bool is (void) const;
114 struct Is;
117 struct Is<First, First, Second>
119 static bool is (const Either<First, Second>& either) function in struct:tcu::EitherDetail::Is
126 struct Is<Second, First, Second>
128 static bool is (const Either<First, Second>& either) function in struct:tcu::EitherDetail::Is
135 bool is (const Either<First, Second>& either function in namespace:tcu::EitherDetail
259 bool Either<First, Second>::is (void) const function in class:tcu::Either
    [all...]
  /external/skia/src/core/
SkRecordPattern.h 4 * Use of this source code is governed by a BSD-style license that can be
21 class Is {
23 Is() : fPtr(nullptr) {}
70 // Abstracts away whether the paint is always part of the command or optional.
97 // Greedy is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
106 // This is the main entry point to pattern matching, and so provides a couple of extra API bits:
129 // If there is no such span, return false. If there is, return true and set [*begin, *end).
158 // If first is a Greedy, walk i until it doesn't match.
  /external/skqp/src/core/
SkRecordPattern.h 4 * Use of this source code is governed by a BSD-style license that can be
21 class Is {
23 Is() : fPtr(nullptr) {}
70 // Abstracts away whether the paint is always part of the command or optional.
97 // Greedy is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
106 // This is the main entry point to pattern matching, and so provides a couple of extra API bits:
129 // If there is no such span, return false. If there is, return true and set [*begin, *end).
158 // If first is a Greedy, walk i until it doesn't match.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAGHVX.cpp 5 // This file is distributed under the University of Illinois Open Source
42 // Forward delta network consists of log(N) steps, where N is the number
50 // positions as long as there is no conflict.
91 // Reverse delta network is same as delta network, with the steps in
95 // Benes network is a forward delta network immediately followed by
180 // This will create an entry in the edge table, even if I is not
181 // connected to any other node. This is necessary, because it still
183 NodeSet &Is = Edges[I];
185 Is.insert(C);
429 // Cannot use coloring here, because coloring is used to determin
    [all...]
  /external/protobuf/python/google/protobuf/internal/
well_known_types.py 19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
80 if not self.Is(descriptor):
87 # Only last part is to be used: b/25630112
90 def Is(self, descriptor):
102 A string converted from timestamp. The string is always Z-normalized
354 # Force nanos to be negative if the duration is negative.
364 # For some languanges, the sign of the remainder is implementation
365 # dependent if any of the operands is negative. Here we enforce
391 """Checks whether the FieldMask is valid for Message Descriptor.""
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVType.h 5 // This file is distributed under the University of Illinois Open Source
10 // Permission is hereby granted, free of charge, to any person obtaining a
15 // Software is furnished to do so, subject to the following conditions:
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
39 /// SPIR-V type with op code name OpTypeInt is named as SPIRVTypeInt. This is
160 bool IsSigned; // Whether it is signed
735 bool Is = Ty->getOpCode() == T2::OC;
736 if (!Is)
    [all...]
  /external/v8/src/compiler/
types.h 2 // Use of this source code is governed by a BSD-style license that can be
22 // A simple type system for compiler-internal use. It is based entirely on
50 // itself is also included in the range. A range never contains NaN or -0.
52 // If a value v happens to be an integer n, then Constant(v) is considered a
54 // In order to avoid large unions, however, it is usually a good idea to use
62 // T1.Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
65 // Typically, the former is to be used to select representations (e.g., via
66 // T.Is(SignedSmall())), and the latter to check whether a specific case needs
69 // There is no functionality to discover whether a type is a leaf in th
    [all...]
node-matchers.h 2 // Use of this source code is governed by a BSD-style license that can be
41 bool Is##Opcode() const { return opcode() == IrOpcode::k##Opcode; }
118 bool Is(const T& value) const {
156 bool Is(const T& value) const {
163 return this->Is(0.0) && std::signbit(this->Value());
167 bool IsZero() const { return this->Is(0.0) && !std::signbit(this->Value()); }
194 bool Is(Handle<HeapObject> const& value) const {
209 bool Is(const ExternalReference& value) const {
654 // base is already part of the match, then the (1 << N + 1) scale factor
686 // If the stored value is this node, it is not an addressing use
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 24 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 24 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
  /external/flatbuffers/src/
idl_parser.cpp 11 * distributed under the License is distributed on an "AS IS" BASIS,
80 // Also uppercases the first character if first is true.
441 if (use_hex) start_digits = ++cursor_; // '0x' is the prefix, skip it
452 // The exponent suffix of hexadecimal float number is mandatory.
460 // Exponent is decimal integer number
485 // Check if a given token is next.
486 bool Parser::Is(int t) const { return t == token_; }
503 while (Is('.')) {
683 name + " is not part of enum " + type.enum_def->name)
    [all...]
  /external/python/cpython2/Include/
Python-ast.h 24 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
  /external/v8/src/arm64/
assembler-arm64.h 2 // Use of this source code is governed by a BSD-style license that can be
79 // Number of registers for which space is reserved in safepoints. Must be a
158 bool Is(const CPURegister& other) const {
203 bool is(const CPURegister& other) const { return Is(other); } function in class:v8::internal::CPURegister
403 // No*Reg is used to indicate an unused argument, or an error case. Note that
404 // these all compare equal (using the Is() method). The Register and VRegister
574 // the type and size of the register is inferred from this list.
674 // This is allowed to be an implicit constructor because Immediate is
    [all...]
  /external/python/cpython3/Include/
Python-ast.h 24 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
  /external/v8/tools/
grokdump.py 18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
98 if type is not None:
131 if is_executable is not False:
137 if is_ascii is not False:
161 if is_executable is not True and is_ascii is not True:
648 assert not self.arch is None
671 assert self.module_list is None
680 print >>sys.stderr, "Warning: This is not a full minidump!
    [all...]

Completed in 425 milliseconds

1 2