/external/clang/lib/StaticAnalyzer/Frontend/ |
D | ModelInjector.cpp | 79 CompilerInstance Instance(CI.getPCHContainerOperations()); in onBodySynthesis() local 80 Instance.setInvocation(&*Invocation); in onBodySynthesis() 81 Instance.createDiagnostics( in onBodySynthesis() 85 Instance.getDiagnostics().setSourceManager(&SM); in onBodySynthesis() 87 Instance.setVirtualFileSystem(&CI.getVirtualFileSystem()); in onBodySynthesis() 91 Instance.setFileManager(&CI.getFileManager()); in onBodySynthesis() 92 Instance.setSourceManager(&SM); in onBodySynthesis() 93 Instance.setPreprocessor(&CI.getPreprocessor()); in onBodySynthesis() 94 Instance.setASTContext(&CI.getASTContext()); in onBodySynthesis() 96 Instance.getPreprocessor().InitializeForModelFile(); in onBodySynthesis() [all …]
|
/external/webrtc/webrtc/base/ |
D | profiler_unittest.cc | 32 ASSERT_TRUE(Profiler::Instance()->Clear()); in TEST() 36 const ProfilerEvent* event = Profiler::Instance()->GetEvent(function_name); in TEST() 58 ASSERT_TRUE(Profiler::Instance()->Clear()); in TEST() 61 event1 = Profiler::Instance()->GetEvent(kEvent1Name); in TEST() 74 event2 = Profiler::Instance()->GetEvent(kEvent2Name); in TEST() 104 ASSERT_TRUE(Profiler::Instance()->Clear()); in TEST() 106 EXPECT_FALSE(Profiler::Instance()->Clear()); in TEST() 107 EXPECT_TRUE(Profiler::Instance()->GetEvent("event") != NULL); in TEST() 109 EXPECT_TRUE(Profiler::Instance()->Clear()); in TEST() 110 EXPECT_EQ(NULL, Profiler::Instance()->GetEvent("event")); in TEST()
|
D | profiler.h | 59 rtc::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev) 64 rtc::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix) 67 #define PROFILE_START(msg) rtc::Profiler::Instance()->StartEvent(msg) 68 #define PROFILE_STOP(msg) rtc::Profiler::Instance()->StopEvent(msg) 129 static Profiler* Instance(); 146 Profiler::Instance()->StartEvent(event_name_); in ProfilerScope() 149 Profiler::Instance()->StopEvent(event_name_); in ~ProfilerScope()
|
D | thread.cc | 38 ThreadManager* ThreadManager::Instance() { in Instance() function in rtc::ThreadManager 45 return ThreadManager::Instance()->CurrentThread(); in Current() 200 ThreadManager::Instance(); in Start() 228 return WrapCurrentWithThreadManager(ThreadManager::Instance(), true); in WrapCurrent() 233 ThreadManager::Instance()->SetCurrentThread(NULL); in UnwrapCurrent() 246 WrapCurrentWithThreadManager(ThreadManager::Instance(), false); in SafeWrapCurrent() 288 ThreadManager::Instance()->SetCurrentThread(init->thread); in PreRun() 515 if (!ThreadManager::Instance()->CurrentThread()) { in AutoThread() 516 ThreadManager::Instance()->SetCurrentThread(this); in AutoThread() 522 if (ThreadManager::Instance()->CurrentThread() == this) { in ~AutoThread() [all …]
|
/external/libbrillo/brillo/dbus/ |
D | dbus_object.h | 141 template<typename Instance, typename Class, typename R, typename... Args> 143 Instance instance, in AddSimpleMethodHandler() 150 template<typename Instance, typename Class, typename R, typename... Args> 152 Instance instance, in AddSimpleMethodHandler() 179 template<typename Instance, typename Class, typename... Args> 182 Instance instance, in AddSimpleMethodHandlerWithError() 189 template<typename Instance, typename Class, typename... Args> 192 Instance instance, in AddSimpleMethodHandlerWithError() 223 template<typename Instance, typename Class, typename... Args> 226 Instance instance, in AddSimpleMethodHandlerWithErrorAndMessage() [all …]
|
/external/eigen/bench/btl/generic_bench/ |
D | btl.hh | 183 Instance.m_selectedActionNames = config[i+1].split(":"); in BtlConfig() 194 Instance.tries = atoi(config[i+1].c_str()); in BtlConfig() 200 Instance.overwriteResults = true; in BtlConfig() 204 Instance.checkResults = false; in BtlConfig() 208 Instance.realclock = true; in BtlConfig() 218 if (Instance.m_selectedActionNames.empty()) in skipAction() 222 for (unsigned int i=0; i<Instance.m_selectedActionNames.size(); ++i) in skipAction() 223 if (name.contains(Instance.m_selectedActionNames[i])) in skipAction() 229 static BtlConfig Instance; member in BtlConfig 240 BtlConfig BtlConfig::Instance
|
/external/compiler-rt/lib/scudo/ |
D | scudo_allocator.cpp | 524 static Allocator Instance(LINKER_INITIALIZED); 527 return Instance.BackendAllocator; in getAllocator() 531 Instance.init(Options); in initAllocator() 535 Instance.drainQuarantine(); in drainQuarantine() 539 return Instance.allocate(Size, Allocator::MinAlignment, Type); in scudoMalloc() 543 Instance.deallocate(Ptr, 0, Type); in scudoFree() 547 Instance.deallocate(Ptr, Size, Type); in scudoSizedFree() 552 return Instance.allocate(Size, Allocator::MinAlignment, FromMalloc); in scudoRealloc() 554 Instance.deallocate(Ptr, 0, FromMalloc); in scudoRealloc() 557 return Instance.reallocate(Ptr, Size); in scudoRealloc() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCLabel.h | 26 unsigned Instance; variable 31 : Instance(instance) {} in MCLabel() 37 unsigned getInstance() const { return Instance; } in getInstance() 41 unsigned incInstance() { return ++Instance; } in incInstance()
|
/external/llvm/include/llvm/MC/ |
D | MCLabel.h | 28 unsigned Instance; variable 32 MCLabel(unsigned instance) : Instance(instance) {} in MCLabel() 39 unsigned getInstance() const { return Instance; } in getInstance() 42 unsigned incInstance() { return ++Instance; } in incInstance()
|
/external/clang/examples/PrintFunctionNames/ |
D | PrintFunctionNames.cpp | 27 CompilerInstance &Instance; member in __anon5dbcda810111::PrintFunctionsConsumer 31 PrintFunctionsConsumer(CompilerInstance &Instance, in PrintFunctionsConsumer() argument 33 : Instance(Instance), ParsedTemplates(ParsedTemplates) {} in PrintFunctionsConsumer() 46 if (!Instance.getLangOpts().DelayedTemplateParsing) in HandleTranslationUnit() 70 clang::Sema &sema = Instance.getSema(); in HandleTranslationUnit()
|
/external/skia/src/gpu/instanced/ |
D | GLInstancedRendering.cpp | 114 rp->createBuffer(sizeof(Instance) * numGLInstances, kVertex_GrBufferType, in onBeginFlush() 134 Instance* glMappedInstances = static_cast<Instance*>(fInstanceBuffer->map()); in onBeginFlush() 271 Instance* offsetInBuffer = (Instance*) nullptr + baseInstance; in flushInstanceAttribs() 278 sizeof(Instance), &offsetInBuffer->fInfo)); in flushInstanceAttribs() 285 sizeof(Instance), &offsetInBuffer->fShapeMatrix2x3[0])); in flushInstanceAttribs() 287 sizeof(Instance), &offsetInBuffer->fShapeMatrix2x3[3])); in flushInstanceAttribs() 294 sizeof(Instance), &offsetInBuffer->fColor)); in flushInstanceAttribs() 300 sizeof(Instance), &offsetInBuffer->fLocalRect)); in flushInstanceAttribs()
|
/external/clang/test/Analysis/ |
D | objc_invalidation.m | 176 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated}} 177 // expected-warning@-3 {{Instance variable MultipleProtocols needs to be invalidated}} 178 // expected-warning@-4 {{Instance variable MultInheritance needs to be invalidated}} 180 // expected-warning@-6 {{Instance variable _Ivar3 needs to be invalidated}} 181 // expected-warning@-7 {{Instance variable _Ivar4 needs to be invalidated}} 182 // expected-warning@-8 {{Instance variable Ivar5 needs to be invalidated or set to nil}} 183 // expected-warning@-9 {{Instance variable Ivar13 needs to be invalidated or set to nil}} 263 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated; no invalidation method is… 273 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated; no invalidation method is… 284 // expected-warning@-2 {{Instance variable _foo1 needs to be invalidated; no invalidation method is… [all …]
|
D | unused-ivars.m | 19 int x; // expected-warning {{Instance variable 'x' in class 'TestA' is never used}} 100 // diagnostic: "Instance variable '' in class..." 105 …unsigned bitfield:1; // expected-warning {{Instance variable 'bitfield' in class 'RDar8481311' is …
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawTestCaseUtil.hpp | 68 template<typename Instance> 72 …xt& testCtx, const std::string& name, const std::string& desc, typename Instance::TestSpec testSpe… in InstanceFactory() 80 return new Instance(context, m_testSpec); in createInstance() 93 const typename Instance::TestSpec m_testSpec;
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/ |
D | PropertyInfoExtensionsTest.cs | 56 … .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetGetMethod_Success() 69 … .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetGetMethod_NoAccessibleGetter() 80 … .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetSetMethod_Success() 93 … .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetSetMethod_NoAccessibleGetter()
|
/external/clang/test/Sema/ |
D | overloaded-func-transparent-union.c | 13 } Instance __attribute__((transparent_union)); typedef 15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) { in Class_Init() 20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) { in Class_Init()
|
/external/clang/test/SemaCXX/ |
D | vtable-instantiation.cpp | 36 static Target<T> Instance; member 40 Target<T> Provider<T>::Instance; // expected-note{{in instantiation of}} member in PR9325::Provider<T> 44 Target<int*>* traits = &Provider<int*>::Instance; // expected-note{{requested here}} in f()
|
/external/clang/test/CodeCompletion/ |
D | documentation.m | 8 /// Instance! 20 // CHECK-CC1: instanceProp : [#id#]instanceProp : Instance! 21 // CHECK-CC1: setInstanceProp: : [#void#]setInstanceProp:<#(id)#> : Instance!
|
/external/clang/include/clang/Frontend/ |
D | FrontendAction.h | 39 CompilerInstance *Instance; variable 115 assert(Instance && "Compiler instance not registered!"); in getCompilerInstance() 116 return *Instance; in getCompilerInstance() 119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; } in setCompilerInstance()
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiateDecl.cpp | 4384 ClassTemplateDecl *Instance) { in isInstantiationOf() argument 4388 Instance = Instance->getCanonicalDecl(); in isInstantiationOf() 4389 if (Pattern == Instance) return true; in isInstantiationOf() 4390 Instance = Instance->getInstantiatedFromMemberTemplate(); in isInstantiationOf() 4391 } while (Instance); in isInstantiationOf() 4397 FunctionTemplateDecl *Instance) { in isInstantiationOf() argument 4401 Instance = Instance->getCanonicalDecl(); in isInstantiationOf() 4402 if (Pattern == Instance) return true; in isInstantiationOf() 4403 Instance = Instance->getInstantiatedFromMemberTemplate(); in isInstantiationOf() 4404 } while (Instance); in isInstantiationOf() [all …]
|
/external/libcxx/utils/google-benchmark/src/ |
D | benchmark_api_internal.h | 16 struct Benchmark::Instance { struct 34 std::vector<Benchmark::Instance>* benchmarks, argument
|
/external/google-benchmark/src/ |
D | benchmark_api_internal.h | 16 struct Benchmark::Instance { struct 34 std::vector<Benchmark::Instance>* benchmarks, argument
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RPCUtils.h | 254 MemberFnWrapper(ClassT &Instance, MethodT Method) in MemberFnWrapper() argument 255 : Instance(Instance), Method(Method) {} in MemberFnWrapper() 256 RetT operator()(ArgTs &... Args) { return (Instance.*Method)(Args...); } in operator() 259 ClassT &Instance; 495 static Error handle(ChannelT &C, ClassT &Instance, in handle() argument 498 C, MemberFnWrapper<ClassT, RetT, ArgTs...>(Instance, HandlerMethod)); in handle() 518 static Error expect(ChannelT &C, ClassT &Instance, in expect() argument 521 C, MemberFnWrapper<ClassT, ArgTs...>(Instance, HandlerMethod)); in expect()
|
/external/llvm/lib/MC/ |
D | MCContext.cpp | 237 unsigned Instance) { in getOrCreateDirectionalLocalSymbol() argument 238 MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)]; in getOrCreateDirectionalLocalSymbol() 245 unsigned Instance = NextInstance(LocalLabelVal); in createDirectionalLocalSymbol() local 246 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance); in createDirectionalLocalSymbol() 251 unsigned Instance = GetInstance(LocalLabelVal); in getDirectionalLocalSymbol() local 253 ++Instance; in getDirectionalLocalSymbol() 254 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance); in getDirectionalLocalSymbol()
|
/external/eigen/bench/btl/generic_bench/timers/ |
D | portable_perf_analyzer.hh | 56 for (int i=1; i<BtlConfig::Instance.tries; ++i) in eval_mflops() 67 if (BtlConfig::Instance.checkResults && size<128) in eval_mflops()
|