| /minix3/minix/drivers/power/acpi/dispatcher/ |
| H A D | dsmethod.c | 129 Status = AcpiDsInitAmlWalk (WalkState, Op, Node, ObjDesc->Method.AmlStart, in AcpiDsAutoSerializeMethod() 130 ObjDesc->Method.AmlLength, NULL, 0); in AcpiDsAutoSerializeMethod() 193 WalkState->MethodDesc->Method.SyncLevel = 0; in AcpiDsDetectNamedOpcodes() 194 WalkState->MethodDesc->Method.InfoFlags |= in AcpiDsDetectNamedOpcodes() 314 MutexDesc->Mutex.SyncLevel = MethodDesc->Method.SyncLevel; in AcpiDsCreateMethodMutex() 315 MethodDesc->Method.Mutex = MutexDesc; in AcpiDsCreateMethodMutex() 356 if (ObjDesc->Method.ThreadCount == ACPI_UINT8_MAX) in AcpiDsBeginMethodExecution() 366 if (ObjDesc->Method.InfoFlags & ACPI_METHOD_SERIALIZED) in AcpiDsBeginMethodExecution() 373 if (!ObjDesc->Method.Mutex) in AcpiDsBeginMethodExecution() 394 (!(ObjDesc->Method.InfoFlags & ACPI_METHOD_IGNORE_SYNC_LEVEL)) && in AcpiDsBeginMethodExecution() [all …]
|
| H A D | dsinit.c | 146 if (ObjDesc->Method.InfoFlags & ACPI_METHOD_SERIALIZED) in AcpiDsInitOneObject() 157 if (ObjDesc->Method.InfoFlags & ACPI_METHOD_SERIALIZED) in AcpiDsInitOneObject()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 151 Selector Sel, const ObjCMethodDecl *Method) { in validateBoxingMethod() argument 152 if (!Method) { in validateBoxingMethod() 159 QualType ReturnType = Method->getReturnType(); in validateBoxingMethod() 163 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return) in validateBoxingMethod() 228 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel); in getNSNumberFactoryMethod() local 229 if (!Method && S.getLangOpts().DebuggerObjCLiteral) { in getNSNumberFactoryMethod() 232 Method = in getNSNumberFactoryMethod() 240 ParmVarDecl *value = ParmVarDecl::Create(S.Context, Method, in getNSNumberFactoryMethod() 245 Method->setMethodParams(S.Context, value, None); in getNSNumberFactoryMethod() 248 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method)) in getNSNumberFactoryMethod() [all …]
|
| H A D | SemaDeclObjC.cpp | 841 for (const auto *Method : CAT->methods()) { in DiagnoseClassExtensionDupMethods() local 842 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; in DiagnoseClassExtensionDupMethods() 844 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods() 845 !MatchTwoMethodDeclarations(Method, PrevMethod)) { in DiagnoseClassExtensionDupMethods() 846 Diag(Method->getLocation(), diag::err_duplicate_method_decl) in DiagnoseClassExtensionDupMethods() 847 << Method->getDeclName(); in DiagnoseClassExtensionDupMethods() 1575 void Sema::CheckConflictingOverridingMethod(ObjCMethodDecl *Method, in CheckConflictingOverridingMethod() argument 1579 CheckMethodOverrideReturn(*this, Method, Overridden, in CheckConflictingOverridingMethod() 1583 for (ObjCMethodDecl::param_iterator IM = Method->param_begin(), in CheckConflictingOverridingMethod() 1584 IF = Overridden->param_begin(), EM = Method->param_end(), in CheckConflictingOverridingMethod() [all …]
|
| H A D | SemaLambda.cpp | 386 CXXMethodDecl *Method in startLambdaDefinition() local 396 Method->setAccess(AS_public); in startLambdaDefinition() 400 Method->setLexicalDeclContext(CurContext); in startLambdaDefinition() 404 Method->getLocation(), MethodName, in startLambdaDefinition() 406 Method) : nullptr; in startLambdaDefinition() 410 Method->setDescribedFunctionTemplate(TemplateMethod); in startLambdaDefinition() 415 Method->setParams(Params); in startLambdaDefinition() 420 for (auto P : Method->params()) in startLambdaDefinition() 421 P->setOwningFunction(Method); in startLambdaDefinition() 428 unsigned ManglingNumber = MCtx->getManglingNumber(Method); in startLambdaDefinition() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/Index/ |
| H A D | complete-objc-message.m | 86 - (int)Method:(int)i; 87 - (int)Method; method 88 - (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2; 89 - (int)Method:(float)f Arg1:(int)i1 OtherArg:(id)obj; 90 - (int)Method:(float)f SomeArg:(int)i1 OtherArg:(id)obj; 95 [ovl Method:1 Arg1:1 OtherArg:ovl]; 99 - (int)Method:(int)i, ...; 103 [e Method:1, 2, 3]; 107 + (int)Method:(int)i; 108 + (int)Method; class [all …]
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Basic/ |
| H A D | ABI.h | 188 const CXXMethodDecl *Method; member 190 ThunkInfo() : Method(nullptr) { } in ThunkInfo() 193 const CXXMethodDecl *Method = nullptr) 194 : This(This), Return(Return), Method(Method) {} in This() 198 LHS.Method == RHS.Method; 202 return This.isEmpty() && Return.isEmpty() && Method == nullptr; in isEmpty()
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/ |
| H A D | 2004-03-08-ReinterpretCastCopy.cpp | 5 virtual void Method() = 0; 9 virtual void Method() { } in Method() function 17 fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method); in main()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | CXXInheritance.h | 236 : Method(nullptr), Subobject(0), InVirtualSubobject(nullptr) { } in UniqueVirtualMethod() 238 UniqueVirtualMethod(CXXMethodDecl *Method, unsigned Subobject, in UniqueVirtualMethod() 240 : Method(Method), Subobject(Subobject), in UniqueVirtualMethod() 244 CXXMethodDecl *Method; member 257 return X.Method == Y.Method && X.Subobject == Y.Subobject &&
|
| /minix3/minix/drivers/power/acpi/namespace/ |
| H A D | nseval.c | 239 Info->ObjDesc->Method.AmlStart + 1, in AcpiNsEvaluate() 240 Info->ObjDesc->Method.AmlLength - 1)); in AcpiNsEvaluate() 386 Next = Next->Method.Mutex; in AcpiNsExecModuleCodeList() 390 Prev->Method.Mutex = NULL; in AcpiNsExecModuleCodeList() 444 MethodObj->Method.NextObject); in AcpiNsExecModuleCode() 456 MethodObj->Method.Dispatch.Handler = in AcpiNsExecModuleCode() 462 MethodObj->Method.NextObject = NULL; in AcpiNsExecModuleCode() 494 MethodObj->Method.AmlStart)); in AcpiNsExecModuleCode()
|
| H A D | nsxfname.c | 348 ParamCount = Node->Object->Method.ParamCount; in AcpiGetObjectInfo() 691 MethodObj->Method.AmlStart = AmlBuffer; in ACPI_EXPORT_SYMBOL() 692 MethodObj->Method.AmlLength = AmlLength; in ACPI_EXPORT_SYMBOL() 694 MethodObj->Method.ParamCount = (UINT8) in ACPI_EXPORT_SYMBOL() 699 MethodObj->Method.InfoFlags = ACPI_METHOD_SERIALIZED; in ACPI_EXPORT_SYMBOL() 701 MethodObj->Method.SyncLevel = (UINT8) in ACPI_EXPORT_SYMBOL()
|
| H A D | nsdump.c | 329 (UINT32) ObjDesc->Method.ParamCount, in AcpiNsDumpOneObject() 330 ObjDesc->Method.AmlLength, ObjDesc->Method.AmlStart); in AcpiNsDumpOneObject() 495 AcpiOsPrintf (" M:%p-%X\n", ObjDesc->Method.AmlStart, in AcpiNsDumpOneObject() 496 ObjDesc->Method.AmlLength); in AcpiNsDumpOneObject() 621 ObjDesc = (void *) ObjDesc->Method.AmlStart; in AcpiNsDumpOneObject()
|
| H A D | nsaccess.c | 169 ObjDesc->Method.ParamCount = (UINT8) ACPI_TO_INTEGER (Val); in AcpiNsRootInitialize() 176 NewNode->Value = ObjDesc->Method.ParamCount; in AcpiNsRootInitialize() 180 ObjDesc->Method.InfoFlags = ACPI_METHOD_INTERNAL_ONLY; in AcpiNsRootInitialize() 181 ObjDesc->Method.Dispatch.Implementation = AcpiUtOsiImplementation; in AcpiNsRootInitialize()
|
| H A D | nsxfeval.c | 321 if (Info->ObjDesc->Method.ParamCount > Info->ParamCount) in ACPI_EXPORT_SYMBOL() 326 Info->ObjDesc->Method.ParamCount)); in ACPI_EXPORT_SYMBOL() 332 else if (Info->ObjDesc->Method.ParamCount < Info->ParamCount) in ACPI_EXPORT_SYMBOL() 337 Info->ObjDesc->Method.ParamCount)); in ACPI_EXPORT_SYMBOL() 341 Info->ParamCount = Info->ObjDesc->Method.ParamCount; in ACPI_EXPORT_SYMBOL()
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 613 ObjCMethodDecl *Method = nullptr; in lookupPrivateMethod() local 615 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod() 619 if (!Method) in lookupPrivateMethod() 620 Method = Instance ? getCategoryInstanceMethod(Sel) in lookupPrivateMethod() 626 if (!Instance && !Method && !getSuperClass()) { in lookupPrivateMethod() 627 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod() 630 if (!Method) in lookupPrivateMethod() 631 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod() 634 if (!Method && getSuperClass()) in lookupPrivateMethod() 636 return Method; in lookupPrivateMethod() [all …]
|
| /minix3/minix/drivers/power/acpi/parser/ |
| H A D | psxface.c | 311 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL); in AcpiPsExecuteMethod() 319 Info->ObjDesc->Method.AmlStart, in AcpiPsExecuteMethod() 320 Info->ObjDesc->Method.AmlLength, Info, Info->PassNumber); in AcpiPsExecuteMethod() 327 if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_MODULE_LEVEL) in AcpiPsExecuteMethod() 334 if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_INTERNAL_ONLY) in AcpiPsExecuteMethod() 336 Status = Info->ObjDesc->Method.Dispatch.Implementation (WalkState); in AcpiPsExecuteMethod()
|
| H A D | psloop.c | 328 Next = Next->Method.Mutex; in AcpiPsLinkModuleCode() 336 ((Prev->Method.AmlStart + Prev->Method.AmlLength) != AmlStart)) in AcpiPsLinkModuleCode() 355 MethodObj->Method.AmlStart = AmlStart; in AcpiPsLinkModuleCode() 356 MethodObj->Method.AmlLength = AmlLength; in AcpiPsLinkModuleCode() 357 MethodObj->Method.OwnerId = OwnerId; in AcpiPsLinkModuleCode() 358 MethodObj->Method.InfoFlags |= ACPI_METHOD_MODULE_LEVEL; in AcpiPsLinkModuleCode() 364 MethodObj->Method.NextObject = in AcpiPsLinkModuleCode() 373 Prev->Method.Mutex = MethodObj; in AcpiPsLinkModuleCode() 378 Prev->Method.AmlLength += AmlLength; in AcpiPsLinkModuleCode()
|
| /minix3/external/bsd/llvm/dist/clang/test/ASTMerge/Inputs/ |
| H A D | interface2.m | 31 // Method mismatch 36 // Method mismatch 42 // Method mismatch
|
| H A D | interface1.m | 31 // Method mismatch 37 // Method mismatch 43 // Method mismatch
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/ |
| H A D | vtable-instantiation.cpp | 58 static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}} in Method() function 66 GMG<int>::Method(); // expected-note{{in instantiation of}} in test()
|
| /minix3/minix/drivers/power/acpi/executer/ |
| H A D | excreate.c | 527 ObjDesc->Method.AmlStart = AmlStart; in AcpiExCreateMethod() 528 ObjDesc->Method.AmlLength = AmlLength; in AcpiExCreateMethod() 535 ObjDesc->Method.ParamCount = (UINT8) (MethodFlags & AML_METHOD_ARG_COUNT); in AcpiExCreateMethod() 543 ObjDesc->Method.InfoFlags = ACPI_METHOD_SERIALIZED; in AcpiExCreateMethod() 549 ObjDesc->Method.SyncLevel = (UINT8) in AcpiExCreateMethod()
|
| H A D | exdump.c | 146 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.InfoFlags), "Info Flags"}, 147 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.ParamCount), "Parameter Count"}, 148 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.SyncLevel), "Sync Level"}, 149 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Method.Mutex), "Mutex"}, 150 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.OwnerId), "Owner Id"}, 151 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.ThreadCount), "Thread Count"}, 152 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Method.AmlLength), "Aml Length"}, 153 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Method.AmlStart), "Aml Start"} 856 ObjDesc->Method.ParamCount, in AcpiExDumpOperand() 857 ObjDesc->Method.AmlStart, in AcpiExDumpOperand() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/Analysis/inlining/ |
| H A D | InlineObjCInstanceMethod.m | 11 // Method is defined in the parent; called through self. 46 // Method is called on inited object. 52 // Method is called on a parameter. 57 // Method is called on a parameter of unnown type.
|
| /minix3/external/bsd/llvm/dist/llvm/test/JitListener/ |
| H A D | multiple.ll | 29 ; CHECK: Method load [1]: bar, Size = {{[0-9]+}} 35 ; CHECK: Method load [2]: foo, Size = {{[0-9]+}} 39 ; CHECK: Method load [3]: fubar, Size = {{[0-9]+}} 46 ; CHECK: Method unload [1] 47 ; CHECK: Method unload [2] 48 ; CHECK: Method unload [3]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Parse/ |
| H A D | ParseCXXInlineMethods.cpp | 298 Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method); in ParseLexedMethodDeclaration() 302 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method); in ParseLexedMethodDeclaration() 389 ExceptionSpecEnd.setEofData(LM.Method); in ParseLexedMethodDeclaration() 405 CXXMethodDecl *Method; in ParseLexedMethodDeclaration() local 407 = dyn_cast<FunctionTemplateDecl>(LM.Method)) in ParseLexedMethodDeclaration() 408 Method = cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl()); in ParseLexedMethodDeclaration() 410 Method = cast<CXXMethodDecl>(LM.Method); in ParseLexedMethodDeclaration() 412 Sema::CXXThisScopeRAII ThisScope(Actions, Method->getParent(), in ParseLexedMethodDeclaration() 413 Method->getTypeQualifiers(), in ParseLexedMethodDeclaration() 429 if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method) in ParseLexedMethodDeclaration() [all …]
|