Searched defs:Container (Results 26 - 40 of 40) sorted by relevance

12

/external/clang/lib/AST/
H A DDeclObjC.cpp955 static void CollectOverriddenMethodsRecurse(const ObjCContainerDecl *Container, argument
959 if (!Container)
966 Category = dyn_cast<ObjCCategoryDecl>(Container)) {
971 Overridden = Container->getMethod(Method->getSelector(),
988 Overridden = Container->getMethod(Method->getSelector(),
998 if (const ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)){
1004 Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
1017 static inline void CollectOverriddenMethods(const ObjCContainerDecl *Container, argument
1020 CollectOverriddenMethodsRecurse(Container, Method, Methods,
1092 const ObjCContainerDecl *Container local
[all...]
H A DASTContext.cpp4962 const Decl *Container) const {
4963 if (!Container)
4966 dyn_cast<ObjCCategoryImplDecl>(Container)) {
4971 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
4980 /// property declaration. If non-NULL, Container must be either an
5005 const Decl *Container,
5012 getObjCPropertyImplDeclForPropertyDecl(PD, Container)) {
5004 getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD, const Decl *Container, std::string& S) const argument
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp228 const Decl *Container) {
234 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
227 MakePropertyEncodingString(const ObjCPropertyDecl *PD, const Decl *Container) argument
H A DCGObjCMac.cpp932 const Decl *Container);
988 const Decl *Container,
1002 const Decl *Container,
1307 void AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container,
2771 const Decl *Container,
2775 PushProtocolProperties(PropertySet, Properties, Container, P, ObjCTypes);
2781 GetPropertyTypeString(PD, Container)
2800 const Decl *Container,
2809 GetPropertyTypeString(PD, Container)
2816 PushProtocolProperties(PropertySet, Properties, Container,
2769 PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*,16> &PropertySet, SmallVectorImpl<llvm::Constant *> &Properties, const Decl *Container, const ObjCProtocolDecl *Proto, const ObjCCommonTypesHelper &ObjCTypes) argument
2799 EmitPropertyList(Twine Name, const Decl *Container, const ObjCContainerDecl *OCD, const ObjCCommonTypesHelper &ObjCTypes) argument
4933 GetPropertyTypeString(const ObjCPropertyDecl *PD, const Decl *Container) argument
5484 AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container, const char *SymbolName, const char *SectionName) argument
6095 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface(); local
[all...]
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3439 static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) { argument
3440 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3447 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3453 return Container;
3456 static void AddObjCProperties(ObjCContainerDecl *Container, argument
3465 Container = getContainerDef(Container);
3468 for (const auto *P : Container->properties())
3475 ASTContext &Context = Container->getASTContext();
3477 for (auto *M : Container
4797 AddObjCMethods(ObjCContainerDecl *Container, bool WantInstanceMethods, ObjCMethodKind WantKind, ArrayRef<IdentifierInfo *> SelIdents, DeclContext *CurContext, VisitedSelectorSet &Selectors, bool AllowSameLength, ResultBuilder &Results, bool InOriginalClass = true) argument
5920 ObjCContainerDecl *Container local
5960 ObjCContainerDecl *Container local
6054 FindImplementableMethods(ASTContext &Context, ObjCContainerDecl *Container, bool WantInstanceMethods, QualType ReturnType, KnownMethodsMap &KnownMethods, bool InOriginalClass = true) argument
[all...]
H A DTreeTransform.h4913 ArgLocContainer *Container; member in class:clang::TemplateArgumentLocContainerIterator
4936 TemplateArgumentLocContainerIterator(ArgLocContainer &Container, argument
4938 : Container(&Container), Index(Index) { }
4952 return Container->getArgLoc(Index);
4956 return pointer(Container->getArgLoc(Index));
4961 return X.Container == Y.Container && X.Index == Y.Index;
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp979 bool containsLocation(const PathDiagnosticLocation &Container,
1050 bool EdgeBuilder::containsLocation(const PathDiagnosticLocation &Container, argument
1053 if (Container == Containee)
1056 if (Container.asDecl())
1060 if (const Stmt *ContainerS = Container.asStmt()) {
1070 SourceRange ContainerR = Container.asRange();
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp503 template <typename T, int Size> struct ContainerOf { typedef Vector<T, Size> Container; }; typedef in struct:deqp::gls::BuiltinPrecisionTests::ContainerOf
505 template <typename T> struct ContainerOf<T, 1> { typedef T Container; }; typedef in struct:deqp::gls::BuiltinPrecisionTests::ContainerOf
506 template <int Size> struct ContainerOf<Void, Size> { typedef Void Container; }; typedef in struct:deqp::gls::BuiltinPrecisionTests::ContainerOf
878 * Container types (i.e. vectors and matrices) support the subscription
2811 ExprP<typename ContainerOf<T, Size>::Container> genXType (const ExprP<T>& x)
2876 Signature<float, typename ContainerOf<float, Size>::Container> >
2894 ExprP<float> length (const ExprP<typename ContainerOf<float, Size>::Container>& x)
2902 typename ContainerOf<float, Size>::Container,
2903 typename ContainerOf<float, Size>::Container> >
2944 Signature<typename ContainerOf<float, Size>::Container,
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp6434 typedef __gnu_cxx::hash_map<int, int> Container;
6436 typedef std::map<int,int> Container; typedef in namespace:test140
6439 static Container container;
6441 // Here we use swap to pass a Container between threads.
6457 Container tmp;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp1978 class Container : public GarbageCollected<Container> { class in namespace:blink
1980 static Container* create() { return new Container(); }
2203 Persistent<Container> container = Container::create();
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp6500 const Decl *Container,
6519 Context->getObjCEncodingForPropertyDecl(PropDecl, Container, PropertyTypeString);
7050 /* Container */nullptr,
7263 /* Container */IDecl,
7508 /* Container */IDecl,
6497 Write_prop_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCPropertyDecl *> Properties, const Decl *Container, StringRef VarName, StringRef ProtocolName) argument
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 2004 milliseconds

12