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

1 2 3

  /external/clang/test/SemaCXX/
PR11358.cpp 6 struct container { struct in namespace:test1
13 typedef container<T> Container;
15 Container::iterator i = c.begin(); // expected-error{{missing 'typename'}}
17 Container c;
39 struct container { struct in namespace:test3
45 typedef container<T> Container;
47 Container::iterator const i; // expected-error{{missing 'typename'}}
49 Container c
    [all...]
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/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/SemaTemplate/
ms-lookup-template-base-classes.cpp 160 class Container : public Base<T> {
163 bool operator=(const Container<S>& rhs) {
169 Container<A> text_provider;
170 Container<B> text_provider2;
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
GeneralUtil.h 54 TI_HANDLE Container;
GeneralUtil.c 95 List->ElementList[index].Container = os_memoryAlloc(hOs,ContainerSize);
96 if(List->ElementList[index].Container == NULL)
104 os_memoryFree(hOs,List->ElementList[index].Container,ContainerSize);
139 os_memoryFree(List->hOs,List->ElementList[index].Container,List->ContainerSize);
173 os_memoryZero(List->hOs,List->ElementList[index].Container,List->ContainerSize);
174 return((TI_HANDLE)List->ElementList[index].Container);
191 TI_STATUS List_FreeElement(TI_HANDLE hList,TI_HANDLE Container)
201 if(List->ElementList[index].Container == Container)
237 return (List->ElementList[index].Container);
    [all...]
GeneralUtilApi.h 66 TI_STATUS List_FreeElement(TI_HANDLE hList,TI_HANDLE Container);
  /external/webrtc/src/system_wrappers/interface/
data_log_impl.h 38 // All container classes need to implement a ToString-function to be
39 // writable to file. Enforce this via the Container interface.
40 class Container {
42 virtual ~Container() {}
48 class ValueContainer : public Container {
64 class MultiValueContainer : public Container {
108 // Inserts a Container into a table with name table_name at the column
113 const Container* value_container);
  /external/clang/include/clang/AST/
Attr.h 153 template <typename SpecificAttr, typename Container = AttrVec>
155 typedef typename Container::const_iterator Iterator;
219 template <typename SpecificAttr, typename Container>
220 inline specific_attr_iterator<SpecificAttr, Container>
221 specific_attr_begin(const Container& container) {
222 return specific_attr_iterator<SpecificAttr, Container>(container.begin());
224 template <typename SpecificAttr, typename Container>
225 inline specific_attr_iterator<SpecificAttr, Container>
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 31 template <class Container>
32 void quuz(const Container &cont) {
  /external/chromium/chrome/browser/ui/gtk/infobars/
extension_infobar_gtk.h 21 public ExtensionViewGtk::Container {
30 // ExtensionViewGtk::Container implementation
  /external/chromium/chrome/browser/ui/views/infobars/
extension_infobar.h 22 public ExtensionView::Container,
37 // ExtensionView::Container:
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 57 LoopBlocksDFS(Loop *Container) :
58 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
59 PostBlocks.reserve(Container->getNumBlocks());
  /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...]
  /external/webrtc/src/system_wrappers/source/
data_log_no_op.cc 67 const Container* /*value_container*/) {
data_log.cc 38 // Inserts a Container into the cell of the column specified with
42 const Container* value_container);
51 typedef std::map<std::string, const Container*> CellMap;
76 // Inserts a Container into the cell of the column specified with
80 const Container* value_container);
122 const Container* value_container) {
134 const Container* container = cells_[column_name]; local
135 if (container == NULL) {
139 container->ToString(value_string)
    [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...]
  /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...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 292 /// For a container of pointers, deletes the pointers and then clears the
293 /// container.
294 template<typename Container>
295 void DeleteContainerPointers(Container &C) {
296 for (typename Container::iterator I = C.begin(), E = C.end(); I != E; ++I)
301 /// In a container of pairs (usually a map) whose second element is a pointer,
302 /// deletes the second elements and then clears the container.
303 template<typename Container>
304 void DeleteContainerSeconds(Container &C) {
305 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...]

Completed in 1481 milliseconds

1 2 3