Searched defs:Methods (Results 1 - 19 of 19) sorted by relevance

/external/doclava/res/assets/templates/
H A Dclass.cs73 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
77 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a> external variable declarations
81 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a> external variable declarations
428 <table id="pubmethods" class="jd-sumtable"><tr><th colspan="12">Public Methods</th></tr>
436 <table id="promethods" class="jd-sumtable"><tr><th colspan="12">Protected Methods</th></tr>
447 <div style="clear:left;">Inherited Methods</div></th></tr>
559 <h5 class="jd-tagtitle">Related Methods</h5>
624 <h2>Public Methods</h2>
631 <h2>Protected Methods</h2>
/external/lzma/CPP/7zip/Common/
H A DMethodProps.h26 CObjectVector<CMethod> Methods; member in struct:CMethodsMode
36 bool IsEmpty() const { return Methods.IsEmpty() ; }
/external/lzma/CPP/7zip/Archive/7z/
H A D7zCompressionMode.h32 CObjectVector<CMethodFull> Methods; member in struct:NArchive::N7z::CCompressionMethodMode
40 bool IsEmpty() const { return (Methods.IsEmpty() && !PasswordIsDefined); }
/external/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc286 static PyMethodDef Methods[] = { member in namespace:google::protobuf::python::extension_dict
325 extension_dict::Methods, // tp_methods
H A Ddescriptor.cc209 static PyMethodDef Methods[] = { member in namespace:google::protobuf::python::cdescriptor_pool
253 cdescriptor_pool::Methods, // tp_methods
H A Drepeated_composite_container.cc705 static PyMethodDef Methods[] = { member in namespace:google::protobuf::python::repeated_composite_container
750 repeated_composite_container::Methods, // tp_methods
H A Dmessage.cc2134 static PyMethodDef Methods[] = { member in namespace:google::protobuf::python::cmessage
2187 // Static Methods.
2340 cmessage::Methods, // tp_methods
/external/clang/tools/libclang/
H A DCIndexHigh.cpp25 SmallVectorImpl<const Decl *> &Methods) {
35 Methods.push_back(D->getCanonicalDecl());
41 getTopOverriddenMethods(TU, cxcursor::getCursorDecl(*I), Methods);
23 getTopOverriddenMethods(CXTranslationUnit TU, const Decl *D, SmallVectorImpl<const Decl *> &Methods) argument
/external/clang/lib/AST/
H A DDeclObjC.cpp410 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const {
423 Methods.push_back(MD);
427 Methods.push_back(MD);
971 SmallVectorImpl<const ObjCMethodDecl *> &Methods,
991 Methods.push_back(Overridden);
996 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
1008 Methods.push_back(Overridden);
1014 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
1020 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
1023 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSupe
969 CollectOverriddenMethodsRecurse(const ObjCContainerDecl *Container, const ObjCMethodDecl *Method, SmallVectorImpl<const ObjCMethodDecl *> &Methods, bool MovedToSuper) argument
1031 CollectOverriddenMethods(const ObjCContainerDecl *Container, const ObjCMethodDecl *Method, SmallVectorImpl<const ObjCMethodDecl *> &Methods) argument
[all...]
H A DVTableBuilder.cpp181 const OverridingMethods& Methods = I->second; local
183 for (OverridingMethods::const_iterator I = Methods.begin(),
184 E = Methods.end(); I != E; ++I) {
603 /// Methods for iterating over the components.
1106 OverriddenMethodsSetTy *Methods; member in struct:__anon881::__anon882::OverriddenMethodsCollector
1110 return Methods->insert(MD).second;
/external/clang/lib/Serialization/
H A DASTWriter.cpp2897 data_type_ref Methods) {
2903 for (const ObjCMethodList *Method = &Methods.Instance; Method;
2907 for (const ObjCMethodList *Method = &Methods.Factory; Method;
2931 data_type_ref Methods, unsigned DataLen) {
2935 LE.write<uint32_t>(Methods.ID);
2937 for (const ObjCMethodList *Method = &Methods.Instance; Method;
2943 for (const ObjCMethodList *Method = &Methods.Factory; Method;
2948 unsigned InstanceBits = Methods.Instance.getBits();
2951 Methods.Instance.hasMoreThanOneDecl();
2955 unsigned FactoryBits = Methods
2896 EmitKeyDataLength(raw_ostream& Out, Selector Sel, data_type_ref Methods) argument
2930 EmitData(raw_ostream& Out, key_type_ref, data_type_ref Methods, unsigned DataLen) argument
[all...]
H A DASTReader.cpp7264 static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods, argument
7266 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
7267 S.addMethodToGlobalList(&List, Methods[I]);
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp428 llvm::Constant *Methods,
1485 std::vector<llvm::Constant*> Methods; local
1500 Methods.push_back(llvm::ConstantStruct::get(ObjCMethodTy, Elements));
1505 Methods.size());
1507 Methods);
1518 Methods.clear();
1519 Methods.push_back(llvm::ConstantPointerNull::get(
1521 Methods.push_back(llvm::ConstantInt::get(Int32Ty, MethodTypes.size()));
1522 Methods.push_back(MethodArray);
1525 return MakeGlobal(ObjCMethodListTy, Methods, "
1569 GenerateClassStructure( llvm::Constant *MetaClass, llvm::Constant *SuperClass, unsigned info, const char *Name, llvm::Constant *Version, llvm::Constant *InstanceSize, llvm::Constant *IVars, llvm::Constant *Methods, llvm::Constant *Protocols, llvm::Constant *IvarOffsets, llvm::Constant *Properties, llvm::Constant *StrongIvarBitmap, llvm::Constant *WeakIvarBitmap, bool isMeta) argument
1667 std::vector<llvm::Constant*> Methods; local
[all...]
H A DCGObjCMac.cpp1119 ArrayRef<llvm::Constant*> Methods);
1129 ArrayRef<llvm::Constant*> Methods);
1144 ArrayRef<llvm::Constant*> Methods);
1324 ArrayRef<llvm::Constant*> Methods);
2863 ArrayRef<llvm::Constant*> Methods) {
2865 if (Methods.empty())
2869 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
2871 Methods.size());
2872 Values[1] = llvm::ConstantArray::get(AT, Methods);
3099 ArrayRef<llvm::Constant*> Methods) {
2862 EmitMethodDescList(Twine Name, const char *Section, ArrayRef<llvm::Constant*> Methods) argument
3097 EmitMetaClass(const ObjCImplementationDecl *ID, llvm::Constant *Protocols, ArrayRef<llvm::Constant*> Methods) argument
3322 EmitMethodList(Twine Name, const char *Section, ArrayRef<llvm::Constant*> Methods) argument
5598 std::vector<llvm::Constant*> Methods; local
5934 std::vector<llvm::Constant*> Methods; local
6030 EmitMethodList(Twine Name, const char *Section, ArrayRef<llvm::Constant*> Methods) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp2334 Selector Sel, SmallVectorImpl<ObjCMethodDecl *> &Methods, bool instance) {
2345 Methods.push_back(M->getMethod());
2346 return Methods.size() > 1;
2361 SmallVector<ObjCMethodDecl *, 4> Methods; local
2362 Methods.push_back(BestMethod);
2366 Methods.push_back(M->getMethod());
2367 if (Methods.size() > 1)
2368 DiagnoseMultipleMethodInGlobalPool(Methods, Sel, R, receiverIdOrClass);
2385 SmallVector<ObjCMethodDecl *, 4> Methods; local
2393 void Sema::DiagnoseMultipleMethodInGlobalPool(SmallVectorImpl<ObjCMethodDecl*> &Methods, argument
2333 CollectMultipleMethodsInGlobalPool( Selector Sel, SmallVectorImpl<ObjCMethodDecl *> &Methods, bool instance) argument
2506 SmallVector<const ObjCMethodDecl *, 8> Methods; local
[all...]
H A DSemaOverload.cpp5743 SmallVector<ObjCMethodDecl*, 4> Methods; local
5744 if (!CollectMultipleMethodsInGlobalPool(Sel, Methods, IsInstance))
5747 for (unsigned b = 0, e = Methods.size(); b < e; b++) {
5749 ObjCMethodDecl *Method = Methods[b];
5811 else if (Match && NumNamedArgs == 0 && Methods.size() > 1) {
5814 for (unsigned b = 0, e = Methods.size(); b < e; b++) {
5815 QualType ReturnT = Methods[b]->getReturnType();
5817 return Methods[b];
5988 assert(Proto && "Methods without a prototype cannot be overloaded");
H A DSemaDeclCXX.cpp4689 // Methods and method templates.
6250 /// \brief Check whether any most overriden method from MD in Methods
6252 const llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
6254 return Methods.count(MD->getCanonicalDecl());
6258 if (CheckMostOverridenMethods(*I, Methods))
6312 /// \brief Add the most overriden methods from MD to Methods
6314 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
6316 Methods.insert(MD->getCanonicalDecl());
6320 AddMostOverridenMethods(*I, Methods);
6251 CheckMostOverridenMethods(const CXXMethodDecl *MD, const llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) argument
6313 AddMostOverridenMethods(const CXXMethodDecl *MD, llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) argument
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6431 ArrayRef<ObjCMethodDecl *> Methods,
6435 if (Methods.size() > 0) {
6437 Write_method_list_t_TypeDecl(Result, Methods.size());
6442 Result += "\t"; Result += utostr(Methods.size()); Result += ",\n";
6443 for (unsigned i = 0, e = Methods.size(); i < e; i++) {
6444 ObjCMethodDecl *MD = Methods[i];
6809 ArrayRef<ObjCMethodDecl *> Methods,
6812 if (Methods.size() == 0)
6819 for (unsigned i = 0, e = Methods.size(); i < e; i++) {
6820 ObjCMethodDecl *MD = Methods[
6429 Write_method_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef TopLevelDeclName, bool MethodImpl) argument
6807 Write__extendedMethodTypes_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef ProtocolName) argument
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...

Completed in 3664 milliseconds