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

12

  /external/chromium/testing/gmock/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/stlport/test/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...]
  /frameworks/av/media/libstagefright/include/
FragmentedMP4Parser.h 79 struct Container {
170 Vector<Container> mStack;
  /ndk/tests/device/test-gnustl-full/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...]
  /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/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 698 ContainerInfo Container;
699 getContainerInfo(DC, Container);
706 &Container };
721 CXIdxClientContainer container) {
727 if (container)
728 ContainerMap[DC] = container;
731 // Allow changing the container of a previously seen DeclContext so we
733 if (container)
734 I->second = container;
    [all...]
Indexing.cpp 336 /// and ObjC container.
923 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info);
924 return Container->IndexCtx->getClientContainerForDC(Container->DC);
931 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info);
932 Container->IndexCtx->addContainerInMap(Container->DC, client);
    [all...]
  /frameworks/base/core/java/android/widget/
ZoomButtonsController.java 59 * client access to the zoom controls container, allowing for additional
100 * The container that is added as a window.
110 * the touch down hits the container. It will be reset on the touch up.
128 /** Whether the container has been added to the window manager. */
257 FrameLayout container = new Container(mContext); local
258 container.setLayoutParams(lp);
259 container.setMeasureAllChildren(true);
263 inflater.inflate(com.android.internal.R.layout.zoom_container, container);
265 mControls = (ZoomControls) container.findViewById(com.android.internal.R.id.zoomControls)
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 863 static void CollectOverriddenMethodsRecurse(const ObjCContainerDecl *Container,
867 if (!Container)
874 Category = dyn_cast<ObjCCategoryDecl>(Container)) {
879 Overridden = Container->getMethod(Method->getSelector(),
898 Overridden = Container->getMethod(Method->getSelector(),
908 if (const ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container))
    [all...]
  /external/clang/lib/Parse/
Parser.cpp 547 SmallVectorImpl<TemplateIdAnnotation *> &Container;
550 &Container)
551 : Container(Container) {}
555 Container.begin(), E = Container.end();
558 Container.clear();
917 // Must temporarily exit the objective-c container scope for
918 // parsing c constructs and re-enter objc container scope
    [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/clang/lib/Sema/
SemaCodeComplete.cpp 42 /// \brief A container of code-completion results.
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 6439 static Container container; member in namespace:test140
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /prebuilts/tools/common/m2/internal/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /external/jdiff/
xerces.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 4279 milliseconds

12