/external/clang/test/Rewriter/ |
D | objc-modern-numeric-literal.mm | 39 NSNumber *theLetterZ = @'Z'; // equivalent to [NSNumber numberWithChar:'Z'] 42 NSNumber *fortyTwo = @42; // equivalent to [NSNumber numberWithInt:42] 43 NSNumber *fortyTwoUnsigned = @42U; // equivalent to [NSNumber numberWithUnsignedInt:42U] 44 NSNumber *fortyTwoLong = @42L; // equivalent to [NSNumber numberWithLong:42L] 45 NSNumber *fortyTwoLongLong = @42LL; // equivalent to [NSNumber numberWithLongLong:42LL] 48 NSNumber *piFloat = @3.141592654F; // equivalent to [NSNumber numberWithFloat:3.141592654F] 49 NSNumber *piDouble = @3.1415926535; // equivalent to [NSNumber numberWithDouble:3.1415926535] 52 NSNumber *yesNumber = @YES; // equivalent to [NSNumber numberWithBool:YES] 53 NSNumber *noNumber = @NO; // equivalent to [NSNumber numberWithBool:NO] 55 NSNumber *trueNumber = @true; // equivalent to [NSNumber numberWithBool:(BOOL)true] [all …]
|
D | 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/chromium-trace/trace-viewer/third_party/WebOb/docs/ |
D | differences.txt | 90 No equivalent (too connected to application model for WebOb). 94 No equivalent 103 No equivalent; you could use ``req.scheme == 'https'``. 110 variables). The equivalent in WebOb is MultiDict. 131 No direct equivalent 137 No direct equivalent 159 headers. The equivalent dictionary-like object is 190 No equivalent 196 No equivalent 199 No equivalent [all …]
|
/external/llvm/test/MC/MachO/AArch64/ |
D | cstexpr-gotpcrel.ll | 3 ; GOT equivalent globals references can be replaced by the GOT entry of the 15 ; Don't replace GOT equivalent usage within instructions and emit the GOT 16 ; equivalent since it can't be replaced by the GOT entry. @bargotequiv is 27 ; Test GOT equivalent usage inside nested constant arrays. 82 ; Check that these got equivalent symbols are emitted on ARM64. Since ARM64 85 ; since they will start out as GOT equivalent candidates, but they are actually
|
/external/clang/lib/Tooling/ |
D | FileMatchTrie.cpp | 26 bool equivalent(StringRef FileA, StringRef FileB) const override { in equivalent() function 27 return FileA == FileB || llvm::sys::fs::equivalent(FileA, FileB); in equivalent() 104 if (Comparator.equivalent(StringRef(Path), FileName)) in findEquivalent() 123 if (Comparator.equivalent(AllChildren[i], FileName)) { in findEquivalent()
|
/external/llvm/test/MC/MachO/ |
D | cstexpr-gotpcrel-32.ll | 5 ; GOT equivalent globals references can be replaced by the GOT entry of the 11 ; Check that these got equivalent symbols are never emitted or used 20 ; Don't replace GOT equivalent usage within instructions and emit the GOT 21 ; equivalent since it can't be replaced by the GOT entry. @bargotequiv is 32 ; Test GOT equivalent usage inside nested constant arrays.
|
D | cstexpr-gotpcrel-64.ll | 5 ; GOT equivalent globals references can be replaced by the GOT entry of the 11 ; Check that these got equivalent symbols are never emitted. 21 ; Don't replace GOT equivalent usage within instructions and emit the GOT 22 ; equivalent since it can't be replaced by the GOT entry. @bargotequiv is 32 ; Test GOT equivalent usage inside nested constant arrays.
|
/external/llvm/test/MC/MachO/ARM/ |
D | cstexpr-gotpcrel.ll | 5 ; GOT equivalent globals references can be replaced by the GOT entry of the 11 ; Check that these got equivalent symbols are never emitted or used 20 ; Don't replace GOT equivalent usage within instructions and emit the GOT 21 ; equivalent since it can't be replaced by the GOT entry. @bargotequiv is 32 ; Test GOT equivalent usage inside nested constant arrays.
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/ |
D | equivalent_error_code_int.pass.cpp | 22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5)); in main() 23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6)); in main()
|
D | equivalent_int_error_condition.pass.cpp | 23 assert(e_cat.equivalent(5, e_cond)); in main() 24 assert(!e_cat.equivalent(6, e_cond)); in main()
|
/external/libcxx/test/std/thread/futures/futures.errors/ |
D | equivalent_error_code_int.pass.cpp | 24 assert(e_cat.equivalent(std::error_code(5, e_cat), 5)); in main() 25 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6)); in main()
|
D | equivalent_int_error_condition.pass.cpp | 25 assert(e_cat.equivalent(5, e_cond)); in main() 26 assert(!e_cat.equivalent(6, e_cond)); in main()
|
/external/sepolicy/ |
D | mls | 37 # Create/relabel operations: Subject must be equivalent to object unless 42 # Datagram send: Sender must be equivalent to the receiver unless one of them 47 # Stream connect: Client must be equivalent to server unless one of them 56 # Create/relabel operations: Subject must be equivalent to object unless 68 # Subject must be equivalent to object unless the subject is trusted. 86 # Write operations: Subject must be equivalent to the object unless the
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | EquivalenceTester.java | 109 assertTrue(item + " must be inequivalent to null", !equivalence.equivalent(item, null)); in testItems() 110 assertTrue("null must be inequivalent to " + item, !equivalence.equivalent(null, item)); in testItems() 111 assertTrue(item + " must be equivalent to itself", equivalence.equivalent(item, item)); in testItems()
|
D | RelationshipTester.java | 104 equivalence.equivalent(item, related)); in assertRelated() 118 !equivalence.equivalent(itemInfo.value, unrelatedInfo.value)); in assertUnrelated()
|
/external/clang/unittests/Basic/ |
D | VirtualFileSystemTest.cpp | 148 EXPECT_TRUE(Status->equivalent(*Status)); in TEST() 151 EXPECT_FALSE(Status->equivalent(*Status2)); in TEST() 169 EXPECT_TRUE(Status->equivalent(*Status2)); in TEST() 202 EXPECT_TRUE(Status1->equivalent(*StatusB)); in TEST() 203 EXPECT_TRUE(Status2->equivalent(*StatusM)); in TEST() 204 EXPECT_TRUE(Status3->equivalent(*StatusT)); in TEST() 206 EXPECT_FALSE(Status1->equivalent(*Status2)); in TEST() 207 EXPECT_FALSE(Status2->equivalent(*Status3)); in TEST() 208 EXPECT_FALSE(Status1->equivalent(*Status3)); in TEST() 226 EXPECT_TRUE(Status1->equivalent(*Status2)); in TEST() [all …]
|
/external/mesa3d/src/gallium/docs/source/ |
D | resources.rst | 85 - PIPE_CAP_NPOT_TEXTURES is equivalent to GL 2.0 or GL_ARB_texture_non_power_of_two 119 - PIPE_CAP_NPOT_TEXTURES is equivalent to GL 2.0 or GL_ARB_texture_non_power_of_two 125 - PIPE_CAP_NPOT_TEXTURES is equivalent to D3D_FEATURE_LEVEL_9_3 139 - PIPE_CAP_NPOT_TEXTURES is equivalent to GL 2.0 or GL_ARB_texture_non_power_of_two 143 - PIPE_CAP_NPOT_TEXTURES is equivalent to D3D_FEATURE_LEVEL_10_0 165 - PIPE_CAP_NPOT_TEXTURES is equivalent to GL 2.0 or GL_ARB_texture_non_power_of_two 171 - PIPE_CAP_NPOT_TEXTURES is equivalent to D3D_FEATURE_LEVEL_10_0
|
/external/clang/docs/ |
D | ObjectiveCLiterals.rst | 47 NSNumber *theLetterZ = @'Z'; // equivalent to [NSNumber numberWithChar:'Z'] 50 NSNumber *fortyTwo = @42; // equivalent to [NSNumber numberWithInt:42] 51 NSNumber *fortyTwoUnsigned = @42U; // equivalent to [NSNumber numberWithUnsignedInt:42U] 52 NSNumber *fortyTwoLong = @42L; // equivalent to [NSNumber numberWithLong:42L] 53 NSNumber *fortyTwoLongLong = @42LL; // equivalent to [NSNumber numberWithLongLong:42LL] 56 NSNumber *piFloat = @3.141592654F; // equivalent to [NSNumber numberWithFloat:3.141592654F] 57 … NSNumber *piDouble = @3.1415926535; // equivalent to [NSNumber numberWithDouble:3.1415926535] 60 NSNumber *yesNumber = @YES; // equivalent to [NSNumber numberWithBool:YES] 61 NSNumber *noNumber = @NO; // equivalent to [NSNumber numberWithBool:NO] 64 NSNumber *trueNumber = @true; // equivalent to [NSNumber numberWithBool:(BOOL)true] [all …]
|
/external/guava/guava/src/com/google/common/base/ |
D | Equivalence.java | 64 public final boolean equivalent(@Nullable T a, @Nullable T b) { in equivalent() method in Equivalence 205 return equivalence.equivalent(this.reference, that.reference); in equals() 269 return equivalence.equivalent(input, target); in apply()
|
/external/dnsmasq/dbus/ |
D | DBus-interface | 56 is equivalent to 65 is equivalent to 76 is equivalent to 88 is equivalent to
|
/external/llvm/tools/llvm-config/ |
D | llvm-config.cpp | 205 if (sys::fs::equivalent(CurrentExecPrefix, in main() 218 } else if (sys::fs::equivalent(CurrentExecPrefix, LLVM_OBJ_ROOT)) { in main() 222 } else if (sys::fs::equivalent(CurrentExecPrefix, in main()
|
/external/libcxx/src/ |
D | system_error.cpp | 38 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT in equivalent() function in error_category 44 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT in equivalent() function in error_category
|
/external/chromium-trace/trace-viewer/third_party/six/documentation/ |
D | index.rst | 84 This is equivalent to :data:`py3:sys.maxsize` in Python 2.6 and later 86 :data:`py2:sys.maxint` in Python 2. There is no direct equivalent to 138 Get the closure (list of cells) associated with *func*. This is equivalent 145 Get the code object associated with *func*. This is equivalent to 151 Get the defaults tuple associated with *func*. This is equivalent to 158 Get the globals of *func*. This is equivalent to ``func.__globals__`` on 288 Raise an exception from a context. On Python 3, this is equivalent to 290 exception chaining, it is equivalent to ``raise exc_value``. 333 That code produces a class equivalent to :: 400 equivalent to :func:`py2:unichr` on Python 2 and :func:`py3:chr` on Python 3. [all …]
|
/external/llvm/include/llvm/Support/ |
D | FileSystem.h | 156 friend bool equivalent(file_status A, file_status B); 399 bool equivalent(file_status A, file_status B); 411 std::error_code equivalent(const Twine &A, const Twine &B, bool &result); 415 inline bool equivalent(const Twine &A, const Twine &B) { in equivalent() function 417 return !equivalent(A, B, result) && result; in equivalent()
|
/external/llvm/lib/Target/Mips/ |
D | MSA.txt | 7 (semantically equivalent) instructions to be used in place of the requested 53 copy_u.w. This is semantically equivalent since the general-purpose 57 These two operations are equivalent to each other with the operands
|