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

1 2 3 4

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
java_iterator.h 38 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_; } function in class:sfntly::PODIterator
62 Container* container_; // Dumb pointer is used to avoid circular ref-counting
65 template <typename ReturnType, typename Container,
86 Container* container() { return container_; } function in class:sfntly::RefIterator
    [all...]
  /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 336 template <typename T> struct Container;
340 typedef Container<int> container_type;
344 struct Container {
349 Container<int> test;
366 template<class Container>
367 operator Container()
369 Container ar;
  /external/clang/include/clang/AST/
AttrIterator.h 47 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>
    [all...]
  /external/lldb/test/lang/objc/forward-decl/
Container.h 5 @interface Container : NSObject {
Makefile 4 DYLIB_OBJC_SOURCES := Container.m
  /external/chromium_org/ash/test/
test_session_state_animator.h 22 // SessionStateAnimator::Container to a single active animation at any one time.
23 // If a new animation is started on a container the existing one will be
54 // |container|.
55 bool IsContainerAnimated(SessionStateAnimator::Container container,
91 SessionStateAnimator::Container container,
104 // The container which is being animated.
105 SessionStateAnimator::Container container; member in struct:ash::test::TestSessionStateAnimator::ActiveAnimation
    [all...]
test_session_state_animator.cc 20 const SessionStateAnimator::Container
86 SessionStateAnimator::Container container,
93 container(container),
164 SessionStateAnimator::Container container,
167 active_animations_.find(container);
270 SessionStateAnimator::Container container,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
AttributeCollection.h 42 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, typename ContainerMemberType
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 30 class Container {
32 virtual ~Container() {}
50 // Sets the container for this view.
51 void set_container(Container* container) { container_ = container; }
83 Container* container_;
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
data_log_impl.h 36 // All container classes need to implement a ToString-function to be
37 // writable to file. Enforce this via the Container interface.
38 class Container {
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/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_util.h 62 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);
68 if (found == container.end())
  /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_org/chrome/browser/ui/views/extensions/
extension_view_views.h 27 // A class that represents the container that this view is in.
29 class Container {
31 virtual ~Container() {}
54 void set_container(Container* container) { container_ = container; }
103 // The container this view is in (not necessarily its direct superview).
104 // Note: the view does not own its container.
105 Container* container_;
  /external/chromium_org/base/containers/
scoped_ptr_hash_map.h 24 typedef base::hash_map<Key, Value*> Container;
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/
request_queue.h 136 typedef std::deque<typename RequestQueue<T>::Request> Container;
138 explicit iterator(const typename Container::iterator& it)
141 typename Container::iterator it_;
  /external/chromium_org/gpu/command_buffer/client/
ring_buffer.h 103 typedef std::deque<Block> Container;
111 Container blocks_;
fenced_allocator.h 117 typedef std::vector<Block> Container;
144 Container blocks_;
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p9-0x.cpp 58 template<template<typename...> class Container> void f(Container<int>); // expected-note {{substitution failure [with Container = X]}}
  /external/chromium_org/third_party/webrtc/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...]
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 56 LoopBlocksDFS(Loop *Container) :
57 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
58 PostBlocks.reserve(Container->getNumBlocks());
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_sync_status.cc 26 // prefix-match to find descendants of |path| in an ordered container.
45 template <typename Container, typename GetKeyHelper>
46 bool ContainsChildOrParent(const Container& paths,
54 typename Container::const_iterator upper =
  /external/eigen/unsupported/test/
FFTW.cpp 65 template<int Container, typename Scalar> struct VectorType;
77 template <int Container, typename T>
82 typedef typename VectorType<Container,Scalar>::type ScalarVector;
83 typedef typename VectorType<Container,Complex>::type ComplexVector;
140 template <int Container, typename T>
144 typedef typename VectorType<Container,Complex>::type ComplexVector;

Completed in 1308 milliseconds

1 2 3 4