HomeSort by relevance Sort by last modified time
    Searched defs:Method (Results 26 - 50 of 54) sorted by null

12 3

  /external/chromium/chrome/browser/search_engines/
template_url_parser.cc 50 static const char kParamMethodAttribute[] = "method";
90 enum Method {
193 void set_method(Method method) { method_ = method; }
194 Method method() { return method_; } function in class:__anon3016::ParsingContext
196 void set_suggestion_method(Method method) { suggestion_method_ = method; }
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 398 class Method(Function):
741 method = getattr(self, 'handle_' + token.name)
742 return method()
751 # Fall through--handle like any other method.
760 # this is an expression, not a method.
769 # Handle array, this isn't a method, unless it's an operator.
781 # Handle data, this isn't a method.
798 method = getattr(self, 'handle_' + method_name, None)
799 if not method:
803 return method()
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 176 ObjCMethodDecl *Method = LookupInstanceMethodInGlobalPool(Sel,
178 if (!Method)
179 Method = LookupFactoryMethodInGlobalPool(Sel,
181 if (!Method)
184 if (!Method ||
185 Method->getImplementationControl() != ObjCMethodDecl::Optional) {
249 // If we're not in an ObjC method, error out. Note that, unlike the
250 // C++ case, we don't require an instance method --- class methods
252 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(DC); local
253 if (!method)
1534 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(CurContext); local
1810 ObjCMethodDecl *method; local
    [all...]
SemaDeclObjC.cpp 30 /// Check whether the given method, which must be in the 'init'
39 bool Sema::checkInitMethod(ObjCMethodDecl *method,
41 if (method->isInvalidDecl()) return true;
49 const ObjCObjectType *result = method->getResultType()
64 !isa<ObjCImplementationDecl>(method->getDeclContext()))
69 // If this method was declared in a protocol, we can't check
72 if (isa<ObjCProtocolDecl>(method->getDeclContext())) {
82 receiverClass = method->getClassInterface();
83 assert(receiverClass && "method not associated with a class!");
93 SourceLocation loc = method->getLocation()
1467 ObjCMethodDecl *method = *I; local
1493 ObjCMethodDecl *method = *I; local
    [all...]
SemaTemplateInstantiateDecl.cpp 683 // If the enumeration is within a function or method, record the enum
    [all...]
SemaCodeComplete.cpp 156 /// \brief If we are in an instance method definition, the @implementation
173 // If this is an Objective-C instance method definition, dig out the
181 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl())
182 if (Method->isInstanceMethod())
183 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
227 /// When an Objective-C method declaration result is added, and that
228 /// method's selector matches this preferred selector, we give that method
515 // NOTE: Unless it's an Objective-C property, method, or ivar, where
557 // There is no way to qualify a name declared in a function or method
    [all...]
SemaDecl.cpp 282 /// isTagName() - This method is called *for error recovery purposes only*
464 // synthesized instance variables), if we're in an Objective-C method.
760 // A C++ inline method/friend is parsed *after* the topmost class
766 // Return the declaration context of the topmost class the inline method is
    [all...]
SemaDeclCXX.cpp 114 void Sema::ImplicitExceptionSpecification::CalledDecl(CXXMethodDecl *Method) {
117 if (!Method || ComputedEST == EST_MSAny || ComputedEST == EST_Delayed)
121 = Method->getType()->getAs<FunctionProtoType>();
695 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
696 if (Method && Method->isVirtual()) {
704 const CXXMethodDecl *WrittenVirtual = Method;
707 if (WrittenVirtual != Method)
    [all...]
SemaOverload.cpp     [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 60 /// Method - The method decl of the overrider.
61 const CXXMethodDecl *Method;
66 OverriderInfo() : Method(0), Offset(CharUnits::Zero()) { }
128 /// getOverrider - Get the final overrider for the given method declaration in
187 const UniqueVirtualMethod &Method = I->second.front();
189 const CXXRecordDecl *OverriderRD = Method.Method->getParent();
191 std::make_pair(OverriderRD, Method.Subobject))
195 Method.Subobject)]
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 232 /// ParseTranslationUnit - All in one method that initializes parses, and
296 /// ConsumeAnyToken - Dispatch to the right Consume* method based on the
312 /// ConsumeParen - This consume method keeps the paren count up-to-date.
315 assert(isTokenParen() && "wrong consume method");
325 /// ConsumeBracket - This consume method keeps the bracket count up-to-date.
328 assert(isTokenBracket() && "wrong consume method");
339 /// ConsumeBrace - This consume method keeps the brace count up-to-date.
342 assert(isTokenBrace() && "wrong consume method");
354 /// and returning the token kind. This method is specific to strings, as it
359 "Should only consume string literals with this method");
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 718 /// routine to get a method type which includes "this" pointer.
720 CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
723 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
736 if (!Method->isStatic()) {
738 QualType ThisPtr = Method->getThisType(CGM.getContext());
769 CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
773 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
775 StringRef MethodName = getFunctionName(Method);
776 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit)
2232 const CXXMethodDecl *method = local
    [all...]
CGObjCGNU.cpp 127 /// Instance Method Pointer type. This is a pointer to a function that takes,
169 /// Metadata kind used to tie method lookups to message sends. The GNUstep
343 /// Generates a method list structure. This is a structure containing a size
344 /// and an array of structures containing method metadata.
358 /// pattern as method and instance variable metadata lists.
387 /// Generates a method list. This is used by protocols to define the required
406 /// Looks up the method for sending a message to the specified object. This
407 /// mechanism differs between the GCC and GNU runtimes, so this method must be
413 /// Looks up the method for sending a message to a superclass. This
414 /// mechanism differs between the GCC and GNU runtimes, so this method mus
    [all...]
CGObjCMac.cpp 688 /// MethodVarNames - uniqued method variable names.
694 /// MethodVarTypes - uniqued method type signatures. We have to use
702 /// PropertyNames - uniqued method variable names.
732 /// GetNameForMethod - Return a name for the given method.
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 374 // Ignore implicit declarations, unless it's an objc method because
    [all...]
  /cts/tools/dx-tests/lib/
jasmin.jar 
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 
  /external/proguard/lib/
proguard.jar 
  /external/jdiff/
xerces.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 1133 milliseconds

12 3