HomeSort by relevance Sort by last modified time
    Searched full:equivalent (Results 76 - 100 of 10360) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/std/thread/futures/futures.errors/
equivalent_error_code_int.pass.cpp 16 // virtual bool equivalent(const error_code& code, int condition) const;
24 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
25 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
equivalent_int_error_condition.pass.cpp 16 // virtual bool equivalent(int code, const error_condition& condition) const;
25 assert(e_cat.equivalent(5, e_cond));
26 assert(!e_cat.equivalent(6, e_cond));
  /frameworks/base/core/res/res/values/
colors_holo.xml 53 <!-- A light Holo shade of blue. Equivalent to #ff33b5e5. -->
55 <!-- A light Holo shade of gray. Equivalent to #33999999. -->
57 <!-- A light Holo shade of green. Equivalent to #ff99cc00. -->
59 <!-- A light Holo shade of red. Equivalent to #ffff4444. <-->
61 <!-- A dark Holo shade of blue. Equivalent to #ff0099cc -->
63 <!-- A dark Holo shade of green. Equivalent to #ff669900 -->
65 <!-- A dark Holo shade of red. Equivalent to #ffcc0000 -->
67 <!-- A Holo shade of purple. Equivalent to #ffaa66cc -->
69 <!-- A light Holo shade of orange. Equivalent to #ffffbb33. -->
71 <!-- A dark Holo shade of orange. Equivalent to ffff8800. --
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/
equivalent_error_code_int.pass.cpp 14 // virtual bool equivalent(const error_code& code, int condition) const;
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
equivalent_int_error_condition.pass.cpp 14 // virtual bool equivalent(int code, const error_condition& condition) const;
23 assert(e_cat.equivalent(5, e_cond));
24 assert(!e_cat.equivalent(6, e_cond));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.errors/
equivalent_error_code_int.pass.cpp 16 // virtual bool equivalent(const error_code& code, int condition) const;
24 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
25 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
equivalent_int_error_condition.pass.cpp 16 // virtual bool equivalent(int code, const error_condition& condition) const;
25 assert(e_cat.equivalent(5, e_cond));
26 assert(!e_cat.equivalent(6, e_cond));
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
BlockingService.java 34 * Blocking equivalent to {@link Service}.
41 * Equivalent to {@link Service#getDescriptorForType}.
46 * Equivalent to {@link Service#callMethod}, except that
56 * Equivalent to {@link Service#getRequestPrototype}.
61 * Equivalent to {@link Service#getResponsePrototype}.
  /external/python/cpython3/Include/
abstract.h 152 This is equivalent to the Python expression:
165 This is the equivalent of the Python expression: o.attr_name.
174 This is equivalent to the Python expression:
187 This is the equivalent of the Python expression: o.attr_name.
198 success. This is the equivalent of the Python statement o.attr_name=v.
208 success. This is the equivalent of the Python statement o.attr_name=v.
217 -1 on failure. This is the equivalent of the Python
228 on failure. This is the equivalent of the Python
240 the equivalent of the Python expression: repr(o).
252 the equivalent of the Python expression: str(o).
    [all...]
  /hardware/interfaces/media/omx/1.0/
types.hal 230 BT709_5, // Rec.ITU-R BT.709-5 or equivalent
231 BT470_6M, // Rec.ITU-R BT.470-6 System M or equivalent
232 BT601_6_625, // Rec.ITU-R BT.601-6 625 or equivalent
233 BT601_6_525, // Rec.ITU-R BT.601-6 525 or equivalent
235 BT2020, // Rec.ITU-R BT.2020 or equivalent
244 SRGB, // sRGB or equivalent
245 SMPTE170M, // SMPTE 170M or equivalent (e.g. BT.601/709/2020)
263 BT709_5, // Rec.ITU-R BT.709-5 or equivalent
264 BT470_6M, // KR=0.30, KB=0.11 or equivalent
265 BT601_6, // Rec.ITU-R BT.601-6 625 or equivalent
    [all...]
  /external/clang/test/Rewriter/
objc-modern-boxing.mm 45 NSNumber *theLetterZ = @('Z'); // equivalent to [NSNumber numberWithChar:('Z')]
48 NSNumber *fortyTwo = @(42); // equivalent to [NSNumber numberWithInt:(42)]
49 NSNumber *fortyTwoUnsigned = @(42U); // equivalent to [NSNumber numberWithUnsignedInt:(42U)]
50 NSNumber *fortyTwoLong = @(42L); // equivalent to [NSNumber numberWithLong:(42L)]
51 NSNumber *fortyTwoLongLong = @(42LL); // equivalent to [NSNumber numberWithLongLong:(42LL)]
54 NSNumber *piFloat = @(3.141592654F); // equivalent to [NSNumber numberWithFloat:(3.141592654F)]
55 NSNumber *piDouble = @(3.1415926535); // equivalent to [NSNumber numberWithDouble:(3.1415926535)]
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 29 * A strategy for determining whether two instances are considered equivalent. Examples of
47 * Returns {@code true} if the given objects are considered equivalent.
49 * <p>The {@code equivalent} method implements an equivalence relation on object references:
53 * equivalent(x, x)} returns {@code true}.
55 * equivalent(x, y) == equivalent(y, x)}.
57 * {@code equivalent(x, y)} returns {@code true} and {@code equivalent(y, z)} returns {@code
58 * true}, then {@code equivalent(x, z)} returns {@code true}.
60 * of {@code equivalent(x, y)} consistently return {@code true} or consistently return {@cod
64 public final boolean equivalent(@Nullable T a, @Nullable T b) { method in class:Equivalence
    [all...]
  /external/python/cpython3/Doc/c-api/
mapping.rst 21 objects that do not provide mapping protocol, this is equivalent to the Python
28 failure. This is equivalent to the Python statement ``del o[key]``.
34 failure. This is equivalent to the Python statement ``del o[key]``.
40 otherwise. This is equivalent to the Python expression ``key in o``.
47 is equivalent to the Python expression ``key in o``. This function always
72 This is the equivalent of the Python expression ``o[key]``.
78 This is the equivalent of the Python statement ``o[key] = v``.
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UCharacterEnums.java 224 * Equivalent to {@link
236 * Equivalent to {@link
248 * Equivalent to {@link
260 * Equivalent to {@link
272 * Equivalent to {@link
284 * Equivalent to {@link
296 * Equivalent to {@link
308 * Equivalent to {@link
320 * Equivalent to {@link
332 * Equivalent to {@link java.lang.Character#DIRECTIONALITY_WHITESPACE}
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UCharacterEnums.java 260 * Equivalent to {@link
274 * Equivalent to {@link
288 * Equivalent to {@link
302 * Equivalent to {@link
316 * Equivalent to {@link
330 * Equivalent to {@link
344 * Equivalent to {@link
358 * Equivalent to {@link
372 * Equivalent to {@link
386 * Equivalent to {@link java.lang.Character#DIRECTIONALITY_WHITESPACE}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
ASTImporter.h 84 /// \brief Declaration (from, to) pairs that are known not to be equivalent
115 /// \returns the equivalent type in the "to" context, or a NULL type if
122 /// \returns the equivalent type source information in the "to"
129 /// \returns the equivalent declaration in the "to" context, or a NULL type
141 /// \returns the equivalent declaration context in the "to"
148 /// \returns the equivalent expression in the "to" context, or NULL if
155 /// \returns the equivalent statement in the "to" context, or NULL if
162 /// \returns the equivalent nested-name-specifier in the "to"
169 /// \returns the equivalent nested-name-specifier in the "to"
180 /// \returns the equivalent source location in the "to" context, or a
    [all...]

Completed in 542 milliseconds

1 2 34 5 6 7 8 91011>>