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

1 23 4 5 6 7

  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 33 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
42 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
45 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
54 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
  /external/clang/test/SemaTemplate/
ms-lookup-template-base-classes.cpp 184 class Container : public Base<T> {
187 bool operator=(const Container<S>& rhs) {
193 Container<A> text_provider;
194 Container<B> text_provider2;
  /external/jetty/src/java/org/eclipse/jetty/server/
Server.java 40 import org.eclipse.jetty.util.component.Container;
73 private final Container _container=new Container();
129 * @return Returns the container.
131 public Container getContainer()
506 * The bean will be added to the servers {@link Container}
  /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/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h 275 // STL container utilities.
277 // Returns the number of elements in the given container that satisfy
279 template <class Container, typename Predicate>
280 inline int CountIf(const Container& c, Predicate predicate) {
284 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
291 // Applies a function/functor to each element in the container.
292 template <class Container, typename Functor>
293 void ForEach(const Container& c, Functor functor) {
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 277 // STL container utilities.
279 // Returns the number of elements in the given container that satisfy
281 template <class Container, typename Predicate>
282 inline int CountIf(const Container& c, Predicate predicate) {
286 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
293 // Applies a function/functor to each element in the container.
294 template <class Container, typename Functor>
295 void ForEach(const Container& c, Functor functor) {
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h 271 // STL container utilities.
273 // Returns the number of elements in the given container that satisfy
275 template <class Container, typename Predicate>
276 inline int CountIf(const Container& c, Predicate predicate) {
280 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
287 // Applies a function/functor to each element in the container.
288 template <class Container, typename Functor>
289 void ForEach(const Container& c, Functor functor) {
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 268 // STL container utilities.
270 // Returns the number of elements in the given container that satisfy
272 template <class Container, typename Predicate>
273 inline int CountIf(const Container& c, Predicate predicate) {
277 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
284 // Applies a function/functor to each element in the container.
285 template <class Container, typename Functor>
286 void ForEach(const Container& c, Functor functor) {
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-internal-inl.h 277 // STL container utilities.
279 // Returns the number of elements in the given container that satisfy
281 template <class Container, typename Predicate>
282 inline int CountIf(const Container& c, Predicate predicate) {
286 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
293 // Applies a function/functor to each element in the container.
294 template <class Container, typename Functor>
295 void ForEach(const Container& c, Functor functor) {
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-internal-inl.h 277 // STL container utilities.
279 // Returns the number of elements in the given container that satisfy
281 template <class Container, typename Predicate>
282 inline int CountIf(const Container& c, Predicate predicate) {
286 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
293 // Applies a function/functor to each element in the container.
294 template <class Container, typename Functor>
295 void ForEach(const Container& c, Functor functor) {
    [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...]
  /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/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 556 template<class Container, class Compare>
557 void InternalSort(Container *v, uptr size, Compare comp) {
592 template<class Container, class Value, class Compare>
593 uptr InternalBinarySearch(const Container &v, uptr first, uptr last,
  /external/protobuf/gtest/src/
gtest-internal-inl.h 264 // STL container utilities.
266 // Returns the number of elements in the given container that satisfy
268 template <class Container, typename Predicate>
269 inline int CountIf(const Container& c, Predicate predicate) {
273 // Applies a function/functor to each element in the container.
274 template <class Container, typename Functor>
275 void ForEach(const Container& c, Functor functor) {
    [all...]
  /external/clang/tools/libclang/
IndexDecl.cpp 28 const ObjCImplDecl *Container) {
29 const ObjCMethodDecl *MD = Container->getMethod(D->getSelector(),
341 return; // Wait for the objc container.
Indexing.cpp 329 /// and ObjC container.
874 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info);
875 return Container->IndexCtx->getClientContainerForDC(Container->DC);
882 const ContainerInfo *Container = static_cast<const ContainerInfo *>(info);
883 Container->IndexCtx->addContainerInMap(Container->DC, client);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundleImpl.java 20 protected ICUResourceBundleImpl(ICUResourceBundleImpl container, String key) {
21 super(container, key);
67 ResourceBinary(ICUResourceBundleImpl container, String key, int resource) {
68 super(container, key);
83 ResourceInt(ICUResourceBundleImpl container, String key, int resource) {
84 super(container, key);
100 ResourceString(ICUResourceBundleImpl container, String key, int resource) {
101 super(container, key);
119 ResourceIntVector(ICUResourceBundleImpl container, String key, int resource) {
120 super(container, key)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleImpl.java 19 protected ICUResourceBundleImpl(ICUResourceBundleImpl container, String key) {
20 super(container, key);
66 ResourceBinary(ICUResourceBundleImpl container, String key, int resource) {
67 super(container, key);
82 ResourceInt(ICUResourceBundleImpl container, String key, int resource) {
83 super(container, key);
99 ResourceString(ICUResourceBundleImpl container, String key, int resource) {
100 super(container, key);
118 ResourceIntVector(ICUResourceBundleImpl container, String key, int resource) {
119 super(container, key)
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 42 /// \brief A container of code-completion results.
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 137 // These are used to make Voids usable as containers in container-generic code.
189 * scalar types, and a vector or matrix of intervals for container types.
204 //! Create container from elementwise singleton values.
368 //! T is the container type itself, I is the same type with interval elements.
491 //! This is needed for container-generic operations.
493 template <typename T, int Size> struct ContainerOf { typedef Vector<T, Size> Container; };
495 template <typename T> struct ContainerOf<T, 1> { typedef T Container; };
496 template <int Size> struct ContainerOf<Void, Size> { typedef Void Container; };
866 * \brief Shared pointer to an expression of a container type.
868 * Container types (i.e. vectors and matrices) support the subscriptio
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 158 // These are used to make Voids usable as containers in container-generic code.
210 * scalar types, and a vector or matrix of intervals for container types.
225 //! Create container from elementwise singleton values.
389 //! T is the container type itself, I is the same type with interval elements.
512 //! This is needed for container-generic operations.
514 template <typename T, int Size> struct ContainerOf { typedef Vector<T, Size> Container; };
516 template <typename T> struct ContainerOf<T, 1> { typedef T Container; };
517 template <int Size> struct ContainerOf<Void, Size> { typedef Void Container; };
887 * \brief Shared pointer to an expression of a container type.
889 * Container types (i.e. vectors and matrices) support the subscriptio
    [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...]

Completed in 703 milliseconds

1 23 4 5 6 7