/external/webrtc/webrtc/system_wrappers/source/ |
D | aligned_malloc_unittest.cc | 27 rtc::scoped_ptr<char, AlignedFreeDeleter> scoped( in CorrectUsage() 29 if (scoped.get() == NULL) { in CorrectUsage() 32 const uintptr_t scoped_address = reinterpret_cast<uintptr_t> (scoped.get()); in CorrectUsage() 40 rtc::scoped_ptr<char, AlignedFreeDeleter> scoped( in TEST() 42 EXPECT_TRUE(scoped.get() != NULL); in TEST() 43 const uintptr_t aligned_address = reinterpret_cast<uintptr_t> (scoped.get()); in TEST() 48 EXPECT_EQ(scoped.get(), realigned_ptr); in TEST()
|
/external/libchrome/base/ |
D | scoped_generic.h | 178 bool operator==(const T& value, const ScopedGeneric<T, Traits>& scoped) { 179 return value == scoped.get(); 183 bool operator!=(const T& value, const ScopedGeneric<T, Traits>& scoped) { 184 return value != scoped.get();
|
/external/libcxx/test/libcxx/thread/thread.mutex/ |
D | thread_safety_lock_guard.pass.cpp | 29 static void scoped() { in scoped() function 37 scoped(); in main()
|
/external/perfetto/docs/concepts/ |
D | clock-sync.md | 63 * A custom sequence-scoped clock, with 64 <= ID < 128 64 * A custom globally-scoped clock, with 128 <= ID < 2**32 73 #### Sequence-scoped clocks 74 Sequence-scoped clocks are application-defined clock domains that are valid only 82 The main advantage of sequence-scoped clocks is that avoids the ID 85 In order to make use of a custom sequence-scoped clock domain a data source 106 #### Globally-scoped clocks 107 Globally-scoped clock domains work similarly to sequence-scoped clock domains, 140 domains, either sequence-scoped or globally-scoped.
|
/external/skqp/tools/bookmaker/ |
D | bookmaker.cpp | 366 string scoped = topName + "::" + entry.first; in copyToParent() local 367 SkASSERT(parent->fRefMap.end() == parent->fRefMap.find(scoped)); in copyToParent() 368 parent->fRefMap[scoped] = entry.second; in copyToParent() 371 SkASSERT(parent->fLinkMap.end() == parent->fLinkMap.find(scoped)); in copyToParent() 372 parent->fLinkMap[scoped] = scopedLinkIter->second; in copyToParent()
|
/external/autotest/client/site_tests/network_Ipv6SimpleNegotiation/ |
D | control | 10 globally scoped address and obtain IPv6 DNS server addresses through 20 Tests that we can acquire an IPv6 globally scoped address and IPv6 DNS
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/ |
D | rx-scheduler.hpp | 433 bool scoped; member in rxcpp::schedulers::schedulable 509 if (scoped) { in ~schedulable() 514 : scoped(false) in schedulable() 523 , scoped(false) in schedulable() 531 , scoped(true) in schedulable() 540 , scoped(scbl.scoped) in schedulable() 541 , action_scope(scbl.scoped ? controller.lock().add(lifetime) : weak_subscription()) in schedulable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScopedNoAliasAA/ |
D | basic.ll | 1 ; RUN: opt < %s -basicaa -scoped-noalias -aa-eval -evaluate-aa-metadata -print-all-alias-modref-inf… 2 ; RUN: opt < %s -aa-pipeline=basic-aa,scoped-noalias-aa -passes=aa-eval -evaluate-aa-metadata -prin…
|
/external/llvm/test/Analysis/ScopedNoAliasAA/ |
D | basic.ll | 1 ; RUN: opt < %s -basicaa -scoped-noalias -aa-eval -evaluate-aa-metadata -print-all-alias-modref-inf… 2 ; RUN: opt < %s -aa-pipeline=basic-aa,scoped-noalias-aa -passes=aa-eval -evaluate-aa-metadata -prin…
|
/external/catch2/include/internal/ |
D | catch_xmlwriter.cpp | 209 ScopedElement scoped( this ); in scopedElement() local 211 return scoped; in scopedElement()
|
/external/guice/core/src/com/google/inject/internal/ |
D | Scoping.java | 298 Provider<T> scoped = 300 return new InternalFactoryToProviderAdapter<T>(scoped, source);
|
/external/llvm/test/CodeGen/PowerPC/ |
D | mcm-10.ll | 4 ; for loading and storing a static variable scoped to a function.
|
D | mcm-2.ll | 5 ; for loading and storing a static variable scoped to a function.
|
D | mcm-obj-2.ll | 20 ; accessing function-scoped variable si.
|
/external/autotest/client/site_tests/network_DhcpBrokenDefaultGateway/ |
D | control | 15 mitigates this issue by creating a link-scoped route to the gateway,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | mcm-10.ll | 4 ; for loading and storing a static variable scoped to a function.
|
D | mcm-2.ll | 5 ; for loading and storing a static variable scoped to a function.
|
/external/antlr/tool/src/main/resources/org/antlr/tool/templates/messages/languages/ |
D | en.stg | 128 "cannot access rule <arg>'s dynamically-scoped attribute: <arg2>" 138 "label <arg> conflicts with rule <arg2>'s dynamically-scoped attribute with same name" 142 "rule <arg2>'s dynamically-scoped attribute <arg> conflicts with the rule name" 144 …"rule <arg2>'s dynamically-scoped attribute <arg> conflicts with<arg2>'s return value or parameter… 181 "unknown dynamically-scoped attribute for scope <arg>: <arg2>"
|
/external/python/pybind11/docs/advanced/pycpp/ |
D | utilities.rst | 41 // Add a scoped redirect for your noisy code 51 when the scoped guard is destroyed. This allows the output to be redirected in
|
/external/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/ |
D | aa-metadata.ll | 1 ; RUN: opt -mtriple=amdgcn-amd-amdhsa -basicaa -scoped-noalias -load-store-vectorizer -S -o - %s | …
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/ |
D | aa-metadata.ll | 1 ; RUN: opt -mtriple=amdgcn-amd-amdhsa -basicaa -scoped-noalias -load-store-vectorizer -S -o - %s | …
|
/external/clang/test/SemaObjC/ |
D | foreach.m | 12 /* This should be ok, 'thisKey' should be scoped to the loop in question,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/NewGVN/ |
D | noalias.ll | 1 ; RUN: opt -scoped-noalias -basicaa -newgvn -S < %s | FileCheck %s
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GVN/ |
D | noalias.ll | 1 ; RUN: opt -scoped-noalias -basicaa -gvn -S < %s | FileCheck %s
|
/external/llvm/test/Transforms/GVN/ |
D | noalias.ll | 1 ; RUN: opt -scoped-noalias -basicaa -gvn -S < %s | FileCheck %s
|