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

1 2 3 4 5

  /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/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...]
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
  /prebuilts/tools/darwin-x86_64/protoc/include/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/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.
  /prebuilts/go/darwin-x86/src/unicode/
letter.go 2 // Use of this source code is governed by a BSD-style
38 // Range32 represents of a range of Unicode code points and is used when one or
52 // means the character is in the corresponding case. There is a special
67 // BUG(r): There is no mechanism for full case folding, that is, for
80 // If the Delta field of a CaseRange is UpperLower, it means
87 // linearMax is the maximum size table for linear search for non-Latin1 rune.
91 // is16 reports whether r is in the sorted slice of 16-bit ranges.
124 // is32 reports whether r is in the sorted slice of 32-bit ranges
    [all...]
  /prebuilts/go/linux-x86/src/unicode/
letter.go 2 // Use of this source code is governed by a BSD-style
38 // Range32 represents of a range of Unicode code points and is used when one or
52 // means the character is in the corresponding case. There is a special
67 // BUG(r): There is no mechanism for full case folding, that is, for
80 // If the Delta field of a CaseRange is UpperLower, it means
87 // linearMax is the maximum size table for linear search for non-Latin1 rune.
91 // is16 reports whether r is in the sorted slice of 16-bit ranges.
124 // is32 reports whether r is in the sorted slice of 32-bit ranges
    [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...]
  /hardware/nxp/nfc/halimpl/utils/
phNxpConfig.cpp 12 * distributed under the License is distributed on an "AS IS" BASIS,
32 * distributed under the License is distributed on an "AS IS" BASIS,
140 inline bool Is(unsigned long f) { return (state & f) == f; }
149 ** Description: determine if 'c' is printable
163 ** Description: determine if 'c' is numeral digit
367 if (Is(IsStringValue) && base == 16 && i > 0) {
743 ** config file, return -1 in case bufflen is not enough.
745 ** Returns: TRUE[1] if config param name is found in the config file, els
    [all...]
  /packages/apps/Nfc/nci/jni/extns/pn54x/src/utils/
phNxpConfig.cpp 11 * distributed under the License is distributed on an "AS IS" BASIS,
95 inline bool Is(unsigned long f) { return (state & f) == f; }
104 ** Description: determine if 'c' is printable
118 ** Description: determine if 'c' is numeral digit
325 if (Is(IsStringValue) && base == 16 && i > 0) {
726 ** return -1 in case bufflen is not enough.
728 ** Returns: TRUE[1] if config param name is found in the config file, else
  /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
21 // A simple type system for compiler-internal use. It is based entirely on
49 // itself is also included in the range. A range never contains NaN or -0.
51 // If a value v happens to be an integer n, then Constant(v) is considered a
53 // In order to avoid large unions, however, it is usually a good idea to use
61 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
64 // Typically, the former is to be used to select representations (e.g., via
65 // T->Is(SignedSmall())), and the latter to check whether a specific case needs
68 // 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
40 bool Is##Opcode() const { return opcode() == IrOpcode::k##Opcode; }
117 bool Is(const T& value) const {
155 bool Is(const T& value) const {
162 return this->Is(0.0) && std::signbit(this->Value());
166 bool IsZero() const { return this->Is(0.0) && !std::signbit(this->Value()); }
194 bool Is(Handle<HeapObject> const& value) const {
205 bool Is(const ExternalReference& value) const {
648 // base is already part of the match, then the (1 << N + 1) scale factor
  /external/v8/src/arm64/
assembler-arm64-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
107 inline bool CPURegister::Is(const CPURegister& other) const {
256 // Default initializer is for int types
357 return reg_.Is(NoReg);
525 return (addrmode_ == Offset) && regoffset_.Is(NoReg);
530 return (addrmode_ == Offset) && !regoffset_.Is(NoReg);
589 // Call sequence on ARM64 is:
601 // The call, generated by MacroAssembler::Call, is one of two possible
614 // The return address is immediately after the blr instruction in both cases,
652 // Intuitively, we would think it is necessary to always flush th
    [all...]
  /external/v8/src/ast/
ast-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,
99 // itself is also included in the range. A range never contains NaN or -0.
101 // If a value v happens to be an integer n, then Constant(v) is considered a
103 // In order to avoid large unions, however, it is usually a good idea to use
111 // T1->Is(T2) -- tests whether T1 is included in T2 (i.e., T1 <= T2)
114 // Typically, the former is to be used to select representations (e.g., vi
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
hamcrest-core-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /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,

Completed in 467 milliseconds

1 2 3 4 5