Searched defs:insert (Results 1 - 25 of 185) sorted by relevance

12345678

/external/llvm/include/llvm/ADT/
H A DStringSet.h27 std::pair<typename base::iterator, bool> insert(StringRef Key) { function in class:llvm::StringSet
29 return base::insert(std::make_pair(Key, '\0'));
H A DSmallSet.h62 /// insert - Insert an element into the set if it isn't already there.
69 std::pair<NoneType, bool> insert(const T &V) { function in class:llvm::SmallSet
71 return std::make_pair(None, Set.insert(V).second);
83 Set.insert(Vector.back());
86 Set.insert(V);
91 void insert(IterT I, IterT E) { function in class:llvm::SmallSet
93 insert(*I);
H A DUniqueVector.h39 /// insert - Append entry to the vector if it doesn't already exist. Returns
41 unsigned insert(const T &Entry) { function in class:llvm::UniqueVector
/external/eigen/Eigen/src/StlSupport/
H A DStdDeque.h104 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 DStdList.h94 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 DStdVector.h91 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 DMultipleSubstSubtables.cpp79 le_int32 insert = 0, direction = 1; local
82 insert = glyphCount - 1;
89 newGlyphs[insert] = LE_SET_GLYPH(glyph, substitute);
90 insert += direction;
H A DLEInsertionList.cpp54 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/marisa-trie/lib/marisa/
H A Dcontainer.h19 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 Dquery.h15 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 Dcontainer.h19 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 Dquery.h15 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/vogar/src/vogar/
H A DMd5Cache.java115 public void insert(String key, File content) { method in class:Md5Cache
/external/clang/include/clang/ARCMigrate/
H A DARCMT.h112 virtual void insert(SourceLocation loc, StringRef text) { } function in class:clang::arcmt::MigrationProcess::RewriteListener
/external/llvm/include/llvm/MC/
H A DMCObjectStreamer.h73 void insert(MCFragment *F) { function in class:llvm::MCObjectStreamer
75 CurSectionData->getFragmentList().insert(CurInsertionPoint, F);
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 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 DFileMatchTrie.cpp44 /// 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 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/src/libdwfl/
H A Dsegment.c50 insert (Dwfl *dwfl, size_t i, GElf_Addr start, GElf_Addr end, int segndx) function
169 if (unlikely (insert (dwfl, 0, start, end, -1)))
177 if (unlikely (insert (dwfl, idx + 1, start, end,
187 if (unlikely (insert (dwfl, idx + 1, start, end, -1)))
197 if (unlikely (insert (dwfl, idx + 1,
318 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/llvm/lib/Transforms/ObjCARC/
H A DBlotMapVector.h51 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 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/nanopb-c/generator/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/proguard/src/proguard/util/
H A DArrayUtil.java464 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
/external/protobuf/python/google/protobuf/internal/
H A Dcontainers.py115 def insert(self, key, value): member in class:RepeatedScalarFieldContainer
116 """Inserts the item at the specified position. Similar to list.insert()."""
117 self._values.insert(key, self._type_checker.CheckValue(value))

Completed in 641 milliseconds

12345678