| /minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | ModelInjector.cpp | 79 CompilerInstance Instance; 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 …]
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/MC/ |
| H A D | MCLabel.h | 28 unsigned Instance; variable 33 : Instance(instance) {} in MCLabel() 39 unsigned getInstance() const { return Instance; } in getInstance() 43 unsigned incInstance() { return ++Instance; } in incInstance()
|
| H A D | MCContext.h | 180 unsigned Instance);
|
| /minix3/external/bsd/llvm/dist/clang/test/Sema/ |
| H A 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()
|
| H A D | nonnull.c | 10 } Instance __attribute__((transparent_union)); typedef 12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) { in Class_init()
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/ |
| H A 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()
|
| /minix3/external/bsd/llvm/dist/clang/test/Analysis/ |
| H A 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 …]
|
| H A 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 …
|
| H A D | self-init.m | 158 myivar = 0; // expected-warning {{Instance variable used}} 190 myivar = 0; // expected-warning {{Instance variable used}}
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/ |
| H A 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()
|
| /minix3/minix/drivers/power/acpi/tables/ |
| H A D | tbxface.c | 230 UINT32 Instance, in ACPI_EXPORT_SYMBOL_INIT() 255 if (++j < Instance) in ACPI_EXPORT_SYMBOL_INIT() 317 UINT32 Instance, in ACPI_EXPORT_SYMBOL() 342 if (++j < Instance) in ACPI_EXPORT_SYMBOL()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/MC/ |
| H A D | MCContext.cpp | 197 unsigned Instance) { in getOrCreateDirectionalLocalSymbol() argument 198 MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)]; in getOrCreateDirectionalLocalSymbol() 205 unsigned Instance = NextInstance(LocalLabelVal); in CreateDirectionalLocalSymbol() local 206 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance); in CreateDirectionalLocalSymbol() 211 unsigned Instance = GetInstance(LocalLabelVal); in GetDirectionalLocalSymbol() local 213 ++Instance; in GetDirectionalLocalSymbol() 214 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance); in GetDirectionalLocalSymbol()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 4128 ClassTemplateDecl *Instance) { in isInstantiationOf() argument 4132 Instance = Instance->getCanonicalDecl(); in isInstantiationOf() 4133 if (Pattern == Instance) return true; in isInstantiationOf() 4134 Instance = Instance->getInstantiatedFromMemberTemplate(); in isInstantiationOf() 4135 } while (Instance); in isInstantiationOf() 4141 FunctionTemplateDecl *Instance) { in isInstantiationOf() argument 4145 Instance = Instance->getCanonicalDecl(); in isInstantiationOf() 4146 if (Pattern == Instance) return true; in isInstantiationOf() 4147 Instance = Instance->getInstantiatedFromMemberTemplate(); in isInstantiationOf() 4148 } while (Instance); in isInstantiationOf() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 918 CompilerInstance Instance(/*BuildingModule=*/true); in compileModuleImpl() local 919 Instance.setInvocation(&*Invocation); in compileModuleImpl() 921 Instance.createDiagnostics(new ForwardingDiagnosticConsumer( in compileModuleImpl() 925 Instance.setVirtualFileSystem(&ImportingInstance.getVirtualFileSystem()); in compileModuleImpl() 929 Instance.setFileManager(&ImportingInstance.getFileManager()); in compileModuleImpl() 930 Instance.createSourceManager(Instance.getFileManager()); in compileModuleImpl() 931 SourceManager &SourceMgr = Instance.getSourceManager(); in compileModuleImpl() 939 Instance.setModuleDepCollector(ImportingInstance.getModuleDepCollector()); in compileModuleImpl() 957 ModuleMapFile = Instance.getFileManager().getVirtualFile( in compileModuleImpl() 975 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(CreateModuleAction); }, in compileModuleImpl() [all …]
|
| H A D | FrontendAction.cpp | 127 FrontendAction::FrontendAction() : Instance(nullptr) {} in FrontendAction() 173 assert(!Instance && "Already processing a source file!"); in BeginSourceFile()
|
| /minix3/minix/drivers/power/acpi/include/ |
| H A D | acpiosxf.h | 502 UINT32 Instance, 512 UINT32 *Instance,
|
| H A D | acpixf.h | 512 UINT32 Instance, 519 UINT32 Instance,
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | NSAPI.h | 165 bool Instance) const;
|
| H A D | ExprObjC.h | 1032 Instance, 1171 return getReceiverKind() == Instance || getReceiverKind() == SuperInstance; 1183 if (getReceiverKind() == Instance) 1195 Kind = Instance;
|
| /minix3/external/bsd/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderInternals.h | 161 SmallVector<ObjCMethodDecl *, 2> Instance; member
|
| /minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransRetainReleaseDealloc.cpp | 83 if (E->getReceiverKind() == ObjCMessageExpr::Instance) in VisitObjCMessageExpr() 127 case ObjCMessageExpr::Instance: in VisitObjCMessageExpr()
|
| H A D | TransAutoreleasePool.cpp | 359 if (ME->getReceiverKind() == ObjCMessageExpr::Instance && in isPoolCreation() 378 if (ME->getReceiverKind() == ObjCMessageExpr::Instance) { in isPoolDrain()
|
| H A D | TransZeroOutPropsInDealloc.cpp | 47 if (ME->getReceiverKind() != ObjCMessageExpr::Instance) in VisitObjCMessageExpr()
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | NSAPI.cpp | 231 bool Instance) const { in getNSNumberLiteralSelector() 269 if (Instance) { in getNSNumberLiteralSelector()
|
| H A D | DeclObjC.cpp | 605 bool Instance) const { in lookupPrivateMethod() 615 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod() 620 Method = Instance ? getCategoryInstanceMethod(Sel) in lookupPrivateMethod() 626 if (!Instance && !Method && !getSuperClass()) { in lookupPrivateMethod() 635 return getSuperClass()->lookupPrivateMethod(Sel, Instance); in lookupPrivateMethod()
|