HomeSort by relevance Sort by last modified time
    Searched refs:Container (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_view_gtk.h 24 class Container {
26 virtual ~Container() {}
38 // Sets the container for this view.
39 void SetContainer(Container* container) { container_ = container; }
64 // This view's container.
65 Container* container_;
extension_popup_gtk.h 23 public ExtensionViewGtk::Container {
45 // ExtensionViewGtk::Container implementation
  /external/chromium/chrome/browser/ui/views/extensions/
extension_view.h 26 // A class that represents the container that this view is in.
28 class Container {
30 virtual ~Container() {}
56 // Sets the container for this view.
57 void SetContainer(Container* container) { container_ = container; }
101 // The container this view is in (not necessarily its direct superview).
102 // Note: the view does not own its container.
103 Container* container_
    [all...]
extension_popup.h 28 public ExtensionView::Container,
89 // ExtensionView::Container overrides.
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 31 template <class Container>
32 void quuz(const Container &cont) {
  /external/clang/test/SemaCXX/
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'}}
conversion-function.cpp 331 template <typename T> struct Container;
335 typedef Container<int> container_type;
339 struct Container {
344 Container<int> test;
361 template<class Container>
362 operator Container()
364 Container ar;
  /external/chromium/chrome/browser/ui/gtk/infobars/
extension_infobar_gtk.h 21 public ExtensionViewGtk::Container {
30 // ExtensionViewGtk::Container implementation
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 57 LoopBlocksDFS(Loop *Container) :
58 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
59 PostBlocks.reserve(Container->getNumBlocks());
  /external/chromium/chrome/browser/ui/views/infobars/
extension_infobar.h 22 public ExtensionView::Container,
37 // ExtensionView::Container:
  /external/stlport/test/unit/
map_test.cpp 339 typedef map<Key, int, KeyCmp> Container;
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container;
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container;
389 typedef Container::value_type value
    [all...]
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-gnustl-full/unit/
map_test.cpp 339 typedef map<Key, int, KeyCmp> Container;
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container;
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container;
389 typedef Container::value_type value
    [all...]
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/
map_test.cpp 339 typedef map<Key, int, KeyCmp> Container;
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container;
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container;
389 typedef Container::value_type value
    [all...]
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...]
  /external/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...]
  /external/chromium/base/
stack_container_unittest.cc 38 EXPECT_EQ(static_cast<size_t>(stack_size), vect.container().capacity());
40 vect.container().push_back(i);
41 EXPECT_EQ(stack_buffer, &vect.container()[0]);
47 vect.container().push_back(i + stack_size);
48 EXPECT_NE(stack_buffer, &vect.container()[0]);
54 EXPECT_EQ(i, vect.container()[i]);
60 vect.container().resize(stack_size);
61 vect.container().reserve(stack_size * 2);
67 std::vector<int, StackAllocator<int, stack_size> > other(vect.container());
77 typedef Vector::ContainerType Container;
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h     [all...]
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...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 35 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
44 if (ID && ID->getClassInterface() == Container)
47 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
56 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
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...]
  /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/chromium/testing/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 // Applies a function/functor to each element in the container.
278 template <class Container, typename Functor>
279 void ForEach(const Container& c, Functor functor) {
    [all...]
  /external/clang/tools/libclang/
CXCursor.cpp 754 ObjCContainerDecl *Container = dyn_cast<ObjCContainerDecl>(Ctx);
755 if (!Container)
759 if (ObjCMethodDecl *Overridden = Container->getMethod(Method->getSelector(),
768 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
775 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
782 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
    [all...]

Completed in 1736 milliseconds

1 2