| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/ |
| insert_fn_imps.hpp | 48 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/rb_tree_map_/ |
| insert_fn_imps.hpp | 46 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/splay_tree_/ |
| insert_fn_imps.hpp | 46 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/ |
| insert_fn_imps.hpp | 48 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/rb_tree_map_/ |
| insert_fn_imps.hpp | 46 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/splay_tree_/ |
| insert_fn_imps.hpp | 46 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| StringSet.h | 29 insert(str); 33 std::pair<typename Base::iterator, bool> insert(StringRef key) { function in class:llvm::StringSet 38 void insert(const InputIt &begin, const InputIt &end) { function in class:llvm::StringSet 40 insert(*it); 45 insert(const StringMapEntry<ValueTy> &mapEntry) { function in class:llvm::StringSet 46 return insert(mapEntry.getKey());
|
| UniqueVector.h | 38 /// insert - Append entry to the vector if it doesn't already exist. Returns 40 unsigned insert(const T &Entry) { function in class:llvm::UniqueVector 50 // Insert in vector.
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| TrigramIndex.cpp | 28 void TrigramIndex::insert(const std::string &Regex) { function in class:TrigramIndex 73 Was.insert(Tri);
|
| /src/external/apache2/llvm/dist/clang/include/clang/ARCMigrate/ |
| ARCMT.h | 117 virtual void insert(SourceLocation loc, StringRef text) { } function in class:clang::arcmt::MigrationProcess::RewriteListener
|
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| PostOrderCFGView.h | 51 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { function in class:clang::PostOrderCFGView::CFGBlockSet 52 // Note that insert() is called by po_iterator, which doesn't check to
|
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| ContinuousRangeMap.h | 66 void insert(const value_type &Val) { function in class:clang::ContinuousRangeMap 71 "Must insert keys in order."); 82 Rep.insert(I, Val); 134 void insert(const value_type &Val) { function in class:clang::ContinuousRangeMap::Builder
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| FileMatchTrie.cpp | 49 /// An insert of a path 51 /// - If the node is empty, insert 'p' into its storage and abort. 53 /// 's' of 'p2', put a new child into the map at 's' an insert the rest of 55 /// - Insert a new child for the last segment of 'p' and insert the rest of 58 /// An insert operation is linear in the number of a path's segments. 59 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { function in class:clang::tooling::FileMatchTrieNode 80 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1); 192 void FileMatchTrie::insert(StringRef NewPath) { function in class:FileMatchTrie 193 Root->insert(NewPath) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| GISelWorkList.h | 45 // everytime we resize, only insert to the smallvector (typically during the 48 // without finalizing. Note that unlike insert, we won't check for duplicates 75 void insert(MachineInstr *I) { function in class:llvm::GISelWorkList
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| SymbolRemappingReader.h | 112 Key insert(StringRef FunctionName) { function in class:llvm::SymbolRemappingReader 121 /// returned by \c insert may be returned instead.
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/ |
| Range.cpp | 20 void AddressRanges::insert(AddressRange Range) { function in class:AddressRanges 35 Ranges.insert(It, Range);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
| BlotMapVector.h | 57 Map.insert(std::make_pair(Arg, size_t(0))); 67 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &InsertPair) { function in class:llvm::BlotMapVector 69 Map.insert(std::make_pair(InsertPair.first, size_t(0)));
|
| /src/external/bsd/kyua-cli/dist/cli/ |
| cmd_db_exec_test.cpp | 47 /// \tparam Cell The type of the value to insert into the test column. 49 /// \param value The value to insert into the test column. 62 sqlite::statement insert = db.create_statement( local 63 "INSERT INTO test (column) VALUES (:column)"); 64 insert.bind(":column", value); 65 insert.step_without_results(); 140 sqlite::statement insert = db.create_statement( local 141 "INSERT INTO test VALUES (:v1, :v2)"); 142 insert.bind(":v1", "A string"); 143 insert.bind(":v2", sqlite::blob(memory, std::strlen(memory))) [all...] |
| /src/external/bsd/kyua-cli/dist/store/ |
| dbtypes_test.cpp | 64 sqlite::statement insert = db.create_statement("INSERT INTO test " local 66 bind(insert, ":v", value); 67 insert.step_without_results(); 78 /// \param value The invalid value to insert into the database. 90 sqlite::statement insert = db.create_statement("INSERT INTO test " local 92 insert.bind(":v", value); 93 insert.step_without_results();
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| bbt.cc | 97 insert (gfc_bbt *new_bbt, gfc_bbt *t, compare_fn compare) function 108 t->left = insert (new_bbt, t->left, compare); 114 t->right = insert (new_bbt, t->right, compare); 125 /* Given root pointer, a new node and a comparison function, insert 126 the new node into the treap. It is an error to insert a key that 137 *r = insert (n, *r, compare);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| type-stack.c | 28 type_stack::insert (enum type_pieces tp) function in class:type_stack 39 tp_pointer), insert the qualifier above it. Otherwise, simply 54 type_stack::insert (struct expr_builder *pstate, const char *string) function in class:type_stack 60 tp_pointer), insert the address space qualifier above it.
|
| bcache.h | 156 const T *insert (const T *addr, int length, bool *added = nullptr) function in struct:gdb::bcache 158 return (const T *) this->insert ((const void *) addr, length, added); 170 const T *insert (const T &object, bool *added = nullptr) function in struct:gdb::bcache 172 return (const T *) this->insert ((const void *) &object, sizeof (object), 195 /* Implementation of the templated 'insert' methods. */ 197 const void *insert (const void *addr, int length, bool *added);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| bcache.h | 156 const T *insert (const T *addr, int length, bool *added = nullptr) function in struct:gdb::bcache 158 return (const T *) this->insert ((const void *) addr, length, added); 170 const T *insert (const T &object, bool *added = nullptr) function in struct:gdb::bcache 172 return (const T *) this->insert ((const void *) &object, sizeof (object), 195 /* Implementation of the templated 'insert' methods. */ 197 const void *insert (const void *addr, int length, bool *added);
|
| type-stack.c | 28 type_stack::insert (enum type_pieces tp) function in class:type_stack 39 tp_pointer), insert the qualifier above it. Otherwise, simply 54 type_stack::insert (struct expr_builder *pstate, const char *string) function in class:type_stack 60 tp_pointer), insert the address space qualifier above it.
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| string-set.h | 38 /* Insert STR into this set. Returns a pointer to the interned 40 const char *insert (const char *str) function in class:gdb::string_set 44 return insert (std::string_view (str)); 48 const char *insert (std::string_view str) function in class:gdb::string_set 50 return m_set.insert (str).first->get (); 54 const char *insert (gdb::unique_xmalloc_ptr<char> str) function in class:gdb::string_set 56 return m_set.insert (local_string (std::move (str))).first->get ();
|