HomeSort by relevance Sort by last modified time
    Searched defs:insert (Results 651 - 675 of 1909) sorted by null

<<21222324252627282930>>

  /external/opencv/cv/src/
_cvkdtree.hpp 156 // insert given points into the tree; return created node
158 int insert(__instype * first, __instype * last, __valuector ctor) { function in class:CvKDTree
174 node & n = *nodes.insert(nodes.end(), node());
185 // note that recursive insert may invalidate this ref
186 node & n = *nodes.insert(nodes.end(), node());
191 int left = insert(first, split, ctor);
193 int right = insert(split, last, ctor);
267 root_node = insert(first, last, ctor);
  /external/protobuf/python/google/protobuf/internal/
containers.py 255 def insert(self, key, value): member in class:RepeatedScalarFieldContainer
256 """Inserts the item at the specified position. Similar to list.insert()."""
257 self._values.insert(key, self._type_checker.CheckValue(value))
473 # will make the default implementation (from our base class) always insert
568 # will make the default implementation (from our base class) always insert
  /external/python/cpython2/Lib/lib-tk/
Canvas.py 75 def insert(self, beforethis, string): member in class:CanvasItem
76 self.canvas.insert(self.id, beforethis, string)
174 def insert(self, beforeThis, string): member in class:Group
175 self._do('insert', beforeThis, string)
  /external/python/cpython2/Lib/
sre_parse.py 147 def insert(self, index, code): member in class:SubPattern
148 self.data.insert(index, code)
  /external/python/cpython3/Lib/
sre_parse.py 169 def insert(self, index, code): member in class:SubPattern
170 self.data.insert(index, code)
    [all...]
  /external/python/cpython3/Lib/test/
test_bisect.py 10 """A trivial range()-like object that has an insert() method."""
27 def insert(self, idx, item): member in class:Range
229 def insert(self, index, item): member in class:TestInsort.test_listDerived.List
230 self.data.insert(index, item)
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowContentProviderClientTest.java 89 client.insert(URI, VALUES);
90 verify(provider).insert(URI, VALUES);
  /external/skia/include/core/
SkString.h 190 void insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); } function in class:SkString
191 void insert(size_t offset, const char text[]);
192 void insert(size_t offset, const char text[], size_t len);
201 void append(const SkString& str) { this->insert((size_t)-1, str); }
202 void append(const char text[]) { this->insert((size_t)-1, text); }
203 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
212 void prepend(const SkString& str) { this->insert(0, str); }
213 void prepend(const char text[]) { this->insert(0, text); }
214 void prepend(const char text[], size_t len) { this->insert(0, text, len);
    [all...]
  /external/skia/include/private/
SkTDArray.h 196 T* insert(int index) { function in class:SkTDArray
197 return this->insert(index, 1, nullptr);
199 T* insert(int index, int count, const T* src = nullptr) { function in class:SkTDArray
  /external/skqp/include/core/
SkString.h 192 void insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); } function in class:SkString
193 void insert(size_t offset, const char text[]);
194 void insert(size_t offset, const char text[], size_t len);
203 void append(const SkString& str) { this->insert((size_t)-1, str); }
204 void append(const char text[]) { this->insert((size_t)-1, text); }
205 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
214 void prepend(const SkString& str) { this->insert(0, str); }
215 void prepend(const char text[]) { this->insert(0, text); }
216 void prepend(const char text[], size_t len) { this->insert(0, text, len);
    [all...]
  /external/skqp/include/private/
SkTDArray.h 196 T* insert(int index) { function in class:SkTDArray
197 return this->insert(index, 1, nullptr);
199 T* insert(int index, int count, const T* src = nullptr) { function in class:SkTDArray
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
CallLogFacade.java 88 mContentResolver.insert(Calls.CONTENT_URI, values);
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/interpreter/
InterpreterProvider.java 82 public Uri insert(Uri uri, ContentValues values) { method in class:InterpreterProvider
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVDecorate.h 113 iterator insert(const value_type& Dec) { function in class:SPIRV::SPIRVDecorateSet
123 return BaseType::insert(Dec);
  /external/swiftshader/src/Reactor/
Optimizer.cpp 57 void insert(Ice::Operand *value, Ice::Inst *instruction);
392 uses[src].insert(src, &instruction);
420 uses[newValue].insert(newValue, use);
637 void Optimizer::Uses::insert(Ice::Operand *value, Ice::Inst *instruction) function in class:__anon35658::Optimizer::Uses
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
EquivalenceClasses.h 25 /// supports three efficient operations: insert an element into a class of its
37 /// EC.unionSets(1, 2); // insert 1, 2 into the same set
38 /// EC.insert(4); EC.insert(5); // insert 4, 5 into own sets
125 member_iterator LeaderIt = member_begin(insert(*MI));
127 unionSets(LeaderIt, member_begin(insert(*MI)));
173 member_iterator MI = findLeader(insert(V));
191 /// insert - Insert a new value into the union/find set, ignoring the reques
193 iterator insert(const ElemTy &Data) { function in class:llvm::EquivalenceClasses
    [all...]
ScopedHashTable.h 17 // HT.insert(0, 0);
18 // HT.insert(1, 1);
21 // HT.insert(0, 42);
187 void insert(const K &Key, const V &Val) { function in class:llvm::ScopedHashTable
206 /// (possibly not the current) scope. While it is ok to insert into a scope
207 /// that isn't the current one, it isn't ok to insert *underneath* an existing
SmallPtrSet.h 247 insert(I, E);
250 /// insert - This returns true if the pointer was new to the set, false if it
252 bool insert(PtrType Ptr) { function in class:llvm::SmallPtrSet
268 void insert(IterT I, IterT E) { function in class:llvm::SmallPtrSet
270 insert(*I);
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInst.h 153 iterator insert(iterator I, const MCOperand &Op) { function in class:llvm::MCInst
154 return Operands.insert(I, Op);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
simple_ilist.h 31 /// insert(). These all take values by reference (not by pointer), except for
32 /// the range version of \a insert().
139 /// Insert a node at the front; never copies.
140 void push_front(reference Node) { insert(begin(), Node); }
142 /// Insert a node at the back; never copies.
143 void push_back(reference Node) { insert(end(), Node); }
154 /// Insert a node by reference; never copies.
155 iterator insert(iterator I, reference Node) { function in class:llvm::simple_ilist
160 /// Insert a range of nodes; never copies.
162 void insert(iterator I, Iterator First, Iterator Last) function in class:llvm::simple_ilist
    [all...]
  /external/syslinux/core/lwip/src/core/snmp/
mib_structs.c 219 s8_t insert; local
224 insert = 0;
235 insert = 1;
239 insert = -1;
247 while ((n != NULL) && (insert == 0))
254 insert = 2;
260 /* alloc and insert at the tail */
270 insert = 1;
275 insert = -1;
288 /* alloc and insert between n->prev and n *
    [all...]
  /external/syslinux/gpxe/src/arch/i386/image/
multiboot.c 182 unsigned int insert; local
205 for ( insert = 0 ; insert < count ; insert++ ) {
206 if ( start < modules[insert].mod_start )
209 module = &modules[insert];
211 ( ( count - insert ) * sizeof ( *module ) ) );
  /external/toybox/toys/pending/
tcpsvd.c 89 // Insert pid, ip and fd in the list.
90 static void insert(struct list_pid **l, int pid, char *addr) function
398 insert(&pids, pid, addr);
  /external/turbine/java/com/google/turbine/bytecode/
ConstantPool.java 98 int index = insert(new Entry(Kind.CLASS_INFO, new IntValue(utf8)));
109 int index = insert(new Entry(Kind.UTF8, new StringValue(value)));
118 int index = insert(new Entry(Kind.INTEGER, new Const.IntValue(value)));
127 int index = insert(new Entry(Kind.LONG, new Const.LongValue(value)));
136 int index = insert(new Entry(Kind.DOUBLE, new Const.DoubleValue(value)));
145 int index = insert(new Entry(Kind.FLOAT, new Const.FloatValue(value)));
156 int index = insert(new Entry(Kind.STRING, new IntValue(utf8)));
161 private int insert(Entry key) { method in class:ConstantPool
  /external/vixl/examples/aarch32/
disasm-a32.cc 85 void insert(const Symbol& sym) { function in class:SymbolTable
87 std::map<Elf32_Addr, Symbol>::insert(
157 symbols_->insert(
176 symbols_->insert(Symbol(symname,
182 symbols_->insert(

Completed in 1200 milliseconds

<<21222324252627282930>>