/external/llvm/include/llvm/ADT/ |
H A D | StringSet.h | 29 insert(X); 32 std::pair<typename base::iterator, bool> insert(StringRef Key) { function in class:llvm::StringSet 34 return base::insert(std::make_pair(Key, '\0'));
|
H A D | SmallSet.h | 63 /// insert - Insert an element into the set if it isn't already there. 70 std::pair<NoneType, bool> insert(const T &V) { function in class:llvm::SmallSet 72 return std::make_pair(None, Set.insert(V).second); 84 Set.insert(Vector.back()); 87 Set.insert(V); 92 void insert(IterT I, IterT E) { function in class:llvm::SmallSet 94 insert(*I);
|
H A D | UniqueVector.h | 40 /// insert - Append entry to the vector if it doesn't already exist. Returns 42 unsigned insert(const T &Entry) { function in class:llvm::UniqueVector
|
/external/eigen/Eigen/src/StlSupport/ |
H A D | StdDeque.h | 104 using deque_base::insert; 105 iterator insert(const_iterator position, const value_type& x) function in class:std::deque 106 { return deque_base::insert(position,x); } 107 void insert(const_iterator position, size_type new_size, const value_type& x) function in class:std::deque 108 { deque_base::insert(position, new_size, x); } 116 deque_base::insert(deque_base::end(), new_size - deque_base::size(), x); 126 deque_base::insert(deque_base::end(), new_size - deque_base::size(), x);
|
H A D | StdList.h | 94 list_base::insert(list_base::end(), new_size - list_base::size(), x); 103 using list_base::insert; 104 iterator insert(const_iterator position, const value_type& x) function in class:std::list 105 { return list_base::insert(position,x); } 106 void insert(const_iterator position, size_type new_size, const value_type& x) function in class:std::list 107 { list_base::insert(position, new_size, x); }
|
H A D | StdVector.h | 91 using vector_base::insert; 92 iterator insert(const_iterator position, const value_type& x) function in class:std::vector 93 { return vector_base::insert(position,x); } 94 void insert(const_iterator position, size_type new_size, const value_type& x) function in class:std::vector 95 { vector_base::insert(position, new_size, x); } 110 vector_base::insert(vector_base::end(), new_size - vector_base::size(), x); 120 vector_base::insert(vector_base::end(), new_size - vector_base::size(), x);
|
/external/icu/icu4c/source/layout/ |
H A D | MultipleSubstSubtables.cpp | 79 le_int32 insert = 0, direction = 1; local 82 insert = glyphCount - 1; 89 newGlyphs[insert] = LE_SET_GLYPH(glyph, substitute); 90 insert += direction;
|
H A D | LEInsertionList.cpp | 54 LEGlyphID *LEInsertionList::insert(le_int32 position, le_int32 count, LEErrorCode &success) function in class:LEInsertionList 72 // insert on end of list... 77 // insert on front of list...
|
/external/llvm/include/llvm/MC/ |
H A D | MCObjectStreamer.h | 65 void insert(MCFragment *F) { function in class:llvm::MCObjectStreamer 68 CurSection->getFragmentList().insert(CurInsertionPoint, F);
|
/external/marisa-trie/lib/marisa/ |
H A D | container.h | 19 void insert(std::size_t, const T &value) const { function in class:marisa::Container 40 void insert(std::size_t i, const T &value) { function in class:marisa::Container
|
H A D | query.h | 15 void insert(std::string *str) const { function in class:marisa::Query 16 str->insert(0, ptr_, length_); 41 void insert(std::string *str) const { function in class:marisa::CQuery 42 str->insert(0, str_);
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
H A D | container.h | 19 void insert(std::size_t, const T &value) const { function in class:marisa_alpha::Container 40 void insert(std::size_t i, const T &value) { function in class:marisa_alpha::Container
|
H A D | query.h | 15 void insert(std::string *str) const { function in class:marisa_alpha::Query 16 str->insert(0, ptr_, length_); 41 void insert(std::string *str) const { function in class:marisa_alpha::CQuery 42 str->insert(0, str_);
|
/external/clang/include/clang/ARCMigrate/ |
H A D | ARCMT.h | 118 virtual void insert(SourceLocation loc, StringRef text) { } function in class:clang::arcmt::MigrationProcess::RewriteListener
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
H A D | MmsFileProvider.java | 48 public Uri insert(Uri uri, ContentValues values) { method in class:MmsFileProvider
|
/external/vogar/src/vogar/ |
H A D | Md5Cache.java | 145 public void insert(String key, File content) { method in class:Md5Cache
|
/external/clang/include/clang/Analysis/Analyses/ |
H A D | PostOrderCFGView.h | 50 std::pair<llvm::NoneType, 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 D | FileMatchTrie.cpp | 44 /// An insert of a path 46 /// - If the node is empty, insert 'p' into its storage and abort. 48 /// 's' of 'p2', put a new child into the map at 's' an insert the rest of 50 /// - Insert a new child for the last segment of 'p' and insert the rest of 53 /// An insert operation is linear in the number of a path's segments. 54 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { function in class:clang::tooling::FileMatchTrieNode 75 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1); 174 void FileMatchTrie::insert(StringRef NewPath) { function in class:FileMatchTrie 175 Root->insert(NewPath);
|
/external/deqp/framework/delibs/decpp/ |
H A D | deSTLUtil.hpp | 110 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/libdwfl/ |
H A D | segment.c | 50 insert (Dwfl *dwfl, size_t i, GElf_Addr start, GElf_Addr end, int segndx) function 170 if (unlikely (insert (dwfl, 0, start, end, -1))) 178 if (unlikely (insert (dwfl, idx + 1, start, end, 188 if (unlikely (insert (dwfl, idx + 1, start, end, -1))) 198 if (unlikely (insert (dwfl, idx + 1, 319 if (unlikely (insert (dwfl, i, start, end, ndx)))
|
/external/lldb/examples/scripting/ |
H A D | dictionary.c | 52 insert (tree_node *root, char *word) function 65 insert (root->left, word); 78 insert (root->right, word); 115 insert (*dictionary, new_word);
|
/external/llvm/lib/Transforms/ObjCARC/ |
H A D | BlotMapVector.h | 51 Map.insert(std::make_pair(Arg, size_t(0))); 61 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &InsertPair) { function in class:llvm::BlotMapVector 63 Map.insert(std::make_pair(InsertPair.first, size_t(0)));
|
/external/markdown/markdown/ |
H A D | odict.py | 90 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/nanopb-c/generator/google/protobuf/internal/ |
H A D | 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/proguard/src/proguard/util/ |
H A D | ArrayUtil.java | 464 public static byte[] insert(byte[] array, int size, int index, byte element) method in class:ArrayUtil 580 public static short[] insert(short[] array, int size, int index, short element) method in class:ArrayUtil 696 public static int[] insert(int[] array, int size, int index, int element) method in class:ArrayUtil 812 public static long[] insert(long[] array, int size, int index, long element) method in class:ArrayUtil 928 public static Object[] insert(Object[] array, int size, int index, Object element) method in class:ArrayUtil
|