HomeSort by relevance Sort by last modified time
    Searched defs:Method (Results 101 - 125 of 282) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/reflect/
value.go 18 // if any, are noted in the documentation for each method.
19 // Use the Kind method to find out the kind of value before
20 // calling kind-specific methods. Calling a method
24 // Its IsValid method returns false, its Kind method returns Invalid,
25 // its String method returns "<invalid Value>", and all other methods panic.
35 // To compare two Values, compare the results of the Interface method.
50 // - flagMethod: v is a method value.
52 // This repeats typ.Kind() except for method values.
53 // The remaining 23+ bits give a method number for method values
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Pal.h 222 /// PAL_CACHE_PROTECTION.Method.
247 UINT32 Method:4;
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 243 const ObjCMethodDecl *Method = Msg->getMethodDecl();
244 if (!Method)
246 if (!Method->isPropertyAccessor())
249 const ObjCPropertyDecl *Prop = Method->findPropertyDecl();
262 // Find space location range between receiver expression and getter method.
269 // rewrite getter method expression into: receiver.property or
557 // It is trying to remove the setter method decl. line entirely.
576 for (auto *Method : D->methods()) {
577 if (Method->isDeprecated())
579 bool PropertyInferred = migrateProperty(Ctx, D, Method);
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp     [all...]
VTableBuilder.cpp 66 /// Method - The method decl of the overrider.
67 const CXXMethodDecl *Method;
76 OverriderInfo() : Method(nullptr), VirtualBase(nullptr),
139 /// getOverrider - Get the final overrider for the given method declaration in
194 const UniqueVirtualMethod &Method = M.second.front();
196 const CXXRecordDecl *OverriderRD = Method.Method->getParent();
198 std::make_pair(OverriderRD, Method.Subobject))
202 Method.Subobject)]
    [all...]
ASTContext.cpp 411 // Add redeclared method here.
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 144 /// \brief Emits an error if the given method does not exist, or if the return
148 Selector Sel, const ObjCMethodDecl *Method) {
149 if (!Method) {
156 QualType ReturnType = Method->getReturnType();
160 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return)
239 /// \brief Retrieve the NSNumber factory method that should be used to create
256 // If we already looked up this method, we're done.
281 // Look for the appropriate method within NSNumber.
282 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel);
283 if (!Method && S.getLangOpts().DebuggerObjCLiteral)
1242 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(DC); local
2993 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(CurContext); local
3323 ObjCMethodDecl *method; local
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaCodeComplete.cpp 162 /// \brief If we are in an instance method definition, the \@implementation
181 // If this is an Objective-C instance method definition, dig out the
189 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl())
190 if (Method->isInstanceMethod())
191 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
238 /// When an Objective-C method declaration result is added, and that
239 /// method's selector matches this preferred selector, we give that method
581 // There is no way to qualify a name declared in a function or method.
681 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)
    [all...]
SemaDeclObjC.cpp 33 /// Check whether the given method, which must be in the 'init'
42 bool Sema::checkInitMethod(ObjCMethodDecl *method,
44 if (method->isInvalidDecl()) return true;
53 method->getReturnType()->castAs<ObjCObjectPointerType>()->getObjectType();
67 !isa<ObjCImplementationDecl>(method->getDeclContext()))
72 // If this method was declared in a protocol, we can't check
75 if (isa<ObjCProtocolDecl>(method->getDeclContext())) {
85 receiverClass = method->getClassInterface();
86 assert(receiverClass && "method not associated with a class!");
96 SourceLocation loc = method->getLocation()
2136 B << method; local
    [all...]
SemaOverload.cpp     [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs 152 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.ServiceDescriptorProto), global::Google.Protobuf.Reflection.ServiceDescriptorProto.Parser, new[]{ "Name", "Method", "Options" }, null, null, null),
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
strmini.h 170 PKSMETHOD Method;
  /external/clang/include/clang/Parse/
Parser.h 362 /// ConsumeAnyToken - Dispatch to the right Consume* method based on the
380 /// ConsumeParen - This consume method keeps the paren count up-to-date.
383 assert(isTokenParen() && "wrong consume method");
393 /// ConsumeBracket - This consume method keeps the bracket count up-to-date.
396 assert(isTokenBracket() && "wrong consume method");
407 /// ConsumeBrace - This consume method keeps the brace count up-to-date.
410 assert(isTokenBrace() && "wrong consume method");
422 /// and returning the token kind. This method is specific to strings, as it
427 "Should only consume string literals with this method");
546 /// Note that this differs from the Preprocessor's LookAhead method, becaus
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
CGObjCGNU.cpp 116 /// Instance Method Pointer type. This is a pointer to a function that takes,
158 /// Metadata kind used to tie method lookups to message sends. The GNUstep
404 /// Generates a method list structure. This is a structure containing a size
405 /// and an array of structures containing method metadata.
421 /// pattern as method and instance variable metadata lists.
453 /// Generates a method list. This is used by protocols to define the required
477 /// Looks up the method for sending a message to the specified object. This
478 /// mechanism differs between the GCC and GNU runtimes, so this method must be
486 /// Looks up the method for sending a message to a superclass. This
487 /// mechanism differs between the GCC and GNU runtimes, so this method mus
    [all...]
ItaniumCXXABI.cpp 374 const CXXMethodDecl *Method = VtableComponent.getFunctionDecl();
375 if (Method->getCanonicalDecl()->isInlined())
391 const CXXMethodDecl *Method = VtableComponent.getFunctionDecl();
392 if (Method->getVisibility() == Visibility::HiddenVisibility &&
393 !Method->isDefined())
478 // For PNaCl, use ARM-style method pointers so that PNaCl code
499 /// In the Itanium and ARM ABIs, method pointers have the form:
503 /// - method pointers are virtual if (memptr.ptr & 1) is nonzero
508 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
    [all...]
CGObjCMac.cpp 835 /// MethodVarNames - uniqued method variable names.
841 /// MethodVarTypes - uniqued method type signatures. We have to use
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 71 /// ArgEffects summarizes the effects of a function/method call on all of
91 ErrorLeakReturned, // A memory leak due to the returning method not having
380 // Function/Method behavior summaries.
399 /// function/method call returns a new tracked symbol.
557 // FIXME: Class method lookup. Right now we dont' have a good way
774 /// the summary for the current method being analyzed.
792 /// Determine if there is a special return effect for this function or method.
817 // summaries. If a function or method looks like it has a default summary, but
    [all...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 555 private Method method; field in class:NanoHTTPD.HTTPSession
599 pre.put("method", st.nextToken());
823 this.method = Method.lookup(pre.get("method"));
824 if (this.method == null) {
849 r.setRequestMethod(this.method);
2018 Method method = session.getMethod(); local
    [all...]
  /art/runtime/
debugger.cc 80 // Takes a method and returns a 'canonical' one if the method is default (and therefore potentially
82 // method we are in.
97 Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind)
98 : method_(GetCanonicalMethod(method)),
111 // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause
113 ArtMethod* Method() const {
125 // Returns true if the method of this breakpoint and the passed in method should be considered the
126 // same. That is, they are either the same method or they are copied from the same method
1642 ArtMethod* method; member in struct:art::DebugCallbackContext
2959 ArtMethod* method = GetMethod(); local
3615 ArtMethod* method = GetMethod(); local
3763 ArtMethod* method; member in struct:art::SingleStepStackVisitor
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 194 // Ignore implicit declarations, unless it's an objc method because
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
http.h 636 PCHAR Method;
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.2/
kotlin-annotation-processing-1.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/
http-builder-0.7.2.jar 

Completed in 677 milliseconds

1 2 3 45 6 7 8 91011>>