Searched defs:insert (Results 26 - 50 of 300) sorted by relevance

1234567891011>>

/external/qemu/android/utils/
H A Drefset.c52 void** insert = NULL; local
58 return insert ? insert : pnode;
60 if (!insert)
61 insert = pnode;
/external/skia/src/core/
H A DSkPathHeap.cpp66 *fLookupTable.insert(index) = LookupEntry(path);
72 int SkPathHeap::insert(const SkPath& path) { function in class:SkPathHeap
/external/stlport/test/unit/
H A Dslist_test.cpp39 CPPUNIT_TEST(insert);
47 void insert();
151 void SlistTest::insert() function in class:SlistTest
156 //insert
160 sl.insert(sl.begin(), 5);
165 //sl.insert(sl.before_begin(), array, array + 5);
167 sl.insert(sl.begin(), array, array + 5);
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DSourceBufferList.cpp59 void SourceBufferList::insert(size_t position, SourceBuffer* buffer) function in class:blink::SourceBufferList
61 m_list.insert(position, buffer);
/external/chromium_org/third_party/bintrees/bintrees/
H A Davltree.py151 def insert(self, key, value): member in class:AVLTree
152 """ T.insert(key, value) <==> T[key] = value, insert key, value into Tree """
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dcontainers.py116 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/
H A Dsparse_set.h141 void insert(int i) { function in class:re2::SparseSet
/external/chromium_org/third_party/skia/experimental/Intersection/AddTestOutput/
H A Dmain.cpp72 char* insert = strstr(inData.begin(), "\n\n\n"); local
73 if (!insert) {
77 insert += 1; // include first blank line
86 insert - inData.begin())) {
100 if (!replace(argv[0], dir, "SimplifyNew_Test.cpp", newMarker, newMarker2, insert + 2,
101 inLen - (insert - inData.begin()) - 2)) {
/external/chromium_org/third_party/skia/src/animator/
H A DSkTypedArray.cpp153 int32_t* SkDS32Array::insert(U16CPU index, U16CPU count, const int32_t* src) function in class:SkDS32Array
/external/chromium_org/third_party/skia/src/core/
H A DSkTMultiMap.h38 void insert(const Key& key, T* value) { function in class:SkTMultiMap
/external/chromium_org/v8/test/cctest/
H A Dtest-dictionary.cc119 void insert(int entry, int key, int value) { function in class:__anon17401::ObjectHashTableTest
145 t->insert(i, i * i, i);
158 t->insert(i, i * i, i);
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 bool insert(const CFGBlock *Block) { function in class:clang::PostOrderCFGView::CFGBlockSet
51 // Note that insert() is called by po_iterator, which doesn't check to
/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp42 /// An insert of a path
44 /// - If the node is empty, insert 'p' into its storage and abort.
46 /// 's' of 'p2', put a new child into the map at 's' an insert the rest of
48 /// - Insert a new child for the last segment of 'p' and insert the rest of
51 /// An insert operation is linear in the number of a path's segments.
52 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { function in class:clang::tooling::FileMatchTrieNode
73 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1);
170 void FileMatchTrie::insert(StringRef NewPath) { function in class:clang::tooling::FileMatchTrie
171 Root->insert(NewPath);
/external/deqp/framework/delibs/decpp/
H A DdeSTLUtil.hpp110 bool insert (M& map, const typename M::key_type& key, const typename M::mapped_type& value) function in namespace:de
113 std::pair<typename M::iterator,bool> ret = map.insert(entry);
/external/elfutils/0.153/libdwfl/
H A Dsegment.c69 insert (Dwfl *dwfl, size_t i, GElf_Addr start, GElf_Addr end, int segndx) function
188 if (unlikely (insert (dwfl, 0, start, end, -1)))
196 if (unlikely (insert (dwfl, idx + 1, start, end,
206 if (unlikely (insert (dwfl, idx + 1, start, end, -1)))
216 if (unlikely (insert (dwfl, idx + 1,
336 if (unlikely (insert (dwfl, i, start, end, ndx)))
/external/lldb/examples/scripting/
H A Ddictionary.c52 insert (tree_node *root, char *word) function
65 insert (root->left, word);
78 insert (root->right, word);
115 insert (*dictionary, new_word);
/external/markdown/markdown/
H A Dodict.py90 def insert(self, index, key, value): member in class:OrderedDict
97 self.keyOrder.insert(index, key)
145 self.insert(i, key, value)
156 self.keyOrder.insert(i, key)
161 self.keyOrder.insert(n, key)
/external/oprofile/libpp/
H A Dsample_container.cpp66 void sample_container::insert(symbol_entry const * symbol, function in class:sample_container
140 samples_by_loc.insert(&cit->second);
/external/protobuf/python/google/protobuf/internal/
H A Dcontainers.py105 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/qemu/android/base/containers/
H A DStringVector.cpp94 void StringVector::insert(size_t index, const String& str) { function in class:android::base::StringVector
106 void StringVector::insert(size_t index, const StringView& view) { function in class:android::base::StringVector
/external/regex-re2/util/
H A Dsparse_set.h140 void insert(int i) { function in class:re2::SparseSet
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSpannableStringBuilder.java36 public Editable insert(int where, CharSequence text) { method in class:ShadowSpannableStringBuilder
37 builder.insert(where, text.toString());
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentProviderTest.java34 public Uri insert(Uri arg0, ContentValues arg1) { method in class:ContentProviderTest.TestContentProvider
/external/skia/experimental/Intersection/AddTestOutput/
H A Dmain.cpp72 char* insert = strstr(inData.begin(), "\n\n\n"); local
73 if (!insert) {
77 insert += 1; // include first blank line
86 insert - inData.begin())) {
100 if (!replace(argv[0], dir, "SimplifyNew_Test.cpp", newMarker, newMarker2, insert + 2,
101 inLen - (insert - inData.begin()) - 2)) {
/external/skia/src/animator/
H A DSkTypedArray.cpp153 int32_t* SkDS32Array::insert(U16CPU index, U16CPU count, const int32_t* src) function in class:SkDS32Array

Completed in 8109 milliseconds

1234567891011>>