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

1 2 3 4 5 6 7

  /external/clang/test/CodeGenCXX/
eh-aggregated-inits.cpp 24 struct Container {
28 Container() { globId = 1000; }
29 ~Container() { globId = 2000; }
34 Container c1;
38 Container c2(c1);
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-aggregate-copy-destroy.cpp 17 struct Container {
24 Container c1;
29 Container c2(c1);
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubycontainer_extended.swg 7 * the underlying object inside of the container and the iterator
15 * @param Container STL container
16 * @param Type class inside container
19 %define %swig_container_with_equal_operator( Container, Type )
23 Container<Type >::iterator e = $self->end();
24 Container<Type >::iterator i = std::remove( $self->begin(), e, val );
44 * @param Container STL container
45 * @param Type class inside container
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
java_iterator.h 38 template <typename ReturnType, typename Container,
39 typename ContainerBase = Container>
41 public RefCounted< PODIterator<ReturnType, Container> > {
43 explicit PODIterator(Container* container) : container_(container) {}
59 Container* container() { return container_; } function in class:sfntly::PODIterator
62 Container* container_; // Dumb pointer is used to avoid circular ref-counting
65 template <typename ReturnType, typename Container,
86 Container* container() { return container_; } function in class:sfntly::RefIterator
    [all...]
  /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...]
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...]
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'}}
  /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;
CompactConstructorExampleTest.java 41 assertEquals(new Container(), obj);
46 assertEquals(new Container("title"), obj);
50 Container obj = (Container) load("example3.yaml");
51 assertEquals(new Container("title3"), obj);
60 Container container = (Container) obj; local
62 assertEquals(new Container("title4"), obj);
63 assertEquals("title4", container.getTitle())
71 Container container = (Container) obj; local
82 Container container = (Container) obj; local
93 Container container = (Container) obj; local
    [all...]
  /external/clang/include/clang/AST/
AttrIterator.h 47 template <typename SpecificAttr, typename Container = AttrVec>
49 typedef typename Container::const_iterator Iterator;
114 template <typename SpecificAttr, typename Container>
115 inline specific_attr_iterator<SpecificAttr, Container>
116 specific_attr_begin(const Container& container) {
117 return specific_attr_iterator<SpecificAttr, Container>(container.begin());
119 template <typename SpecificAttr, typename Container>
120 inline specific_attr_iterator<SpecificAttr, Container>
    [all...]
  /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/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);
  /art/runtime/base/
stl_util.h 35 // For a range within a container of pointers, calls delete
54 // STLDeleteElements() deletes all the elements in an STL container and clears
55 // the container. This function is suitable for use with a vector, set,
56 // hash_set, or any other STL container which defines sensible begin(), end(),
59 // If container is null, this function is a no-op.
62 // using a container of std::unique_ptr, which ensures that your container's
63 // elements are deleted when the container goes out of scope.
65 void STLDeleteElements(T *container) {
66 if (container != nullptr)
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 44 template <class Container>
45 void quuz(const Container &cont) {
  /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/jetty/src/java/org/eclipse/jetty/jmx/
MBeanContainer.java 38 import org.eclipse.jetty.util.component.Container;
39 import org.eclipse.jetty.util.component.Container.Relationship;
47 * Container class for the MBean instances
49 public class MBeanContainer extends AbstractLifeCycle implements Container.Listener, Dumpable
64 private final WeakHashMap<ObjectName,List<Container.Relationship>> _relations = new WeakHashMap<ObjectName,List<Container.Relationship>>();
99 * @param server instance of MBeanServer for use by container
107 * Retrieve instance of MBeanServer used by container
137 * Implementation of Container.Listener interface
139 * @see org.eclipse.jetty.util.component.Container.Listener#add(org.eclipse.jetty.util.component.Container.Relationship
    [all...]
  /system/security/keystore/
auth_token_table.cpp 32 template <typename Container, typename Predicate>
33 typename Container::iterator find_if(Container& container, Predicate pred) {
34 return std::find_if(container.begin(), container.end(), pred);
37 template <typename Container, typename Predicate>
38 typename Container::iterator remove_if(Container& container, Predicate pred)
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p9-0x.cpp 58 template<template<typename...> class Container> void f(Container<int>); // expected-note {{substitution failure [with Container = X]}}
  /external/clang/test/Layout/
ms-vtordisp-local.cpp 10 struct Container {
212 Container::f();
  /external/libweave/src/
string_utils.h 46 template <class Container>
47 std::string Join(const std::string& delimiter, const Container& strings) {
  /external/llvm/include/llvm/ADT/
iterator_range.h 36 //TODO: Add SFINAE to test that the Container's iterators match the range's
38 template <typename Container>
39 iterator_range(Container &&c)
  /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()

Completed in 416 milliseconds

1 2 3 4 5 6 7