HomeSort by relevance Sort by last modified time
    Searched defs:insert (Results 126 - 150 of 1132) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
unordered_set.h 108 this->insert(__l.begin(), __l.end());
112 using _Base::insert;
115 insert(value_type&& __v) function in class:__unordered_set
119 insert(const_iterator, value_type&& __v) function in class:__unordered_set
120 { return insert(std::move(__v)).first; }
193 this->insert(__l.begin(), __l.end());
197 using _Base::insert;
200 insert(value_type&& __v) function in class:__unordered_multiset
204 insert(const_iterator, value_type&& __v) function in class:__unordered_multiset
205 { return insert(std::move(__v));
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
unordered_set.h 108 this->insert(__l.begin(), __l.end());
112 using _Base::insert;
115 insert(value_type&& __v) function in class:__unordered_set
119 insert(const_iterator, value_type&& __v) function in class:__unordered_set
120 { return insert(std::move(__v)).first; }
193 this->insert(__l.begin(), __l.end());
197 using _Base::insert;
200 insert(value_type&& __v) function in class:__unordered_multiset
204 insert(const_iterator, value_type&& __v) function in class:__unordered_multiset
205 { return insert(std::move(__v));
    [all...]
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/ActionBarCompat-ShareActionProviderSample/src/main/java/com/example/android/actionbarcompat/shareactionprovider/content/
AssetProvider.java 56 public Uri insert(Uri uri, ContentValues values) { method in class:AssetProvider
57 // Do not support insert requests.
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/ActionBarCompat-ShareActionProviderSample/src/main/java/com/example/android/actionbarcompat/shareactionprovider/content/
AssetProvider.java 56 public Uri insert(Uri uri, ContentValues values) { method in class:AssetProvider
57 // Do not support insert requests.
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 109 public Uri insert(Uri uri, ContentValues values) { method in class:WeatherDataProvider
  /development/samples/browseable/ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/content/
AssetProvider.java 56 public Uri insert(Uri uri, ContentValues values) { method in class:AssetProvider
57 // Do not support insert requests.
  /external/chromium/base/memory/
scoped_vector.h 61 iterator insert(iterator position, T* x) { function in class:ScopedVector
62 return v.insert(position, x);
67 void insert(iterator position, InputIterator first, InputIterator last) { function in class:ScopedVector
68 v.insert(position, first, last);
  /external/chromium_org/components/url_matcher/
url_matcher_unittest.cc 95 matching_patterns.insert(0);
99 matching_patterns.insert(1);
414 conditions.insert(m1);
415 conditions.insert(m2);
434 conditions.insert(m1);
435 conditions.insert(m2);
443 matching_patterns.insert(m1.string_pattern()->id());
446 matching_patterns.insert(m2.string_pattern()->id());
481 regex_conditions.insert(r1);
485 matching_patterns.insert(r1.string_pattern()->id())
639 URLMatcherConditionSet::Vector insert; local
657 URLMatcherConditionSet::Vector insert; local
675 URLMatcherConditionSet::Vector insert; local
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
avltree.py 151 def insert(self, key, value): member in class:AVLTree
152 """ T.insert(key, value) <==> T[key] = value, insert key, value into Tree """
173 # Insert a new node at the bottom of the tree
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
containers.py 116 def insert(self, key, value): member in class:RepeatedScalarFieldContainer
117 """Inserts the item at the specified position. Similar to list.insert()."""
119 self._values.insert(key, value)
  /external/chromium_org/third_party/re2/util/
sparse_set.h 140 void insert(int i) { function in class:re2::SparseSet
  /external/chromium_org/third_party/skia/src/core/
SkTSort.h 123 T insert = *next; local
125 while (left < hole && lessThan(insert, *(hole - 1))) {
129 *hole = insert;
SkTileGrid.cpp 37 void SkTileGrid::insert(void* data, const SkIRect& bounds, bool) { function in class:SkTileGrid
67 // The inset is to counteract the outset that was applied in 'insert'
  /external/chromium_org/third_party/skia/src/gpu/
GrTHashTable.h 44 bool insert(const Key&, T*);
86 // we should insert it at 0
110 // now return the ~ of where we should insert it
152 bool GrTHashTable<T, Key, kHashBits>::insert(const Key& key, T* elem) { function in class:GrTHashTable
160 *fSorted.insert(index) = elem;
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 64 void insert(const value_type &Val) { function in class:clang::ContinuousRangeMap
69 "Must insert keys in order.");
80 Rep.insert(I, Val);
122 void insert(const value_type &Val) { function in class:clang::ContinuousRangeMap::Builder
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 65 virtual void insert(SourceLocation loc, StringRef text) { function in class:__anon15908::RewritesReceiver
160 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert,
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 6 void insert(const Key &, const T &);
12 void QMap<Key, T>::insert(const Key &, const T &avalue) function in class:QMap
35 eventForId.insert(ptr->wd, *ptr);
  /external/llvm/include/llvm/ADT/
MapVector.h 79 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
93 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::MapVector
95 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
TinyPtrVector.h 248 iterator insert(iterator I, const EltTy &Elt) { function in namespace:llvm
255 assert(!Val.isNull() && "Null value with non-end insert iterator.");
263 return Val.template get<VecTy*>()->insert(I, Elt);
267 iterator insert(iterator I, ItTy From, ItTy To) { function in namespace:llvm
286 return Val.template get<VecTy*>()->insert(begin() + Offset, From, To);
  /external/markdown/markdown/
odict.py 90 def insert(self, index, key, value): member in class:OrderedDict
91 """Insert the key, value pair before the item with the given index."""
97 self.keyOrder.insert(index, key)
142 """ Insert by key location. """
145 self.insert(i, key, value)
156 self.keyOrder.insert(i, key)
161 self.keyOrder.insert(n, key)
  /external/protobuf/python/google/protobuf/internal/
containers.py 105 def insert(self, key, value): member in class:RepeatedScalarFieldContainer
106 """Inserts the item at the specified position. Similar to list.insert()."""
108 self._values.insert(key, value)
  /external/regex-re2/util/
sparse_set.h 140 void insert(int i) { function in class:re2::SparseSet
  /external/skia/src/core/
SkTSort.h 123 T insert = *next; local
125 while (left < hole && lessThan(insert, *(hole - 1))) {
129 *hole = insert;
SkTileGrid.cpp 37 void SkTileGrid::insert(void* data, const SkIRect& bounds, bool) { function in class:SkTileGrid
67 // The inset is to counteract the outset that was applied in 'insert'
  /external/skia/src/gpu/
GrTHashTable.h 44 bool insert(const Key&, T*);
86 // we should insert it at 0
110 // now return the ~ of where we should insert it
152 bool GrTHashTable<T, Key, kHashBits>::insert(const Key& key, T* elem) { function in class:GrTHashTable
160 *fSorted.insert(index) = elem;

Completed in 434 milliseconds

1 2 3 4 56 7 8 91011>>