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

12 3 4

  /ndk/tests/device/test-stlport/unit/
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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /external/clang/tools/libclang/
IndexingContext.cpp 699 ContainerInfo Container;
700 getContainerInfo(DC, Container);
707 &Container };
722 CXIdxClientContainer container) {
728 if (container)
729 ContainerMap[DC] = container;
732 // Allow changing the container of a previously seen DeclContext so we
734 if (container)
735 I->second = container;
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-generated-matchers.h 315 template <typename Container>
316 operator Matcher<Container>() const {
317 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
329 return MakeMatcher(new ElementsAreMatcherImpl<Container>(&matcher, 1));
343 template <typename Container>
344 operator Matcher<Container>() const {
345 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
354 return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 2));
370 template <typename Container>
371 operator Matcher<Container>() const
    [all...]
gmock-matchers.h     [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...]
  /frameworks/base/core/java/android/widget/
ZoomButtonsController.java 58 * client access to the zoom controls container, allowing for additional
99 * The container that is added as a window.
109 * the touch down hits the container. It will be reset on the touch up.
127 /** Whether the container has been added to the window manager. */
256 FrameLayout container = new Container(mContext); local
257 container.setLayoutParams(lp);
258 container.setMeasureAllChildren(true);
262 inflater.inflate(com.android.internal.R.layout.zoom_container, container);
264 mControls = (ZoomControls) container.findViewById(com.android.internal.R.id.zoomControls)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTraverse.h 135 // Container is a minimal interface used to store results when traversing
137 template <class T> class Container {
139 // Allocate a new container with a capacity for n elements.
140 Container(CopyReducerBase &S, unsigned N) : Elems(S.Arena, N) {}
142 // Push a new element onto the container.
162 // A visitor "container" is a single bool, which accumulates success.
163 template <class T> class Container {
165 Container(VisitReducerBase &S, unsigned N) : Success(true) {}
226 R_SExpr reduceSCFG(SCFG &Orig, Container<BasicBlock *> Bbs) {
229 R_BasicBlock reduceBasicBlock(BasicBlock &Orig, Container<R_SExpr> &As
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp     [all...]
  /external/clang/lib/Parse/
Parser.cpp 45 SmallVectorImpl<TemplateIdAnnotation *> &Container;
49 SmallVectorImpl<TemplateIdAnnotation *> &Container)
50 : Container(Container) {}
54 Container.begin(),
55 E = Container.end();
58 Container.clear();
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_collections.py 13 from collections import Sized, Container, Callable
396 self.assertNotIsInstance(x, Container)
397 self.assertFalse(issubclass(type(x), Container), repr(type(x)))
403 self.assertIsInstance(x, Container)
404 self.assertTrue(issubclass(type(x), Container), repr(type(x)))
405 self.validate_abstract_methods(Container, '__contains__')
406 self.validate_isinstance(Container, '__contains__')
429 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
436 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_collections.py 13 from collections import Sized, Container, Callable
396 self.assertNotIsInstance(x, Container)
397 self.assertFalse(issubclass(type(x), Container), repr(type(x)))
403 self.assertIsInstance(x, Container)
404 self.assertTrue(issubclass(type(x), Container), repr(type(x)))
405 self.validate_abstract_methods(Container, '__contains__')
406 self.validate_isinstance(Container, '__contains__')
429 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
436 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_collections.py 13 from collections import Sized, Container, Callable
396 self.assertNotIsInstance(x, Container)
397 self.assertFalse(issubclass(type(x), Container), repr(type(x)))
403 self.assertIsInstance(x, Container)
404 self.assertTrue(issubclass(type(x), Container), repr(type(x)))
405 self.validate_abstract_methods(Container, '__contains__')
406 self.validate_isinstance(Container, '__contains__')
429 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
436 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_collections.py 13 from collections import Sized, Container, Callable
396 self.assertNotIsInstance(x, Container)
397 self.assertFalse(issubclass(type(x), Container), repr(type(x)))
403 self.assertIsInstance(x, Container)
404 self.assertTrue(issubclass(type(x), Container), repr(type(x)))
405 self.validate_abstract_methods(Container, '__contains__')
406 self.validate_isinstance(Container, '__contains__')
429 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
436 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundleReader.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleReader.java     [all...]
  /external/llvm/lib/Analysis/
CFLAliasAnalysis.cpp 892 bool Container = isa<ConstantVector>(Val) || isa<ConstantArray>(Val) ||
898 isa<GlobalValue>(Val) || isa<ConstantExpr>(Val) || Container;
    [all...]
  /external/webrtc/talk/app/webrtc/
statstypes.h 386 // This class wraps an STL container and provides a limited set of
393 typedef std::list<StatsReport*> Container;
394 typedef Container::iterator iterator;
395 typedef Container::const_iterator const_iterator;
412 Container list_;
  /external/gmock/include/gmock/
gmock-matchers.h     [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 42 /// \brief A container of code-completion results.
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
TypeTokenTest.java     [all...]
  /external/guice/extensions/struts2/lib/
jetty-util-6.1.0.jar 

Completed in 1204 milliseconds

12 3 4