Searched defs:Container (Results 1 - 25 of 41) 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/chromium_org/chrome/browser/ui/gtk/extensions/
H A Dextension_view_gtk.h28 class Container { class in class:ExtensionViewGtk
30 virtual ~Container() {}
43 void SetContainer(Container* container) { container_ = container; }
67 Container* container_;
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
H A Dextension_view_mac.h29 class Container { class in class:ExtensionViewMac
31 virtual ~Container() {}
55 void set_container(Container* container) { container_ = container; }
93 Container* container_;
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_view_views.h34 class Container { class in class:ExtensionViewViews
36 virtual ~Container() {}
59 void SetContainer(Container* container) { container_ = container; }
108 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.cpp333 template <typename T> struct Container;
337 typedef Container<int> container_type;
341 struct Container { struct in namespace:PR8065
346 Container<int> test;
363 template<class Container>
364 operator Container()
366 Container ar;
/external/marisa-trie/lib/marisa/
H A Dcontainer.h11 class Container;
14 class Container<std::vector<T> *> { class in namespace:marisa
16 Container(std::vector<T> *vec) : vec_(vec) {} function in class:marisa::Container
17 Container(const Container &container) : vec_(container.vec_) {} function in class:marisa::Container
31 Container &operator=(const Container &query);
35 class Container<T *> { class in namespace:marisa
37 explicit Container(T *ptr) : ptr_(ptr) {} function in class:marisa::Container
38 Container(cons function in class:marisa::Container
[all...]
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dcontainer.h11 class Container;
14 class Container<std::vector<T> *> { class in namespace:marisa_alpha
16 Container(std::vector<T> *vec) : vec_(vec) {} function in class:marisa_alpha::Container
17 Container(const Container &container) : vec_(container.vec_) {} function in class:marisa_alpha::Container
31 Container &operator=(const Container &query);
35 class Container<T *> { class in namespace:marisa_alpha
37 explicit Container(T *ptr) : ptr_(ptr) {} function in class:marisa_alpha::Container
38 Container(cons function in class:marisa_alpha::Container
[all...]
/external/chromium_org/base/containers/
H A Dstack_container_unittest.cc80 typedef Vector::ContainerType Container; typedef
94 Container::iterator itr = std::find(vect->begin(), vect->end(), dummy_unref);
H A Dscoped_ptr_hash_map.h24 typedef base::hash_map<Key, Value*> Container; typedef in class:base::ScopedPtrHashMap
27 typedef typename Container::iterator iterator;
28 typedef typename Container::const_iterator const_iterator;
150 Container data_;
/external/chromium_org/chrome/browser/extensions/updater/
H A Drequest_queue.h136 typedef std::deque<typename RequestQueue<T>::Request> Container; typedef in class:extensions::RequestQueue::iterator
138 explicit iterator(const typename Container::iterator& it)
141 typename Container::iterator it_;
/external/chromium_org/gpu/command_buffer/client/
H A Dring_buffer.h85 typedef std::deque<Block> Container; typedef in class:gpu::RingBuffer
93 Container blocks_;
H A Dfenced_allocator.h113 typedef std::vector<Block> Container; typedef in class:gpu::FencedAllocator
139 Container blocks_;
/external/clang/test/SemaTemplate/
H A Dms-lookup-template-base-classes.cpp184 class Container : public Base<T> { class in namespace:PR12701
187 bool operator=(const Container<S>& rhs) {
193 Container<A> text_provider;
194 Container<B> text_provider2;
/external/llvm/include/llvm/Analysis/
H A DLoopIterator.h56 LoopBlocksDFS(Loop *Container) : argument
57 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
58 PostBlocks.reserve(Container->getNumBlocks());
/external/chromium_org/ash/wm/
H A Dsession_state_animator.h82 enum Container { enum in class:ash::internal::SessionStateAnimator
112 // |container_mask| is a bitfield of a Container.
/external/clang/tools/libclang/
H A DIndexDecl.cpp28 const ObjCImplDecl *Container) {
29 const ObjCMethodDecl *MD = Container->getMethod(D->getSelector(),
27 hasUserDefined(const ObjCMethodDecl *D, const ObjCImplDecl *Container) argument
/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.cpp32 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface(); local
41 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
44 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
53 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
/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...]

Completed in 736 milliseconds

12