Searched defs:Container (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_view_gtk.h24 class Container { class in class:ExtensionViewGtk
26 virtual ~Container() {}
39 void SetContainer(Container* container) { container_ = container; }
65 Container* container_;
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_view.h28 class Container { class in class:ExtensionView
30 virtual ~Container() {}
57 void SetContainer(Container* container) { container_ = container; }
103 Container* container_;
/external/webrtc/src/system_wrappers/interface/
H A Ddata_log_impl.h39 // writable to file. Enforce this via the Container interface.
40 class Container { class in namespace:webrtc
42 virtual ~Container() {}
48 class ValueContainer : public Container {
64 class MultiValueContainer : public Container {
108 // Inserts a Container into a table with name table_name at the column
113 const Container* value_container);
/external/chromium/base/
H A Dstack_container_unittest.cc77 typedef Vector::ContainerType Container; typedef
91 Container::iterator itr = std::find(vect->begin(), vect->end(), dummy_unref);
/external/clang/test/SemaCXX/
H A DPR11358.cpp13 typedef container<T> Container; typedef in struct:test1::Test
15 Container::iterator i = c.begin(); // expected-error{{missing 'typename'}}
17 Container c;
45 typedef container<T> Container; typedef in struct:test3::Test
47 Container::iterator const i; // expected-error{{missing 'typename'}}
49 Container c;
H A Dusing-decl-templates.cpp72 typedef long Container; typedef in class:PR10883::Base
78 using Base<T>::Container;
80 void foo(const Container& current); // expected-error {{unknown type name 'Container'}}
H A Dconversion-function.cpp331 template <typename T> struct Container;
335 typedef Container<int> container_type;
339 struct Container { struct in namespace:PR8065
344 Container<int> test;
361 template<class Container>
362 operator Container()
364 Container ar;
/external/clang/test/SemaTemplate/
H A Dms-lookup-template-base-classes.cpp160 class Container : public Base<T> { class in namespace:PR12701
163 bool operator=(const Container<S>& rhs) {
169 Container<A> text_provider;
170 Container<B> text_provider2;
/external/llvm/include/llvm/Analysis/
H A DLoopIterator.h57 LoopBlocksDFS(Loop *Container) : argument
58 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
59 PostBlocks.reserve(Container->getNumBlocks());
/external/stlport/test/unit/
H A Dmap_test.cpp339 typedef map<Key, int, KeyCmp> Container; typedef
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container; typedef
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container; typedef
389 typedef Container
413 typedef multimap<Key const volatile*, int, KeyCmpPtr> Container; typedef
[all...]
H A Dunordered_test.cpp572 typedef unordered_set<Key, KeyHash, KeyEqual> Container; typedef
573 Container cont;
586 Container const& ccont = cont;
593 typedef unordered_set<Key*, KeyHashPtr, KeyEqualPtr> Container; typedef
594 Container cont;
607 Container const& ccont = cont;
613 typedef unordered_multiset<Key, KeyHash, KeyEqual> Container; typedef
614 Container cont;
627 Container const& ccont = cont;
634 typedef unordered_multiset<Key const volatile*, KeyHashPtr, KeyEqualPtr> Container; typedef
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp35 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface(); local
44 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
47 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
56 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
H A DCGObjCMac.cpp847 const Decl *Container);
881 const Decl *Container,
895 const Decl *Container,
1203 void AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container,
2116 const Decl *Container,
2121 PushProtocolProperties(PropertySet, Properties, Container, (*P), ObjCTypes);
2129 GetPropertyTypeString(PD, Container)
2148 const Decl *Container,
2159 GetPropertyTypeString(PD, Container)
2168 PushProtocolProperties(PropertySet, Properties, Container, (*
2114 PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*,16> &PropertySet, llvm::SmallVectorImpl<llvm::Constant*> &Properties, const Decl *Container, const ObjCProtocolDecl *PROTO, const ObjCCommonTypesHelper &ObjCTypes) argument
2147 EmitPropertyList(Twine Name, const Decl *Container, const ObjCContainerDecl *OCD, const ObjCCommonTypesHelper &ObjCTypes) argument
4274 GetPropertyTypeString(const ObjCPropertyDecl *PD, const Decl *Container) argument
4816 AddModuleClassList(ArrayRef<llvm::GlobalValue*> Container, const char *SymbolName, const char *SectionName) argument
5417 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface(); local
[all...]
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-generated-matchers.h315 template <typename Container>
316 operator Matcher<Container>() const {
317 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
329 return MakeMatcher(new ElementsAreMatcherImpl<Container>(&matcher, 1));
343 template <typename Container>
344 operator Matcher<Container>() const {
345 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
354 return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 2));
370 template <typename Container>
371 operator Matcher<Container>() cons
[all...]
H A Dgmock-matchers.h1889 template <typename Container>
1892 typedef internal::StlContainerView<Container> View;
1898 explicit ContainerEqMatcher(const Container& rhs) : rhs_(View::Copy(rhs)) {
1901 (void)testing::StaticAssertTypeEq<Container,
1902 GTEST_REMOVE_REFERENCE_AND_CONST_(Container)>();
2084 template <typename Container>
2085 class QuantifierMatcherImpl : public MatcherInterface<Container> {
2087 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
2102 Container container,
2127 // Implements Contains(element_matcher) for the given argument type Container
[all...]
/external/clang/tools/libclang/
H A DCXCursor.cpp798 ObjCContainerDecl *Container,
802 if (!Container)
808 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
813 Overridden = Container->getMethod(Method->getSelector(),
830 if (ObjCMethodDecl *Overridden = Container->getMethod(Method->getSelector(),
839 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
846 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
864 ObjCContainerDecl *Container,
867 CollectOverriddenMethodsRecurse(TU, Container, Method, Methods,
797 CollectOverriddenMethodsRecurse(CXTranslationUnit TU, ObjCContainerDecl *Container, ObjCMethodDecl *Method, SmallVectorImpl<CXCursor> &Methods, bool MovedToSuper) argument
863 CollectOverriddenMethods(CXTranslationUnit TU, ObjCContainerDecl *Container, ObjCMethodDecl *Method, SmallVectorImpl<CXCursor> &Methods) argument
H A DIndexing.cpp669 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info); local
670 return Container->IndexCtx->getClientContainerForDC(Container->DC);
677 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info); local
678 Container->IndexCtx->addContainerInMap(Container->DC, client);
H A DIndexingContext.cpp613 ContainerInfo Container; local
614 getContainerInfo(DC, Container);
621 &Container };
/external/clang/lib/Parse/
H A DParser.cpp532 SmallVectorImpl<TemplateIdAnnotation *> &Container; member in class:__anon138::DestroyTemplateIdAnnotationsRAIIObj
535 &Container)
536 : Container(Container) {}
540 Container.begin(), E = Container.end();
543 Container.clear();
534 DestroyTemplateIdAnnotationsRAIIObj(SmallVectorImpl<TemplateIdAnnotation *> &Container) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp790 bool containsLocation(const PathDiagnosticLocation &Container,
901 bool EdgeBuilder::containsLocation(const PathDiagnosticLocation &Container, argument
904 if (Container == Containee)
907 if (Container.asDecl())
911 if (const Stmt *ContainerS = Container.asStmt()) {
921 SourceRange ContainerR = Container.asRange();
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp1334 const DeclContext *Container = Method->getDeclContext(); local
1336 S.LookupPropertyDecl(cast<ObjCContainerDecl>(Container),
H A DSemaCodeComplete.cpp3364 static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) { argument
3365 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3372 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3378 return Container;
3381 static void AddObjCProperties(ObjCContainerDecl *Container, argument
3390 Container = getContainerDef(Container);
3393 for (ObjCContainerDecl::prop_iterator P = Container->prop_begin(),
3394 PEnd = Container->prop_end();
3403 ASTContext &Context = Container
4748 AddObjCMethods(ObjCContainerDecl *Container, bool WantInstanceMethods, ObjCMethodKind WantKind, IdentifierInfo **SelIdents, unsigned NumSelIdents, DeclContext *CurContext, VisitedSelectorSet &Selectors, bool AllowSameLength, ResultBuilder &Results, bool InOriginalClass = true) argument
5877 ObjCContainerDecl *Container local
5919 ObjCContainerDecl *Container local
6012 FindImplementableMethods(ASTContext &Context, ObjCContainerDecl *Container, bool WantInstanceMethods, QualType ReturnType, KnownMethodsMap &KnownMethods, bool InOriginalClass = true) argument
[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 ...
/external/clang/lib/AST/
H A DASTContext.cpp4560 /// property declaration. If non-NULL, Container must be either an
4585 const Decl *Container,
4592 if (Container) {
4594 dyn_cast<ObjCCategoryImplDecl>(Container)) {
4608 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
4584 getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD, const Decl *Container, std::string& S) const argument

Completed in 1623 milliseconds

12