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

1 2 3 4

  /external/clang/test/CodeGenCXX/
eh-aggregated-inits-unwind.cpp 25 struct Container {
30 Container() { id = 1000; }
31 ~Container() { id = 2000; }
36 Container c1;
38 // CHECK: %{{.+}} = getelementptr inbounds %struct.Container, %struct.Container* %{{.+}}, i32 0, i32 1
39 // CHECK-NOT: %{{.+}} = bitcast %struct.Container* %{{.+}} to %struct.ImplicitCopy*
40 Container c2(c1);
eh-aggregated-inits.cpp 24 struct Container {
28 Container() { globId = 1000; }
29 ~Container() { globId = 2000; }
34 Container c1;
38 Container c2(c1);
eh-aggregate-copy-destroy.cpp 17 struct Container {
24 Container c1;
29 Container c2(c1);
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/webrtc/webrtc/system_wrappers/include/
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/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'}}
warn-range-loop-analysis.cpp 12 struct Container {
63 Container<int> int_non_ref_container;
64 Container<int&> int_container;
65 Container<Bar&> bar_container;
68 // expected-warning@-1 {{loop variable 'x' is always a copy because the range of type 'Container<int>' does not return a reference}}
81 Container<int> A;
115 Container<int&> B;
146 Container<Bar> C;
170 Container<Bar&> D;
194 Container<Foo> E
    [all...]
conversion-function.cpp 334 template <typename T> struct Container;
338 typedef Container<int> container_type;
342 struct Container {
347 Container<int> test;
364 template<class Container>
365 operator Container()
367 Container ar;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Container.java 18 public class Container {
23 public Container() {
27 public Container(String title) {
33 if (obj instanceof Container) {
34 Container c = (Container) obj;
54 return "Container=" + title;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
metadata.h 57 // indicate an arena pointer and bit 0 == 1 to indicate a UFS+Arena-container
67 delete PtrValue<Container>();
74 return PtrValue<Container>()->unknown_fields_;
82 return &PtrValue<Container>()->unknown_fields_;
90 return PtrValue<Container>()->arena_;
104 // different states (direct arena pointer vs. container with UFS) so we
123 // ptr_ is a Container*.
140 struct Container {
147 Container* container = Arena::Create<Container>(my_arena) local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/component/
Container.java 29 /** Container.
46 public class Container
48 private static final Logger LOG = Log.getLogger(Container.class);
49 private final CopyOnWriteArrayList<Container.Listener> _listeners=new CopyOnWriteArrayList<Container.Listener>();
51 public void addEventListener(Container.Listener listener)
56 public void removeEventListener(Container.Listener listener)
206 LOG.debug("Container "+parent+" + "+child+" as "+relationship);
224 LOG.debug("Container "+parent+" - "+child+" as "+relationship);
234 /** A Container event
    [all...]
  /external/libchrome/base/containers/
scoped_ptr_hash_map.h 26 typedef base::hash_map<Key, typename ScopedPtr::element_type*> Container;
29 typedef typename Container::key_type key_type;
30 typedef typename Container::mapped_type mapped_type;
31 typedef typename Container::value_type value_type;
32 typedef typename Container::iterator iterator;
33 typedef typename Container::const_iterator const_iterator;
167 Container data_;
  /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/Layout/
ms-vtordisp-local.cpp 10 struct Container {
212 Container::f();
  /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;
  /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...]
  /external/autotest/site_utils/
lxc.py 6 1. Download base container from given GS location, setup the base container.
7 2. Create a snapshot as test container from base container.
8 3. Mount a directory in drone to the test container.
9 4. Run a command in the container and return the output.
10 5. Cleanup, e.g., destroy the container.
12 This tool can also be used to set up a base container for test. For example,
13 python lxc.py -s -p /tmp/container
14 This command will download and setup base container in directory /tmp/container
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 329 /// and ObjC container.
874 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info);
875 return Container->IndexCtx->getClientContainerForDC(Container->DC);
882 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info);
883 Container->IndexCtx->addContainerInMap(Container->DC, client);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcher.java 47 private final Container mUserSwitcherContainer;
64 mUserSwitcherContainer = (Container) userSwitcher.inflate();
300 public static class Container extends FrameLayout {
304 public Container(Context context, AttributeSet attrs) {

Completed in 824 milliseconds

1 2 3 4