HomeSort by: relevance | last modified time | path
    Searched defs:Method (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastValueChecker.cpp 34 enum class CallKind { Function, Method, InstanceOf };
69 {&CastValueChecker::evalCastAs, CallKind::Method}},
71 {&CastValueChecker::evalGetAs, CallKind::Method}},
498 case CallKind::Method:
DynamicTypePropagation.cpp 144 // 2. Receiver is 'super' from a class method (a.k.a 'super' is a
154 // 3. Receiver is 'super' from an instance method (a.k.a 'super' is an
201 // 'self' variable of the current class method.
349 // Assume, the result of the init method has the same dynamic type as
736 /// A method might not be available in the interface indicated by the static
739 /// the method. The more specialized the enclosing class of the method is, the
744 const ObjCMethodDecl *Method = nullptr;
755 // type, look up the method in the tracked type, not in the receiver type.
760 // The method might not be found
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gdbarch_types.py 71 # for a function or method with void return type.
169 class Method(Function):
170 "A Method is like a Function but passes the gdbarch through."
  /src/external/gpl3/gdb.old/dist/gdb/
gdbarch_types.py 71 # for a function or method with void return type.
169 class Method(Function):
170 "A Method is like a Function but passes the gdbarch through."
  /src/sys/external/bsd/acpica/dist/debugger/
dbutils.c 414 ACPI_PARSE_OBJECT *Method;
431 Method = Op;
444 WalkState->ParserState.AmlStart = Method->Named.Data;
446 WalkState->ParserState.PkgEnd = Method->Named.Data +
447 Method->Named.Length;
457 BaseAmlOffset = (Method->Common.Value.Arg)->Common.AmlOffset + 1;
458 StartOp = (Method->Common.Value.Arg)->Common.Next;
473 * Method = (ACPI_DEFERRED_OP *) Op;
474 * Status = AcpiPsParseAml (Op, Method->Body, Method->BodyLength)
    [all...]
dbmethod.c 80 * DESCRIPTION: Set a breakpoint in a control method at the specified
97 AcpiOsPrintf ("There is no method currently executing\n");
127 * DESCRIPTION: Set a breakpoint in a control method at the specified
140 AcpiOsPrintf ("There is no method currently executing\n");
158 * DESCRIPTION: Set a local or argument for the running control method.
217 AcpiOsPrintf ("There is no method currently executing\n");
236 /* Set a method argument */
260 /* Set a method local */
317 AcpiOsPrintf ("There is no method currently executing\n");
334 * PARAMETERS: Name - Name of control method
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Thunk.h 163 /// Holds a pointer to the overridden method this thunk is for,
168 const CXXMethodDecl *Method;
170 ThunkInfo() : Method(nullptr) {}
173 const CXXMethodDecl *Method = nullptr)
174 : This(This), Return(Return), Method(Method) {}
178 LHS.Method == RHS.Method;
182 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
  /src/external/mit/isl/dist/interface/
cpp.h 10 /* A generated C++ method derived from an isl function.
12 * "clazz" is the class to which the method belongs.
14 * "name" is the name of the method, which may be different
16 * "kind" is the type of the method.
19 struct Method {
30 Method(const isl_class &clazz, FunctionDecl *fd,
32 Method(const isl_class &clazz, FunctionDecl *fd);
64 /* A data structure expressing how Method::on_arg_list should combine
71 struct Method::list_combiner {
77 /* A method that does not require its isl type parameters to be a copy
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CXXInheritance.h 228 /// Uniquely identifies a virtual method within a class
229 /// hierarchy by the method itself and a class subobject number.
231 /// The overriding virtual method.
232 CXXMethodDecl *Method = nullptr;
234 /// The subobject in which the overriding virtual method
239 /// virtual method is a part. Note that this records the closest
245 UniqueVirtualMethod(CXXMethodDecl *Method, unsigned Subobject,
247 : Method(Method), Subobject(Subobject),
252 return X.Method == Y.Method && X.Subobject == Y.Subobject &
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 9 // Rewrites legacy method calls to modern syntax.
99 /// in the compiler resolving 'objectForKey:' as the method from NSDictionary.
102 /// the receiver is a result of a class method from a hardcoded list of
294 const ObjCMethodDecl *Method = Msg->getMethodDecl();
295 if (!Method)
299 NS.getASTContext().getObjContainingInterface(Method);
849 // Try to modify the literal make it the same type as the method call.
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountChecker.h 65 ErrorLeakReturned, // A memory leak due to the returning method not having
382 /// Returns true if this stack frame is for an Objective-C method that is a
385 auto Method = dyn_cast_or_null<ObjCMethodDecl>(SFC->getDecl());
386 if (!Method || !Method->isPropertyAccessor())
  /src/external/gpl3/gcc.old/dist/libobjc/objc/
runtime.h 58 /* A 'Method' represents a method. It holds information about the
59 name, types and the IMP of the method. */
60 typedef struct objc_method *Method;
70 /* Method descriptor returned by introspective Object methods. At the
121 qualifiers of method and ivar types. */
239 of the returned object. This method allocates the appropriate
251 /* Dispose of an object. This method calls the appropriate C++
537 /* Change the implementation of the method. It also searches all
538 classes for any class implementing the method, and replaces th
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/objc/
runtime.h 58 /* A 'Method' represents a method. It holds information about the
59 name, types and the IMP of the method. */
60 typedef struct objc_method *Method;
70 /* Method descriptor returned by introspective Object methods. At the
121 qualifiers of method and ivar types. */
239 of the returned object. This method allocates the appropriate
251 /* Dispose of an object. This method calls the appropriate C++
537 /* Change the implementation of the method. It also searches all
538 classes for any class implementing the method, and replaces th
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/APINotes/
APINotesYAMLCompiler.cpp 143 /// Treat as a class method.
149 struct Method {
165 typedef std::vector<Method> MethodsSeq;
168 LLVM_YAML_IS_SEQUENCE_VECTOR(Method)
180 template <> struct MappingTraits<Method> {
181 static void mapping(IO &IO, Method &M) {
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
RetainSummaryManager.cpp 1024 // Check the method family, and apply any default annotations.
1093 // method.
1139 // we should use the class method.
1143 const ObjCMethodDecl *Method = ME->getMethodDecl();
1144 if (!Method && ReceiverClass)
1145 Method = ReceiverClass->getInstanceMethod(S);
1147 return getMethodSummary(S, ReceiverClass, Method, ME->getType(),
1157 // Objective-C method summaries are only applicable to ObjC and CF objects.
1202 // awakeAfterUsingCoder: behaves basically like an 'init' method. It
1258 // exit a method
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseCXXInlineMethods.cpp 22 /// Declarator is a well formed C++ inline method definition. Now lex its body
144 // impossible to recover, so don't try to parse this method later.
319 /// stack of method declarations with some parts for which parsing was
330 ReenterTemplateScopeRAII InFunctionTemplateScope(*this, LM.Method);
332 // Start the delayed C++ method declaration
333 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method);
409 if (const auto *FunTmpl = dyn_cast<FunctionTemplateDecl>(LM.Method))
413 Old = cast<FunctionDecl>(LM.Method)->getPreviousDecl();
436 ExceptionSpecEnd.setEofData(LM.Method);
452 CXXMethodDecl *Method;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 77 /// getIvarDecl - This method looks up an ivar in this ContextDecl.
90 // Get the local instance/class method declared in this interface.
103 // ensures we get the correct method.
119 /// This routine returns 'true' if a user declared setter method was
122 /// property. This is because, user must provide a setter method for the
137 // for a user declared instance method.
157 // Also look into protocols, for a user declared instance method.
650 /// lookupInheritedClass - This method returns ObjCInterfaceDecl * of the super
680 /// lookupMethod - This method returns an instance/class method by looking i
    [all...]
StmtPrinter.cpp 2026 CXXMethodDecl *Method = Node->getCallOperator();
2028 for (const auto *P : Method->parameters()) {
2037 if (Method->isVariadic()) {
2047 auto *Proto = Method->getType()->castAs<FunctionProtoType>();
2547 // Stmt method implementations
VTableBuilder.cpp 65 /// Method - The method decl of the overrider.
66 const CXXMethodDecl *Method;
75 OverriderInfo() : Method(nullptr), VirtualBase(nullptr),
138 /// getOverrider - Get the final overrider for the given method declaration in
193 const UniqueVirtualMethod &Method = M.second.front();
195 const CXXRecordDecl *OverriderRD = Method.Method->getParent();
197 std::make_pair(OverriderRD, Method.Subobject))
201 Method.Subobject)]
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprMember.cpp 48 /// so, because the context is not an instance method.
65 /// context is not an instance method.
74 /// context is not an instance method.
152 // If the current context is not an instance method, it can't be
208 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FunctionLevelDC);
209 CXXRecordDecl *ContextClass = Method ? Method->getParent() : nullptr;
212 bool InStaticMethod = Method && Method->isStatic();
1132 assert(!isa<FunctionDecl>(MemberDecl) && "member function not C++ method?")
    [all...]
AnalysisBasedWarnings.cpp 547 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Func))
548 isVirtualMethod = Method->isVirtual();
1434 Method,
1444 FunctionKind = Method;
2153 // warnings on a function, method, or block.
SemaLambda.cpp 391 CXXMethodDecl *Method = CXXMethodDecl::Create(
397 Method->setAccess(AS_public);
399 Class->addDecl(Method);
403 Method->setLexicalDeclContext(CurContext);
407 Method->getLocation(), MethodName,
409 Method) : nullptr;
412 Method->setDescribedFunctionTemplate(TemplateMethod);
419 Method->setParams(Params);
423 for (auto P : Method->parameters())
424 P->setOwningFunction(Method);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/Shared/
RPCUtils.h 145 // DerivedFunc should be a user defined class with a static 'getName()' method
626 // "act" will depend on how this method is implemented in any given
785 MemberFnWrapper(ClassT &Instance, MethodT Method)
786 : Instance(Instance), Method(Method) {}
788 return (Instance.*Method)(std::move(Args)...);
793 MethodT Method;
1089 /// Helper for handling setter procedures - this method returns a functor that
1366 /// Add a class-method as a handler.
1368 void addHandler(ClassT &Object, RetT (ClassT::*Method)(ArgTs...))
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 236 #define ACPI_METHOD_MODULE_LEVEL 0x01 /* Method is actually module-level code */
237 #define ACPI_METHOD_INTERNAL_ONLY 0x02 /* Method is implemented internally (_OSI) */
238 #define ACPI_METHOD_SERIALIZED 0x04 /* Method is serialized */
239 #define ACPI_METHOD_SERIALIZED_PENDING 0x08 /* Method is to be marked serialized */
240 #define ACPI_METHOD_IGNORE_SYNC_LEVEL 0x10 /* Method was auto-serialized at table load time */
241 #define ACPI_METHOD_MODIFIED_NAMESPACE 0x20 /* Method modified the namespace */
459 ACPI_REFCLASS_LOCAL = 0, /* Method local */
460 ACPI_REFCLASS_ARG = 1, /* Method argument */
481 ACPI_NAMESPACE_NODE *Method_REG; /* _REG method for this region (if any) */
525 ACPI_OBJECT_METHOD Method;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 246 const ObjCMethodDecl *Method = Msg->getMethodDecl();
247 if (!Method)
249 if (!Method->isPropertyAccessor())
252 const ObjCPropertyDecl *Prop = Method->findPropertyDecl();
265 // Find space location range between receiver expression and getter method.
272 // rewrite getter method expression into: receiver.property or
560 // It is trying to remove the setter method decl. line entirely.
579 for (auto *Method : D->methods()) {
580 if (Method->isDeprecated())
582 bool PropertyInferred = migrateProperty(Ctx, D, Method);
    [all...]

Completed in 59 milliseconds

1 2