/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/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
ContainerTest.java | 9 import com.badlogic.gdx.scenes.scene2d.ui.Container; 34 root.add(new Container(label("center"))); 35 root.add(new Container(label("top")).top()); 36 root.add(new Container(label("right")).right()); 37 root.add(new Container(label("bottom")).bottom()); 38 root.add(new Container(label("left")).left()); 40 root.add(new Container(label("fill")).fill()); 41 root.add(new Container(label("fillX")).fillX()); 42 root.add(new Container(label("fillY")).fillY()); 43 root.add(new Container(label("fill 75%")).fill(0.75f, 0.75f)) [all...] |
/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...] |
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
Container.java | 17 public class Container<T extends Actor> extends WidgetGroup { 29 /** Creates a container with no actor. */ 30 public Container () { 35 public Container (T actor) { 72 /** Sets the background drawable and adjusts the container's padding to match the background. 78 /** Sets the background drawable and, if adjustPadding is true, sets the container's padding to 95 public Container<T> background (Drawable background) { 155 if (actor == this) throw new IllegalArgumentException("actor cannot be the Container."); 167 /** @deprecated Container may have only a single child. 170 throw new UnsupportedOperationException("Use Container#setActor.") [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/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/ |
CustomCardLayout.java | 5 import java.awt.Container; 12 public Dimension preferredLayoutSize (Container parent) { 17 public <K> K getCurrentCard(Container container){ 18 Component c[] = container.getComponents();
|
/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/libgdx/tests/gdx-tests-lwjgl/src/com/badlogic/gdx/tests/lwjgl/ |
LwjglCanvasTest.java | 20 import java.awt.Container;
34 Container container = getContentPane(); local 37 container.add(canvas.getCanvas(), BorderLayout.CENTER);
|
/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...] |
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/ |
Theme.java | 6 import java.awt.Container; 58 if (cmp instanceof Container) { 59 Container c = (Container) cmp;
|
/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]}}
|