Searched refs:Container (Results 1 - 25 of 89) sorted by relevance

1234

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h38 template <typename ReturnType, typename Container,
39 typename ContainerBase = Container>
41 public RefCounted< PODIterator<ReturnType, Container> > {
43 explicit PODIterator(Container* container) : container_(container) {}
59 Container* container() { return container_; }
62 Container* container_; // Dumb pointer is used to avoid circular ref-counting
65 template <typename ReturnType, typename Container,
66 typename ContainerBase = Container>
68 public RefCounted< RefIterator<ReturnType, Container> > {
70 explicit RefIterator(Container* containe
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h38 template <typename ReturnType, typename Container,
39 typename ContainerBase = Container>
41 public RefCounted< PODIterator<ReturnType, Container> > {
43 explicit PODIterator(Container* container) : container_(container) {}
59 Container* container() { return container_; }
62 Container* container_; // Dumb pointer is used to avoid circular ref-counting
65 template <typename ReturnType, typename Container,
66 typename ContainerBase = Container>
68 public RefCounted< RefIterator<ReturnType, Container> > {
70 explicit RefIterator(Container* containe
[all...]
/external/clang/test/SemaCXX/
H A DPR11358.cpp13 typedef container<T> Container; typedef in struct:test1::Test
15 Container::iterator i = c.begin(); // expected-error{{missing 'typename'}}
17 Container c;
45 typedef container<T> Container; typedef in struct:test3::Test
47 Container::iterator const i; // expected-error{{missing 'typename'}}
49 Container c;
H A Dusing-decl-templates.cpp72 typedef long Container; typedef in class:PR10883::Base
78 using Base<T>::Container;
80 void foo(const Container& current); // expected-error {{unknown type name 'Container'}}
H A Dconversion-function.cpp336 template <typename T> struct Container;
340 typedef Container<int> container_type;
344 struct Container { struct in namespace:PR8065
349 Container<int> test;
366 template<class Container>
367 operator Container()
369 Container ar;
/external/clang/include/clang/AST/
H A DAttrIterator.h47 template <typename SpecificAttr, typename Container = AttrVec>
49 typedef typename Container::const_iterator Iterator;
114 template <typename SpecificAttr, typename Container>
115 inline specific_attr_iterator<SpecificAttr, Container>
116 specific_attr_begin(const Container& container) {
117 return specific_attr_iterator<SpecificAttr, Container>(container.begin());
119 template <typename SpecificAttr, typename Container>
120 inline specific_attr_iterator<SpecificAttr, Container>
121 specific_attr_end(const Container& container) {
122 return specific_attr_iterator<SpecificAttr, Container>(containe
[all...]
/external/lldb/test/lang/objc/forward-decl/
H A DContainer.h5 @interface Container : NSObject {
H A DMakefile4 DYLIB_OBJC_SOURCES := Container.m
/external/chromium_org/ash/test/
H A Dtest_session_state_animator.h22 // SessionStateAnimator::Container to a single active animation at any one time.
55 bool IsContainerAnimated(SessionStateAnimator::Container container,
91 SessionStateAnimator::Container container,
105 SessionStateAnimator::Container container;
121 typedef std::map<SessionStateAnimator::Container, AnimationList>
136 void AddAnimation(SessionStateAnimator::Container container,
145 void AbortAnimation(SessionStateAnimator::Container container);
148 static const SessionStateAnimator::Container kAllContainers[];
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttributeCollection.h42 template <typename Container, typename ContainerMemberType = Container>
45 typedef typename Container::ValueType ValueType;
48 AttributeCollectionGeneric(Container& attributes)
127 template <typename Container, typename ContainerMemberType>
128 inline typename AttributeCollectionGeneric<Container, ContainerMemberType>::iterator AttributeCollectionGeneric<Container, ContainerMemberType>::find(const AtomicString& name, bool shouldIgnoreCase) const
134 template <typename Container, typename ContainerMemberType>
135 inline size_t AttributeCollectionGeneric<Container, ContainerMemberType>::findIndex(const QualifiedName& name, bool shouldIgnoreCase) const
148 template <typename Container, typenam
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
H A Dextension_view_mac.h30 class Container { class in class:ExtensionViewMac
32 virtual ~Container() {}
51 void set_container(Container* container) { container_ = container; }
83 Container* container_;
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Ddata_log_impl.h37 // writable to file. Enforce this via the Container interface.
38 class Container { class in namespace:webrtc
40 virtual ~Container() {}
46 class ValueContainer : public Container {
62 class MultiValueContainer : public Container {
106 // Inserts a Container into a table with name table_name at the column
111 const Container* value_container);
/external/webrtc/src/system_wrappers/interface/
H A Ddata_log_impl.h39 // writable to file. Enforce this via the Container interface.
40 class Container { class in namespace:webrtc
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/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_util.h62 template <typename Container>
63 const typename Container::mapped_type& LookUpMap(
64 const Container& container,
65 const typename Container::key_type& key,
66 const typename Container::mapped_type& default_value) {
67 typename Container::const_iterator found = container.find(key);
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3.cpp31 template <class Container>
32 void quuz(const Container &cont) {
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp9-0x.cpp58 template<template<typename...> class Container> void f(Container<int>); // expected-note {{substitution failure [with Container = X]}}
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_view_views.h29 class Container { class in class:ExtensionViewViews
31 virtual ~Container() {}
54 void set_container(Container* container) { container_ = container; }
105 Container* container_;
/external/chromium_org/base/containers/
H A Dscoped_ptr_hash_map.h24 typedef base::hash_map<Key, Value*> Container; typedef in class:base::ScopedPtrHashMap
27 typedef typename Container::key_type key_type;
28 typedef typename Container::mapped_type mapped_type;
29 typedef typename Container::value_type value_type;
30 typedef typename Container::iterator iterator;
31 typedef typename Container::const_iterator const_iterator;
150 Container data_;
/external/chromium_org/chrome/browser/extensions/updater/
H A Drequest_queue.h136 typedef std::deque<typename RequestQueue<T>::Request> Container; typedef in class:extensions::RequestQueue::iterator
138 explicit iterator(const typename Container::iterator& it)
141 typename Container::iterator it_;
/external/chromium_org/gpu/command_buffer/client/
H A Dring_buffer.h103 typedef std::deque<Block> Container; typedef in class:gpu::RingBuffer
111 Container blocks_;
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log_no_op.cc67 const Container* /*value_container*/) {
H A Ddata_log.cc38 // 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];
198 const Container* value_container) {
404 const Container* value_container) {
/external/llvm/include/llvm/Analysis/
H A DLoopIterator.h56 LoopBlocksDFS(Loop *Container) : argument
57 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
58 PostBlocks.reserve(Container->getNumBlocks());
/external/stlport/test/unit/
H A Dmap_test.cpp339 typedef map<Key, int, KeyCmp> Container; typedef
340 typedef Container::value_type value;
341 Container cont;
356 Container const& ccont = cont;
364 typedef map<Key*, int, KeyCmpPtr> Container; typedef
365 typedef Container::value_type value;
366 Container cont;
381 Container const& ccont = cont;
388 typedef multimap<Key, int, KeyCmp> Container; typedef
389 typedef Container
413 typedef multimap<Key const volatile*, int, KeyCmpPtr> Container; typedef
[all...]
/external/webrtc/src/system_wrappers/source/
H A Ddata_log_no_op.cc67 const Container* /*value_container*/) {

Completed in 1046 milliseconds

1234