Searched refs:Instance (Results 1 - 25 of 58) sorted by relevance

123

/external/llvm/include/llvm/MC/
H A DMCLabel.h27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance; member in class:llvm::MCLabel
33 : Instance(instance) {}
39 unsigned getInstance() const { return Instance; }
43 unsigned incInstance() { return ++Instance; }
/external/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp79 CompilerInstance Instance; local
80 Instance.setInvocation(&*Invocation);
81 Instance.createDiagnostics(
85 Instance.getDiagnostics().setSourceManager(&SM);
87 Instance.setVirtualFileSystem(&CI.getVirtualFileSystem());
91 Instance.setFileManager(&CI.getFileManager());
92 Instance.setSourceManager(&SM);
93 Instance.setPreprocessor(&CI.getPreprocessor());
94 Instance.setASTContext(&CI.getASTContext());
96 Instance
[all...]
/external/clang/test/Sema/
H A Doverloaded-func-transparent-union.c13 } Instance __attribute__((transparent_union)); typedef in typeref:union:__anon2383
15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) {
20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) {
H A Dnonnull.c10 } Instance __attribute__((transparent_union)); typedef in typeref:union:__anon2380
12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) {
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cpp36 static Target<T> Instance; member in struct:PR9325::Provider
40 Target<T> Provider<T>::Instance; // expected-note{{in instantiation of}} member in class:PR9325::Provider
44 Target<int*>* traits = &Provider<int*>::Instance; // expected-note{{requested here}}
/external/skia/src/ports/
H A DSkDebug_nacl.cpp21 extern pp::Instance* gPluginInstance;
/external/eigen/bench/btl/generic_bench/
H A Dbtl.hh188 Instance.m_selectedActionNames = config[i+1].split(":");
199 Instance.tries = atoi(config[i+1].c_str());
205 Instance.overwriteResults = true;
209 Instance.checkResults = false;
213 Instance.realclock = true;
223 if (Instance.m_selectedActionNames.empty())
227 for (int i=0; i<Instance.m_selectedActionNames.size(); ++i)
228 if (name.contains(Instance.m_selectedActionNames[i]))
234 static BtlConfig Instance; member in class:BtlConfig
245 BtlConfig BtlConfig::Instance
[all...]
H A Dbench.hh98 if (!BtlConfig::Instance.overwriteResults)
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_perf_analyzer.hh56 for (int i=1; i<BtlConfig::Instance.tries; ++i)
67 if (BtlConfig::Instance.checkResults && size<128)
H A Dportable_timer.hh103 m_clkid = BtlConfig::Instance.realclock ? CLOCK_REALTIME : CLOCK_PROCESS_CPUTIME_ID;
/external/clang/include/clang/Frontend/
H A DFrontendAction.h39 CompilerInstance *Instance; member in class:clang::FrontendAction
111 /// @name Compiler Instance Access
115 assert(Instance && "Compiler instance not registered!");
116 return *Instance;
119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; }
/external/llvm/lib/MC/
H A DMCContext.cpp206 unsigned Instance) {
207 MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)];
214 unsigned Instance = NextInstance(LocalLabelVal); local
215 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
220 unsigned Instance = GetInstance(LocalLabelVal); local
222 ++Instance;
223 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
205 getOrCreateDirectionalLocalSymbol(unsigned LocalLabelVal, unsigned Instance) argument
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp4121 ClassTemplateDecl *Instance) {
4125 Instance = Instance->getCanonicalDecl();
4126 if (Pattern == Instance) return true;
4127 Instance = Instance->getInstantiatedFromMemberTemplate();
4128 } while (Instance);
4134 FunctionTemplateDecl *Instance) {
4138 Instance = Instance
4120 isInstantiationOf(ClassTemplateDecl *Pattern, ClassTemplateDecl *Instance) argument
4133 isInstantiationOf(FunctionTemplateDecl *Pattern, FunctionTemplateDecl *Instance) argument
4147 isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern, ClassTemplatePartialSpecializationDecl *Instance) argument
4162 isInstantiationOf(CXXRecordDecl *Pattern, CXXRecordDecl *Instance) argument
4175 isInstantiationOf(FunctionDecl *Pattern, FunctionDecl *Instance) argument
4188 isInstantiationOf(EnumDecl *Pattern, EnumDecl *Instance) argument
4201 isInstantiationOf(UsingShadowDecl *Pattern, UsingShadowDecl *Instance, ASTContext &C) argument
4208 isInstantiationOf(UsingDecl *Pattern, UsingDecl *Instance, ASTContext &C) argument
4214 isInstantiationOf(UnresolvedUsingValueDecl *Pattern, UsingDecl *Instance, ASTContext &C) argument
4220 isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern, UsingDecl *Instance, ASTContext &C) argument
4226 isInstantiationOfStaticDataMember(VarDecl *Pattern, VarDecl *Instance) argument
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSEntry.java51 String instance = _qualifiedNameMap.get(Fields.Instance).toLowerCase();
151 return _qualifiedNameMap.get(Fields.Application).equals("dns-sd") && _qualifiedNameMap.get(Fields.Instance).equals("_services");
162 String name = _qualifiedNameMap.get(Fields.Instance);
H A DServiceInfoImpl.java191 this._name = map.get(Fields.Instance);
239 qualifiedNameMap.put(Fields.Instance, name);
306 qualifiedNameMap.put(Fields.Instance, name);
336 // Instance
337 String instance = (qualifiedNameMap.containsKey(Fields.Instance) ? qualifiedNameMap.get(Fields.Instance) : "");
343 checkedQualifiedNameMap.put(Fields.Instance, instance);
742 map.put(Fields.Instance, this.getName());
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-param-test_test.cc570 static TestGenerationEnvironment* Instance() { function in class:TestGenerationEnvironment
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
881 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
/external/gtest/test/
H A Dgtest-param-test_test.cc570 static TestGenerationEnvironment* Instance() { function in class:TestGenerationEnvironment
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
888 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc570 static TestGenerationEnvironment* Instance() { function in class:TestGenerationEnvironment
633 Environment::Instance()->FixtureConstructorExecuted();
637 Environment::Instance()->SetUpExecuted();
641 Environment::Instance()->TearDownExecuted();
687 Environment::Instance()->TestBodyExecuted();
819 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp921 CompilerInstance Instance(/*BuildingModule=*/true);
922 Instance.setInvocation(&*Invocation);
924 Instance.createDiagnostics(new ForwardingDiagnosticConsumer(
928 Instance.setVirtualFileSystem(&ImportingInstance.getVirtualFileSystem());
932 Instance.setFileManager(&ImportingInstance.getFileManager());
933 Instance.createSourceManager(Instance.getFileManager());
934 SourceManager &SourceMgr = Instance.getSourceManager();
942 Instance.setModuleDepCollector(ImportingInstance.getModuleDepCollector());
960 ModuleMapFile = Instance
[all...]
/external/clang/include/clang/AST/
H A DNSAPI.h189 /// \param Instance if true it will return the selector for the init* method
192 bool Instance) const;
/external/clang/lib/Serialization/
H A DASTReaderInternals.h161 SmallVector<ObjCMethodDecl *, 2> Instance; member in struct:clang::serialization::reader::ASTSelectorLookupTrait::data_type
/external/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp359 if (ME->getReceiverKind() == ObjCMessageExpr::Instance &&
378 if (ME->getReceiverKind() == ObjCMessageExpr::Instance) {
H A DTransRetainReleaseDealloc.cpp83 if (E->getReceiverKind() == ObjCMessageExpr::Instance)
127 case ObjCMessageExpr::Instance:
H A DTransZeroOutPropsInDealloc.cpp47 if (ME->getReceiverKind() != ObjCMessageExpr::Instance)
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java20 * &lt;Instance&gt;.&lt;app&gt;.&lt;protocol&gt;.&lt;servicedomain&gt;.&lt;parentdomain&gt;.<br/>
28 * <li>&lt;Instance&gt;: This is the service name</li>
57 * Instance Field.
59 Instance, enum constant in enum:ServiceInfo.Fields
91 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
131 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
175 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
219 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
265 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
313 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeratio
[all...]

Completed in 2285 milliseconds

123