HomeSort by relevance Sort by last modified time
    Searched defs:Container (Results 1 - 25 of 47) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 16 class Container(Structure):
24 # create a container, which holds a pointer to the pvalues array.
25 c = Container()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 16 class Container(Structure):
24 # create a container, which holds a pointer to the pvalues array.
25 c = Container()
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 29 class Container {
31 virtual ~Container() {}
54 // Sets the container for this view.
55 void set_container(Container* container) { container_ = container; }
93 Container* container_;
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_view_views.h 25 // A class that represents the container that this view is in.
27 class Container {
29 virtual ~Container() {}
53 void set_container(Container* container) { container_ = container; }
102 // The container this view is in (not necessarily its direct superview).
103 // Note: the view does not own its container.
104 Container* container_;
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
data_log_impl.h 36 // All container classes need to implement a ToString-function to be
37 // writable to file. Enforce this via the Container interface.
38 class Container {
40 virtual ~Container() {}
46 class ValueContainer : public Container {
62 class MultiValueContainer : public Container {
106 // Inserts a Container into a table with name table_name at the column
111 const Container* value_container);
  /external/webrtc/src/system_wrappers/interface/
data_log_impl.h 38 // All container classes need to implement a ToString-function to be
39 // writable to file. Enforce this via the Container interface.
40 class Container {
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/clang/test/SemaCXX/
PR11358.cpp 6 struct container { struct in namespace:test1
13 typedef container<T> Container;
15 Container::iterator i = c.begin(); // expected-error{{missing 'typename'}}
17 Container c;
39 struct container { struct in namespace:test3
45 typedef container<T> Container;
47 Container::iterator const i; // expected-error{{missing 'typename'}}
49 Container c
    [all...]
using-decl-templates.cpp 72 typedef long Container;
78 using Base<T>::Container;
80 void foo(const Container& current); // expected-error {{unknown type name 'Container'}}
conversion-function.cpp 336 template <typename T> struct Container;
340 typedef Container<int> container_type;
344 struct Container {
349 Container<int> test;
366 template<class Container>
367 operator Container()
369 Container ar;
  /external/chromium_org/chrome/browser/extensions/updater/
request_queue.h 136 typedef std::deque<typename RequestQueue<T>::Request> Container;
138 explicit iterator(const typename Container::iterator& it)
141 typename Container::iterator it_;
  /external/chromium_org/base/containers/
stack_container_unittest.cc 41 EXPECT_EQ(static_cast<size_t>(stack_size), vect.container().capacity());
43 vect.container().push_back(i);
44 EXPECT_EQ(stack_buffer, &vect.container()[0]);
50 vect.container().push_back(i + stack_size);
51 EXPECT_NE(stack_buffer, &vect.container()[0]);
57 EXPECT_EQ(i, vect.container()[i]);
63 vect.container().resize(stack_size);
64 vect.container().reserve(stack_size * 2);
70 std::vector<int, StackAllocator<int, stack_size> > other(vect.container());
80 typedef Vector::ContainerType Container;
    [all...]
scoped_ptr_hash_map.h 24 typedef base::hash_map<Key, Value*> Container;
27 typedef typename Container::key_type key_type;
28 typedef typename Container::mapped_type mapped_type;
29 typedef typename Container::value_type value_type;
30 typedef typename Container::iterator iterator;
31 typedef typename Container::const_iterator const_iterator;
150 Container data_;
  /external/chromium_org/gpu/command_buffer/client/
ring_buffer.h 103 typedef std::deque<Block> Container;
111 Container blocks_;
fenced_allocator.h 117 typedef std::vector<Block> Container;
144 Container blocks_;
  /external/chromium_org/ash/wm/
session_state_animator.h 81 enum Container {
111 // |container_mask| is a bitfield of a Container.
162 // Applies animation |type| whith specified |speed| to the root container.
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 33 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
42 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
45 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
54 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
  /external/clang/test/SemaTemplate/
ms-lookup-template-base-classes.cpp 184 class Container : public Base<T> {
187 bool operator=(const Container<S>& rhs) {
193 Container<A> text_provider;
194 Container<B> text_provider2;
  /external/stlport/test/unit/
map_test.cpp 339 typedef map<Key, int, KeyCmp> Container;
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container;
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container;
389 typedef Container::value_type value
    [all...]
unordered_test.cpp 389 //We are going to add at least 20 values, to get a stable hash container while doing that
406 //Now we put some more elements until hash container is resized:
418 // Now we remove some elements until hash container is resized:
452 cout << "Hash container dump: Nb elems: " << hum.size() << ", Nb buckets: " << hum.bucket_count() << "\n";
572 typedef unordered_set<Key, KeyHash, KeyEqual> Container;
573 Container cont;
586 Container const& ccont = cont;
593 typedef unordered_set<Key*, KeyHashPtr, KeyEqualPtr> Container;
594 Container cont;
607 Container const& ccont = cont
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
map_test.cpp 339 typedef map<Key, int, KeyCmp> Container;
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container;
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container;
389 typedef Container::value_type value
    [all...]
unordered_test.cpp 389 //We are going to add at least 20 values, to get a stable hash container while doing that
406 //Now we put some more elements until hash container is resized:
418 // Now we remove some elements until hash container is resized:
452 cout << "Hash container dump: Nb elems: " << hum.size() << ", Nb buckets: " << hum.bucket_count() << "\n";
572 typedef unordered_set<Key, KeyHash, KeyEqual> Container;
573 Container cont;
586 Container const& ccont = cont;
593 typedef unordered_set<Key*, KeyHashPtr, KeyEqualPtr> Container;
594 Container cont;
607 Container const& ccont = cont
    [all...]
  /ndk/tests/device/test-stlport/unit/
map_test.cpp 339 typedef map<Key, int, KeyCmp> Container;
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container;
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container;
389 typedef Container::value_type value
    [all...]
unordered_test.cpp 389 //We are going to add at least 20 values, to get a stable hash container while doing that
406 //Now we put some more elements until hash container is resized:
418 // Now we remove some elements until hash container is resized:
452 cout << "Hash container dump: Nb elems: " << hum.size() << ", Nb buckets: " << hum.bucket_count() << "\n";
572 typedef unordered_set<Key, KeyHash, KeyEqual> Container;
573 Container cont;
586 Container const& ccont = cont;
593 typedef unordered_set<Key*, KeyHashPtr, KeyEqualPtr> Container;
594 Container cont;
607 Container const& ccont = cont
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_abcoll.py 15 "Sized", "Container", "Callable",
106 class Container:
115 if cls is Container:
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
264 """A mutable set is a finite, iterable container.
346 class Mapping(Sized, Iterable, Container):
348 """A Mapping is a generic container for associating key/value
473 """A MutableMapping is a generic container for associating
566 class Sequence(Sized, Iterable, Container)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_abcoll.py 15 "Sized", "Container", "Callable",
106 class Container:
115 if cls is Container:
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
264 """A mutable set is a finite, iterable container.
346 class Mapping(Sized, Iterable, Container):
348 """A Mapping is a generic container for associating key/value
473 """A MutableMapping is a generic container for associating
566 class Sequence(Sized, Iterable, Container)
    [all...]

Completed in 642 milliseconds

1 2