HomeSort by relevance Sort by last modified time
    Searched defs:push_back (Results 101 - 125 of 332) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/include/clang/Analysis/Support/
BumpVector.h 154 void push_back(const_reference Elt, BumpVectorContext &C) { function in class:clang::BumpVector
  /external/clang/test/SemaCXX/
for-range-examples.cpp 64 void push_back(T t) { storage[size++] = t; } function in class:map_range::vector
133 chars.push_back('a');
134 chars.push_back('b');
135 chars.push_back('c');
143 pairs.push_back(T(42, 12.9));
144 pairs.push_back(T(6, 4.2));
145 pairs.push_back(T(9, 1.1));
  /external/libbrillo/brillo/glib/
object.h 377 void push_back(T x) { function in class:brillo::glib::ScopedPtrArray
  /external/libcxx/test/support/
nasty_containers.hpp 89 void push_back(const value_type& x) { v_.push_back(x); } function in class:nasty_vector
91 void push_back(value_type&& x) { v_.push_back(std::forward<value_type&&>(x)); } function in class:nasty_vector
207 void push_back(const value_type& x) { l_.push_back(x); } function in class:nasty_list
209 void push_back(value_type&& x) { l_.push_back(std::forward<value_type&&>(x)); } function in class:nasty_list
210 void push_front(value_type&& x) { l_.push_back(std::forward<value_type&&>(x)); }
  /external/skia/include/private/
SkTArray.h 178 T& push_back() { function
186 T& push_back(const T& t) { function
194 T& push_back(T&& t) { function
  /external/skia/src/core/
SkCoverageDelta.h 59 SK_ALWAYS_INLINE void addDelta(int x, int y, SkFixed delta) { this->push_back(y, {x, delta}); }
94 SK_ALWAYS_INLINE void push_back(int y, const SkCoverageDelta& delta) { function in class:SkCoverageDeltaList
  /external/skia/src/gpu/
GrAllocator.h 38 // This force us to allocate a new block on push_back().
41 fBlocks.push_back() = initialBlock;
51 void* push_back() { function in class:GrAllocator
54 fBlocks.push_back() = sk_malloc_throw(fBlockSize);
91 // This force us to allocate a new block on push_back().
206 fBlocks.push_back() = initialBlock;
247 T& push_back() { function in class:GrTAllocator
248 void* item = fAllocator.push_back();
254 T& push_back(const T& t) { function in class:GrTAllocator
255 void* item = fAllocator.push_back();
    [all...]
  /external/skqp/include/private/
SkTArray.h 178 T& push_back() { function
186 T& push_back(const T& t) { function
194 T& push_back(T&& t) { function
  /external/skqp/src/core/
SkCoverageDelta.h 59 SK_ALWAYS_INLINE void addDelta(int x, int y, SkFixed delta) { this->push_back(y, {x, delta}); }
94 SK_ALWAYS_INLINE void push_back(int y, const SkCoverageDelta& delta) { function in class:SkCoverageDeltaList
  /external/skqp/src/gpu/
GrAllocator.h 38 // This force us to allocate a new block on push_back().
41 fBlocks.push_back() = initialBlock;
51 void* push_back() { function in class:GrAllocator
54 fBlocks.push_back() = sk_malloc_throw(fBlockSize);
91 // This force us to allocate a new block on push_back().
206 fBlocks.push_back() = initialBlock;
247 T& push_back() { function in class:GrTAllocator
248 void* item = fAllocator.push_back();
254 T& push_back(const T& t) { function in class:GrTAllocator
255 void* item = fAllocator.push_back();
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
simple_ilist.h 30 /// The API for adding nodes include \a push_front(), \a push_back(), and \a
143 void push_back(reference Node) { insert(end(), Node); } function in class:llvm::simple_ilist
172 push_back(*clone(V));
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitcodeHeader.h 185 void push_back(NaClBitcodeHeaderField *Field) { function in class:llvm::NaClBitcodeHeader
186 Fields.push_back(Field);
  /external/v8/src/zone/
zone-chunk-list.h 66 void push_back(const T& item);
303 void ZoneChunkList<T>::push_back(const T& item) { function in class:v8::internal::ZoneChunkList::ZoneChunkList
  /external/webrtc/webrtc/system_wrappers/include/
scoped_vector.h 87 void push_back(T* elem) { v_.push_back(elem); } function in class:webrtc::ScopedVector
  /hardware/interfaces/keymaster/3.0/vts/functional/
authorization_set.h 186 void push_back(const KeyParameter& param) { data_.push_back(param); } function in class:android::hardware::keymaster::V3_0::AuthorizationSet
187 void push_back(KeyParameter&& param) { data_.push_back(std::move(param)); } function in class:android::hardware::keymaster::V3_0::AuthorizationSet
189 void push_back(const AuthorizationSet& set) { function in class:android::hardware::keymaster::V3_0::AuthorizationSet
191 push_back(entry);
195 void push_back(AuthorizationSet&& set) { function in class:android::hardware::keymaster::V3_0::AuthorizationSet
201 void push_back(TypedTag<TagType::BYTES, tag> ttag, const uint8_t* data, size_t data_length) { function in class:android::hardware::keymaster::V3_0::AuthorizationSet
204 push_back(ttag, std::move(new_blob));
212 template <typename TypedTagT, typename... Value> void push_back(TypedTagT tag, Value&&... val) function in class:android::hardware::keymaster::V3_0::AuthorizationSet
216 template <typename Iterator> void push_back(Iterator begin, Iterator end) { function in class:android::hardware::keymaster::V3_0::AuthorizationSet
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTVector.h 157 void push_back(const_reference Elt, const ASTContext &C) { function in class:clang::ASTVector
218 push_back(Elt, C);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Support/
BumpVector.h 154 void push_back(const_reference Elt, BumpVectorContext &C) { function in class:clang::BumpVector
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
AllocatorList.h 202 void push_back(T &&V) { insert(end(), std::move(V)); } function in class:llvm::AllocatorList
204 void push_back(const T &V) { insert(end(), V); } function in class:llvm::AllocatorList
simple_ilist.h 30 /// The API for adding nodes include \a push_front(), \a push_back(), and \a
143 void push_back(reference Node) { insert(end(), Node); } function in class:llvm::simple_ilist
172 push_back(*clone(V));
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
ASTVector.h 157 void push_back(const_reference Elt, const ASTContext &C) { function in class:clang::ASTVector
218 push_back(Elt, C);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/Support/
BumpVector.h 154 void push_back(const_reference Elt, BumpVectorContext &C) { function in class:clang::BumpVector
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
ASTVector.h 157 void push_back(const_reference Elt, const ASTContext &C) { function in class:clang::ASTVector
218 push_back(Elt, C);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/Support/
BumpVector.h 154 void push_back(const_reference Elt, BumpVectorContext &C) { function in class:clang::BumpVector
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
ASTVector.h 157 void push_back(const_reference Elt, const ASTContext &C) { function in class:clang::ASTVector
218 push_back(Elt, C);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/Support/
BumpVector.h 154 void push_back(const_reference Elt, BumpVectorContext &C) { function in class:clang::BumpVector

Completed in 863 milliseconds

1 2 3 45 6 7 8 91011>>