/netbsd-src/sys/external/bsd/acpica/dist/dispatcher/ |
H A D | dsmethod.c | 112 Op = AcpiPsAllocOp (AML_METHOD_OP, ObjDesc->Method.AmlStart); in AcpiDsAutoSerializeMethod() 131 ObjDesc->Method.AmlStart, ObjDesc->Method.AmlLength, NULL, 0); in AcpiDsAutoSerializeMethod() 191 WalkState->MethodDesc->Method.SyncLevel = 0; in AcpiDsDetectNamedOpcodes() 192 WalkState->MethodDesc->Method.InfoFlags |= in AcpiDsDetectNamedOpcodes() 328 MutexDesc->Mutex.SyncLevel = MethodDesc->Method.SyncLevel; in AcpiDsCreateMethodMutex() 329 MethodDesc->Method.Mutex = MutexDesc; in AcpiDsCreateMethodMutex() 372 if (ObjDesc->Method.ThreadCount == ACPI_UINT8_MAX) in AcpiDsBeginMethodExecution() 382 if (ObjDesc->Method.InfoFlags & ACPI_METHOD_SERIALIZED) in AcpiDsBeginMethodExecution() 389 if (!ObjDesc->Method.Mutex) in AcpiDsBeginMethodExecution() 410 (!(ObjDesc->Method.InfoFlags & ACPI_METHOD_IGNORE_SYNC_LEVEL)) && in AcpiDsBeginMethodExecution() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/ |
H A D | gmock-generated-function-mockers.h | 135 #define GMOCK_MOCKER_(arity, constness, Method) \ argument 136 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__) 139 #define GMOCK_METHOD0_(tn, constness, ct, Method, ...) \ argument 143 GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \ 145 GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \ 146 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \ 149 gmock_##Method() constness { \ 150 GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); \ 151 return GMOCK_MOCKER_(0, constness, Method).With(); \ 153 ::testing::MockSpec<__VA_ARGS__> gmock_##Method( \ [all …]
|
/netbsd-src/external/mit/isl/dist/interface/ |
H A D | cpp.cc | 55 if (!is_implicit_conversion(Method(clazz, cons))) in set_class_construction_types() 280 print_method(Method(clazz, cons)); in print_constructors() 378 Method method(clazz, fd, name); in print_method_variants() 389 if (method.kind != Method::Kind::member_method) in print_method_variants() 444 Method method(clazz, fd, name); in print_descendent_overloads() 504 void Method::print_param_use(ostream &os, int pos) const in print_param_use() 543 bool Method::is_subclass_mutator() const in is_subclass_mutator() 554 std::string cpp_type_printer::return_type(const Method &method) const in return_type() 621 const Method &method, const cpp_type_printer &type_printer) in print_method_header() 628 if (method.kind == Method::Kind::static_method) in print_method_header() [all …]
|
H A D | cpp.h | 19 struct Method { struct 30 Method(const isl_class &clazz, FunctionDecl *fd, argument 32 Method(const isl_class &clazz, FunctionDecl *fd); 71 struct Method::list_combiner { 79 struct NoCopyMethod : Method { 80 NoCopyMethod(const Method &method) : Method(method) {} in NoCopyMethod() 98 ConversionMethod(const Method &method, const std::string &this_type, 100 ConversionMethod(const Method &method, const std::string &this_type); 101 ConversionMethod(const Method &method, 116 struct EnumMethod : public Method { [all …]
|
H A D | template_cpp.cc | 1345 void print_return_type(const Method &method, const Kind &kind) 1348 void print_method_header(const Method &method, const Signature &sig); 1349 bool print_special_method(const Method &method, 1351 void print_static_method(const Method &method); 1352 void print_constructor(const Method &method); 1353 bool is_return_kind(const Method &method, const Kind &return_kind); 1355 bool print_matching_method(const Method &method, const Signature &sig, 1357 bool print_matching_method(const Method &method, const Signature &sig); 1358 void print_matching_method(const Method &method, 1360 void print_at_method(const Method &method); [all …]
|
H A D | plain_cpp.h | 57 std::string get_return_type(const Method &method); 80 void print_full_method_header(const Method &method); 123 virtual void print_method(const Method &method) override; 140 virtual void print_method(const Method &method) override; 155 void print_set_persistent_callback(const Method &method); 157 void print_argument_validity_check(const Method &method); 159 void print_save_ctx(const Method &method); 161 void print_exceptional_execution_check(const Method &method); 162 void print_method_return(const Method &method);
|
/netbsd-src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
H A D | aetables.h | 291 Method (_INI) 298 Method (_E07) {} 299 Method (_E22) {} 300 Method (_L31) {} 301 Method (_L66) {} 315 Method (_L01) {} 316 Method (_E07) {} 353 Method (LD) 360 Method (MAIN, 0, NotSerialized) 368 Method (_L08) {} [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaExprObjC.cpp | 149 Selector Sel, const ObjCMethodDecl *Method) { in validateBoxingMethod() argument 150 if (!Method) { in validateBoxingMethod() 157 QualType ReturnType = Method->getReturnType(); in validateBoxingMethod() 161 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return) in validateBoxingMethod() 283 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel); in getNSNumberFactoryMethod() local 284 if (!Method && S.getLangOpts().DebuggerObjCLiteral) { in getNSNumberFactoryMethod() 287 Method = in getNSNumberFactoryMethod() 296 ParmVarDecl *value = ParmVarDecl::Create(S.Context, Method, in getNSNumberFactoryMethod() 301 Method->setMethodParams(S.Context, value, None); in getNSNumberFactoryMethod() 304 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method)) in getNSNumberFactoryMethod() [all …]
|
H A D | SemaDeclObjC.cpp | 1760 for (const auto *Method : CAT->methods()) { in DiagnoseClassExtensionDupMethods() local 1761 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; in DiagnoseClassExtensionDupMethods() 1763 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods() 1764 !MatchTwoMethodDeclarations(Method, PrevMethod)) { in DiagnoseClassExtensionDupMethods() 1765 Diag(Method->getLocation(), diag::err_duplicate_method_decl) in DiagnoseClassExtensionDupMethods() 1766 << Method->getDeclName(); in DiagnoseClassExtensionDupMethods() 2583 void Sema::CheckConflictingOverridingMethod(ObjCMethodDecl *Method, in CheckConflictingOverridingMethod() argument 2587 CheckMethodOverrideReturn(*this, Method, Overridden, in CheckConflictingOverridingMethod() 2591 for (ObjCMethodDecl::param_iterator IM = Method->param_begin(), in CheckConflictingOverridingMethod() 2592 IF = Overridden->param_begin(), EM = Method->param_end(), in CheckConflictingOverridingMethod() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/ |
H A D | benchmark.h | 1121 #define BENCHMARK_PRIVATE_DECLARE_F(BaseClass, Method) \ argument 1122 class BaseClass##_##Method##_Benchmark : public BaseClass { \ 1124 BaseClass##_##Method##_Benchmark() : BaseClass() { \ 1125 this->SetName(#BaseClass "/" #Method); \ 1132 #define BENCHMARK_TEMPLATE1_PRIVATE_DECLARE_F(BaseClass, Method, a) \ argument 1133 class BaseClass##_##Method##_Benchmark : public BaseClass<a> { \ 1135 BaseClass##_##Method##_Benchmark() : BaseClass<a>() { \ 1136 this->SetName(#BaseClass"<" #a ">/" #Method); \ 1143 #define BENCHMARK_TEMPLATE2_PRIVATE_DECLARE_F(BaseClass, Method, a, b) \ argument 1144 class BaseClass##_##Method##_Benchmark : public BaseClass<a, b> { \ [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/ |
H A D | benchmark.h | 1158 #define BENCHMARK_PRIVATE_DECLARE_F(BaseClass, Method) \ argument 1159 class BaseClass##_##Method##_Benchmark : public BaseClass { \ 1161 BaseClass##_##Method##_Benchmark() : BaseClass() { \ 1162 this->SetName(#BaseClass "/" #Method); \ 1169 #define BENCHMARK_TEMPLATE1_PRIVATE_DECLARE_F(BaseClass, Method, a) \ argument 1170 class BaseClass##_##Method##_Benchmark : public BaseClass<a> { \ 1172 BaseClass##_##Method##_Benchmark() : BaseClass<a>() { \ 1173 this->SetName(#BaseClass "<" #a ">/" #Method); \ 1180 #define BENCHMARK_TEMPLATE2_PRIVATE_DECLARE_F(BaseClass, Method, a, b) \ argument 1181 class BaseClass##_##Method##_Benchmark : public BaseClass<a, b> { \ [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/ssl-tests/ |
H A D | 17-renegotiate.cnf.in | 27 "Method" => "TLS", 40 "Method" => "TLS", 54 "Method" => "TLS", 67 "Method" => "TLS", 86 "Method" => "TLS", 105 "Method" => "TLS", 122 "Method" => "TLS", 143 "Method" => "TLS", 162 "Method" => "TLS", 181 "Method" => "TLS", [all …]
|
H A D | 07-dtls-protocol-version.cnf | 93 Method = DTLS 120 Method = DTLS 146 Method = DTLS 174 Method = DTLS 202 Method = DTLS 229 Method = DTLS 256 Method = DTLS 282 Method = DTLS 309 Method = DTLS 336 Method = DTLS [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | ExprObjC.cpp | 29 ObjCMethodDecl *Method, SourceRange SR) in ObjCArrayLiteral() argument 31 NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method) { in ObjCArrayLiteral() 41 QualType T, ObjCMethodDecl *Method, in Create() argument 44 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR); in Create() 112 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr() argument 116 reinterpret_cast<uintptr_t>(Method ? Method : Sel.getAsOpaquePtr())), in ObjCMessageExpr() 118 HasMethod(Method != nullptr), IsDelegateInitCall(false), in ObjCMessageExpr() 131 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr() argument 135 reinterpret_cast<uintptr_t>(Method ? Method : Sel.getAsOpaquePtr())), in ObjCMessageExpr() 136 Kind(Class), HasMethod(Method != nullptr), IsDelegateInitCall(false), in ObjCMessageExpr() [all …]
|
H A D | DeclObjC.cpp | 751 ObjCMethodDecl *Method = nullptr; in lookupPrivateMethod() local 753 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod() 757 if (!Method) in lookupPrivateMethod() 758 Method = getCategoryMethod(Sel, Instance); in lookupPrivateMethod() 763 if (!Instance && !Method && !getSuperClass()) { in lookupPrivateMethod() 764 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod() 767 if (!Method) in lookupPrivateMethod() 768 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod() 771 if (!Method && getSuperClass()) in lookupPrivateMethod() 773 return Method; in lookupPrivateMethod() [all …]
|
/netbsd-src/sys/external/bsd/acpica/dist/debugger/ |
H A D | dbmethod.c | 351 ACPI_NAMESPACE_NODE *Method; in AcpiDbDisassembleMethod() local 354 Method = AcpiDbConvertToNode (Name); in AcpiDbDisassembleMethod() 355 if (!Method) in AcpiDbDisassembleMethod() 360 if (Method->Type != ACPI_TYPE_METHOD) in AcpiDbDisassembleMethod() 363 Name, AcpiUtGetTypeName (Method->Type))); in AcpiDbDisassembleMethod() 367 ObjDesc = Method->Object; in AcpiDbDisassembleMethod() 369 Op = AcpiPsCreateScopeOp (ObjDesc->Method.AmlStart); in AcpiDbDisassembleMethod() 384 ObjDesc->Method.AmlStart, in AcpiDbDisassembleMethod() 385 ObjDesc->Method.AmlLength, NULL, ACPI_IMODE_LOAD_PASS1); in AcpiDbDisassembleMethod() 391 Status = AcpiUtAllocateOwnerId (&ObjDesc->Method.OwnerId); in AcpiDbDisassembleMethod() [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/ |
H A D | 17-renegotiate.conf.in | 27 "Method" => "TLS", 40 "Method" => "TLS", 54 "Method" => "TLS", 67 "Method" => "TLS", 86 "Method" => "TLS", 105 "Method" => "TLS", 126 "Method" => "TLS", 145 "Method" => "TLS", 164 "Method" => "TLS", 183 "Method" => "TLS", [all …]
|
H A D | 07-dtls-protocol-version.conf | 93 Method = DTLS 120 Method = DTLS 146 Method = DTLS 174 Method = DTLS 202 Method = DTLS 229 Method = DTLS 256 Method = DTLS 282 Method = DTLS 309 Method = DTLS 336 Method = DTLS [all …]
|
H A D | 18-dtls-renegotiate.conf.in | 33 "Method" => "DTLS", 45 "Method" => "DTLS", 66 "Method" => "DTLS", 84 "Method" => "DTLS", 102 "Method" => "DTLS", 126 "Method" => "DTLS", 145 "Method" => "DTLS", 164 "Method" => "DTLS", 183 "Method" => "DTLS",
|
/netbsd-src/sys/external/bsd/acpica/dist/parser/ |
H A D | psxface.c | 175 Op = AcpiPsCreateScopeOp (Info->ObjDesc->Method.AmlStart); in AcpiPsExecuteMethod() 186 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL); in AcpiPsExecuteMethod() 194 Info->ObjDesc->Method.AmlStart, in AcpiPsExecuteMethod() 195 Info->ObjDesc->Method.AmlLength, Info, Info->PassNumber); in AcpiPsExecuteMethod() 205 if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_MODULE_LEVEL) in AcpiPsExecuteMethod() 212 if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_INTERNAL_ONLY) in AcpiPsExecuteMethod() 214 Status = Info->ObjDesc->Method.Dispatch.Implementation (WalkState); in AcpiPsExecuteMethod() 310 Op = AcpiPsCreateScopeOp (Info->ObjDesc->Method.AmlStart); in AcpiPsExecuteTable() 320 Info->ObjDesc->Method.OwnerId, NULL, NULL, NULL); in AcpiPsExecuteTable() 328 Info->ObjDesc->Method.AmlStart, in AcpiPsExecuteTable() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc/ |
H A D | runtime.h | 60 typedef struct objc_method *Method; typedef 547 method_setImplementation (Method method, IMP implementation); 556 method_exchangeImplementations (Method method_a, Method method_b); 625 objc_EXPORT Method class_getInstanceMethod (Class class_, SEL selector); 633 objc_EXPORT Method class_getClassMethod (Class class_, SEL selector); 703 objc_EXPORT SEL method_getName (Method method); 706 objc_EXPORT IMP method_getImplementation (Method method); 710 objc_EXPORT const char * method_getTypeEncoding (Method method); 714 objc_EXPORT struct objc_method_description * method_getDescription (Method method); 726 objc_EXPORT Method * class_copyMethodList (Class class_, unsigned int *numberOfReturnedMethods); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libobjc/objc/ |
H A D | runtime.h | 60 typedef struct objc_method *Method; typedef 547 method_setImplementation (Method method, IMP implementation); 556 method_exchangeImplementations (Method method_a, Method method_b); 625 objc_EXPORT Method class_getInstanceMethod (Class class_, SEL selector); 633 objc_EXPORT Method class_getClassMethod (Class class_, SEL selector); 703 objc_EXPORT SEL method_getName (Method method); 706 objc_EXPORT IMP method_getImplementation (Method method); 710 objc_EXPORT const char * method_getTypeEncoding (Method method); 714 objc_EXPORT struct objc_method_description * method_getDescription (Method method); 726 objc_EXPORT Method * class_copyMethodList (Class class_, unsigned int *numberOfReturnedMethods); [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | Thunk.h | 168 const CXXMethodDecl *Method; member 170 ThunkInfo() : Method(nullptr) {} in ThunkInfo() 173 const CXXMethodDecl *Method = nullptr) 174 : This(This), Return(Return), Method(Method) {} in This() 178 LHS.Method == RHS.Method; 182 return This.isEmpty() && Return.isEmpty() && Method == nullptr; in isEmpty()
|
/netbsd-src/sys/external/bsd/acpica/dist/tests/misc/ |
H A D | badcode.asl | 67 Method (MTH1, 0, NotSerialized, 32) 97 Method (MTH2) 116 Method (MTH3) 118 // Method MTH2 above does not always return a value 123 // Method MTH4 does not explicitly return a value 125 Method (MTH4) {} 126 Method (MTH5) {Store (MTH4(), Local0)} 164 Method (_OSC, 5) 181 Method (_L1D) 184 Method (_E1D) [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | Iterator.cpp | 38 for (const auto *Method : CRD->methods()) { in isIterator() local 39 if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(Method)) { in isIterator() 45 if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(Method)) { in isIterator() 49 if (Method->isCopyAssignmentOperator()) { in isIterator() 50 HasCopyAssign = !Method->isDeleted() && Method->getAccess() == AS_public; in isIterator() 53 if (!Method->isOverloadedOperator()) in isIterator() 55 const auto OPK = Method->getOverloadedOperator(); in isIterator() 57 HasPreIncrOp = HasPreIncrOp || (Method->getNumParams() == 0); in isIterator() 58 HasPostIncrOp = HasPostIncrOp || (Method->getNumParams() == 1); in isIterator() 62 HasDerefOp = (Method->getNumParams() == 0); in isIterator()
|