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

<<31323334353637383940>>

  /cts/tests/tests/provider/src/android/provider/cts/
SearchRecentSuggestionsTest.java 67 // insert three rows
132 // Test: insert
139 mTestSRSProvider.insert(mTestUri, value);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
Contacts_PeopleTest.java 77 // insert some lines in people table and groups table to be used in test case.
83 mPeopleRowsAdded.add(mProvider.insert(People.CONTENT_URI, value));
88 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
90 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
120 mProvider.insert(Groups.CONTENT_URI, testValues);
  /cts/tests/tests/widget/src/android/widget/cts/
ArrayAdapterTest.java 241 * insert the item to the specific position, notify data changed
250 mArrayAdapter.insert(STR1, 0);
255 mArrayAdapter.insert(STR2, 0);
260 mArrayAdapter.insert(STR3, mArrayAdapter.getCount());
263 mArrayAdapter.insert(null, 0);
269 mArrayAdapter.insert(STR1, 0);
270 mArrayAdapter.insert(STR2, 0);
271 mArrayAdapter.insert(null, 0);
273 mArrayAdapter.insert(STR1, -1);
278 mArrayAdapter.insert(STR1, 0)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 221 * @param at {@code >= 0;} what index to insert at
222 * @param insn {@code non-null;} the instruction to insert
224 public void insert(int at, DalvInsn insn) { method in class:OutputFinisher
230 * Helper for {@link #add} and {@link #insert},
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 269 public Uri insert(Uri uri, ContentValues initialValues) { method in class:LoaderThrottle.SimpleProvider
271 // Can only insert into to main URI.
289 long rowId = db.insert(MainTable.TABLE_NAME, null, values);
291 // If the insert succeeded, the row ID exists.
298 throw new SQLException("Failed to insert row into " + uri);
445 cr.insert(MainTable.CONTENT_URI, values);
446 // Wait a bit between each insert.
479 // Insert desired behavior here.
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 312 public Uri insert(Uri uri, ContentValues values) { method in class:XmlDocumentProvider
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_abcoll.py 642 __getitem__, __setitem__, __delitem__, __len__, and insert().
655 def insert(self, index, value): member in class:MutableSequence
656 'S.insert(index, object) -- insert object before index'
661 self.insert(len(self), value)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserString.py 217 def insert(self, index, value): member in class:MutableString
_abcoll.py 574 def insert(self, index, value): member in class:MutableSequence
578 self.insert(len(self), value)
  /external/annotation-tools/annotation-file-utilities/src/annotator/
Main.java 79 * using the shell script <tt>insert-annotations-to-source</tt>.
84 * <li>annotation (index) files, which indicate the annotations to insert</li>
113 * <li id="option:comments"><b>-c</b> <b>--comments=</b><i>boolean</i>. Insert annotations in comments [default false]</li>
161 @Option("-c Insert annotations in comments")
500 System.out.printf("insert-annotations-to-source (%s)",
548 // The Java files into which to insert.
830 // If it's already there, don't re-insert. This is a hack!
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 400 vBuf.insert(index, "\\");
413 vBuf.insert(start, "\\");
422 vBuf.insert(endBuf, '\\');
  /external/brotli/c/enc/
compress_fragment_two_pass.c 326 int insert = (int)(base - next_emit); local
329 EmitInsertLen((uint32_t)insert, commands);
330 memcpy(*literals, next_emit, (size_t)insert);
331 *literals += insert;
417 const uint32_t insert = (uint32_t)(ip_end - next_emit); local
418 EmitInsertLen(insert, commands);
419 memcpy(*literals, next_emit, insert);
420 *literals += insert;
478 const uint32_t insert = kInsertOffset[code] + extra; local
480 for (j = 0; j < insert; ++j)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkBinaryRegistry.cpp 409 void BinaryIndexHash::insert (const ProgramBinary* binary, deUint32 index) function in class:vk::BinaryRegistryDetail::__anon17585::BinaryIndexHash
507 m_binaryHash.insert(binaryClone, index);
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 172 inline Scalar& insert(Index row, Index col) function in class:Eigen::SparseVector
180 return insert(inner);
182 Scalar& insert(Index i) function in class:Eigen::SparseVector
369 /** \internal \deprecated use insert(Index,Index) */
376 /** \internal \deprecated use insert(Index) */
379 return insert(i);
447 dst.insert(it.index()) = it.value();
461 dst.insert(i) = it.value();
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 265 int insert = end - (opcode - DUP_X1) - 1; local
268 while (end > insert) {
272 frame.setStack(insert, type);
282 int insert = end - (opcode - DUP2_X1) - 1; local
287 while (end > insert) {
291 frame.setStack(insert, type2);
292 frame.setStack(insert - 1, type1);
    [all...]
  /external/libxml2/
dict.c 861 xmlDictEntryPtr insert; local
883 insert = NULL;
885 for (insert = &(dict->dict[key]); insert->next != NULL;
886 insert = insert->next) {
888 if ((insert->okey == okey) && (insert->len == l)) {
889 if (!memcmp(insert->name, name, l))
890 return(insert->name)
1000 xmlDictEntryPtr insert; local
1109 xmlDictEntryPtr insert; local
    [all...]
hash.c 534 xmlHashEntryPtr insert; local
565 insert = NULL;
568 for (insert = &(table->table[key]); insert->next != NULL;
569 insert = insert->next) {
570 if ((insert->name == name) &&
571 (insert->name2 == name2) &&
572 (insert->name3 == name3))
576 if ((insert->name == name) &
650 xmlHashEntryPtr insert; local
    [all...]
  /external/llvm/include/llvm/ADT/
StringMap.h 237 insert(P);
341 /// insert - Insert the specified key/value pair into the map. If the key
343 /// insert it and return true.
344 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap
360 /// insert - Inserts the specified key/value pair into the map if the key
364 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { function in class:llvm::StringMap
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 264 BB.insert(I, MI);
280 BB.insert(I, MI);
309 BB.insert(I, MI);
319 BB.insert(I, MI);
453 /// Insert MI into this bundle before I which must point to an instruction in
455 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder
457 MBB.insert(I, MI);
475 /// Insert MI into MBB by prepending it to the instructions in the bundle.
478 return insert(begin(), MI);
481 /// Insert MI into MBB by appending it to the instructions in the bundle
    [all...]
  /external/llvm/include/llvm/IR/
ValueMap.h 168 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::ValueMap
169 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
173 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::ValueMap
175 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
179 /// insert - Range insertion of pairs.
181 void insert(InputIt I, InputIt E) { function in class:llvm::ValueMap
183 insert(*I);
285 Copy.Map->insert(std::make_pair(typed_new_key, std::move(Target)));
  /external/llvm/lib/CodeGen/
LiveDebugValues.cpp 175 /// Insert a new range into the set.
176 void insert(unsigned VarLocID, DebugVariableBase Var) { function in class:__anon27252::LiveDebugValues::OpenRangesSet
178 Vars.insert({Var, VarLocID});
298 unsigned ID = VarLocIDs.insert(VL);
299 OpenRanges.insert(ID, VL.Var);
399 // Insert DBG_VALUE instructions, if not already inserted.
490 if (OnPending.insert(s).second) {
  /external/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 265 void insert(const FunctionRecord &Function, unsigned FileID) { function in class:__anon27452::FunctionInstantiationSetCollector
416 Filenames.insert(Filenames.end(), Function.Filenames.begin(),
487 InstantiationSetCollector.insert(Function, *MainFileID);
494 Result.insert(Result.end(), InstantiationSet.second.begin(),
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 47 /// Insert a new value on the heap.
48 void insert(const T &V) { function in class:__anon28208::PriorityQueue
168 Queue.insert(BlockPair(L, R));
210 TentativeValues.insert(std::make_pair(LeftI, RightI));
525 TentativeValues.insert(std::make_pair(&*LI, &*RI));
660 LNames.insert(LFn->getName());
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_util.h 106 virtual bool insert(void *) = 0; // insert after current position
188 inline void insert(void *data) { insertTail(data); } function in class:nv50_ir::DLList
204 virtual bool insert(void *data);
364 void insert(void *item, int& id) function in class:nv50_ir::ArrayList
430 void insert(const Interval&);
701 insert(obj, clone);
706 virtual void insert(const void *obj, void *clone) = 0;
728 virtual void insert(const void *obj, void *clone)
762 virtual void insert(const void *obj, void *clone
    [all...]
  /external/python/cpython2/Lib/
UserString.py 217 def insert(self, index, value): member in class:MutableString

Completed in 2381 milliseconds

<<31323334353637383940>>