HomeSort by relevance Sort by last modified time
    Searched refs:Container (Results 201 - 225 of 527) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/unord.map.modifiers/
insert_const_lvalue.pass.cpp 25 template <class Container>
28 typedef Container M;
  /external/autotest/site_utils/lxc/
base_image.py 15 from autotest_lib.site_utils.lxc.container import Container
19 """A class that manages a base container.
21 Instantiating this class will cause it to search for a base container under
24 container.
26 The actual base container can be obtained by calling the get() method.
28 Calling cleanup() will delete the base container along with all of its
37 If a valid base container already exists on this machine, the BaseImage
39 install a base container.
41 @param container_path: The LXC path for the base container
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
STLExtras.h 282 /// For a container of pointers, deletes the pointers and then clears the
283 /// container.
284 template<typename Container>
285 void DeleteContainerPointers(Container &C) {
286 for (typename Container::iterator I = C.begin(), E = C.end(); I != E; ++I)
291 /// In a container of pairs (usually a map) whose second element is a pointer,
292 /// deletes the second elements and then clears the container.
293 template<typename Container>
294 void DeleteContainerSeconds(Container &C) {
295 for (typename Container::iterator I = C.begin(), E = C.end(); I != E; ++I
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
ConstructorTest.java 25 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Container;
55 @Container({@Repeated(1)})
59 @Container({@Repeated(2), @Repeated(3)})
76 Class<? extends Annotation> container = Container.class; local
77 checkDeclaredAnnotation(c, 4, container, null);
78 checkDeclaredAnnotation(c, 3, container, "@Container({@Repeated(2), @Repeated(3)})");
79 checkDeclaredAnnotation(c, 2, container, "@Container({@Repeated(1)})")
108 Class<? extends Annotation> container = Container.class; local
136 Class<? extends Annotation> container = Container.class; local
    [all...]
AnnotatedElementTestSupport.java 68 public @interface Container {
72 @Repeatable(Container.class)
264 // mixed usage of "Container" and "Repeated" - the "Container" annotations will be
303 } else if (annotation instanceof Container) {
304 Container container = (Container) annotation; local
305 String[] repeatedValues = createAnnotationTestStrings(container.value());
ExecutableParameterTest.java 31 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Container;
74 @Repeated(1) @Container({@Repeated(2), @Repeated(3)}) String p0) {}
76 void multipleAnnotationExplicitSingle(@Container({@Repeated(1)}) String p0) {}
127 "@Repeated(1)", "@Container({@Repeated(2), @Repeated(3)})");
130 "@Container({@Repeated(1)})");
133 "@Container({@Repeated(1), @Repeated(2)})");
177 @Repeated(1) @Container({@Repeated(2), @Repeated(3)}) Long p0) {}
179 public AnnotatedConstructorClass(@Container({@Repeated(1)}) Double p0) {}
213 "@Repeated(1)", "@Container({@Repeated(2), @Repeated(3)})");
216 "@Container({@Repeated(1)})")
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/lib/
ir.idl 71 interface Container;
87 readonly attribute Container defined_in;
101 in Container new_container,
172 interface Container : IRObject
174 The Container interface is used to form a containment hierarchy
175 in the Interface Repository. A Container can contain any number
327 interface Repository : Container
356 interface ModuleDef : Container, Contained
411 interface StructDef : TypedefDef, Container
420 interface UnionDef : TypedefDef, Container
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/lib/
ir.idl 71 interface Container;
87 readonly attribute Container defined_in;
101 in Container new_container,
172 interface Container : IRObject
174 The Container interface is used to form a containment hierarchy
175 in the Interface Repository. A Container can contain any number
327 interface Repository : Container
356 interface ModuleDef : Container, Contained
411 interface StructDef : TypedefDef, Container
420 interface UnionDef : TypedefDef, Container
    [all...]
  /prebuilts/jdk/jdk9/darwin-x86/include/
ir.idl 71 interface Container;
87 readonly attribute Container defined_in;
101 in Container new_container,
172 interface Container : IRObject
174 The Container interface is used to form a containment hierarchy
175 in the Interface Repository. A Container can contain any number
327 interface Repository : Container
356 interface ModuleDef : Container, Contained
411 interface StructDef : TypedefDef, Container
420 interface UnionDef : TypedefDef, Container
    [all...]
  /prebuilts/jdk/jdk9/linux-x86/include/
ir.idl 71 interface Container;
87 readonly attribute Container defined_in;
101 in Container new_container,
172 interface Container : IRObject
174 The Container interface is used to form a containment hierarchy
175 in the Interface Repository. A Container can contain any number
327 interface Repository : Container
356 interface ModuleDef : Container, Contained
411 interface StructDef : TypedefDef, Container
420 interface UnionDef : TypedefDef, Container
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
data_log.cc 37 // Inserts a Container into the cell of the column specified with
41 const Container* value_container);
50 typedef std::map<std::string, const Container*> CellMap;
75 // Inserts a Container into the cell of the column specified with
79 const Container* value_container);
121 const Container* value_container) {
133 const Container* container = cells_[column_name]; local
134 if (container == NULL) {
138 container->ToString(value_string)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Parse/
RAIIObjectsForParser.h 449 SmallVectorImpl<TemplateIdAnnotation *> &Container;
453 SmallVectorImpl<TemplateIdAnnotation *> &Container)
454 : Container(Container) {}
458 Container.begin(),
459 E = Container.end();
462 Container.clear();

Completed in 1240 milliseconds

1 2 3 4 5 6 7 891011>>