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

<<51525354555657585960>>

  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 99 mContentResolver.insert(TABLE1_URI, values);
100 mContentResolver.insert(REMOTE_TABLE1_URI, values);
104 mContentResolver.insert(TABLE1_URI, values);
105 mContentResolver.insert(REMOTE_TABLE1_URI, values);
109 mContentResolver.insert(TABLE1_URI, values);
110 mContentResolver.insert(REMOTE_TABLE1_URI, values);
367 mContentResolver.insert(TABLE1_URI, values);
371 mContentResolver.insert(TABLE1_URI, values);
375 mContentResolver.insert(TABLE1_URI, values);
523 mContentResolver.insert(TABLE1_URI, values)
    [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContractTest.java 355 // Test: insert
358 Uri rowUri = mContentResolver.insert(mChannelsUri, values);
384 Uri channelUri = mContentResolver.insert(mChannelsUri, values);
411 Uri rowUri = mContentResolver.insert(Channels.CONTENT_URI, values);
416 rowUri = mContentResolver.insert(Channels.CONTENT_URI, values);
421 rowUri = mContentResolver.insert(Channels.CONTENT_URI, values);
428 rowUri = mContentResolver.insert(Channels.CONTENT_URI, values);
439 Uri channelUri = mContentResolver.insert(mChannelsUri, baseValues);
472 Uri channelUri = mContentResolver.insert(mChannelsUri, baseValues);
474 // Test: insert
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 367 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, function in class:clang::CFGBlock::ElementList
369 return Impl.insert(I, Cnt, E, C);
690 // steps. First we prepare space for some number of elements, then we insert
694 return iterator(Elements.insert(I.base(), Cnt,
    [all...]
  /external/e2fsprogs/misc/
e4defrag.c 69 /* Insert list2 after list1 */
70 #define insert(list1, list2) \ macro
580 * insert_extent_by_logical() - Sequentially insert extent by logical.
602 /* Insert before head */
610 /* Insert into the middle or last of the list */
629 /* Insert "ext" after "ext_list_tmp" */
630 insert(ext_list_tmp, ext);
638 * insert_extent_by_physical() - Sequentially insert extent by physical.
660 /* Insert before head */
668 /* Insert into the middle or last of the list *
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
JavaToken.java 706 public void insert(JavaToken newToken) { method in class:JavaToken
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 316 public int insert(byte[] code) method in class:CodeIterator
343 public void insert(int pos, byte[] code) throws BadBytecode { method in class:CodeIterator
656 public void insert(ExceptionTable et, int offset) { method in class:CodeIterator
    [all...]
  /external/libcups/cups/
dest.c 2548 int insert, \/* Insertion point *\/ local
    [all...]
  /external/libxml2/
xmllint.c 144 static int insert = 0; variable
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 299 void addSubCommand(SubCommand &S) { Subs.insert(&S); }
577 // Insert the first value, which is required.
1395 iterator insert(const_iterator pos, const DataType &value) { function in class:llvm::list_storage
1398 iterator insert(const_iterator pos, DataType &&value) { function in class:llvm::list_storage
1402 iterator insert(iterator pos, const DataType &value) { function in class:llvm::list_storage
1405 iterator insert(iterator pos, DataType &&value) { function in class:llvm::list_storage
    [all...]
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 151 void RuntimePointerChecking::insert(Loop *Lp, Value *Ptr, bool WritePtr, function in class:RuntimePointerChecking
350 Seen.insert(Pointer);
468 Accesses.insert(MemAccessInfo(Ptr, false));
470 ReadOnlyPtr.insert(Ptr);
477 Accesses.insert(MemAccessInfo(Ptr, true));
634 RtCheck.insert(TheLoop, Ptr, IsWrite, DepId, ASId, StridesMap, PSE);
763 DepCands.insert(Access);
771 DeferredAccesses.insert(Access);
780 CheckDeps.insert(Access);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 65 void insert(const GepNode *N) { Map.insert(std::make_pair(N, ++LastNum)); } function in struct:__anon27663::NodeOrdering
352 Us.insert(&UI.getUse());
355 NodeOrder.insert(N);
370 NodeOrder.insert(Nx);
379 Uses[PN].insert(Us.begin(), Us.end());
384 NM.insert(std::make_pair(GepI, PN));
430 Nodes.insert(Root);
438 Work.insert(Work.end(), CF->second.begin(), CF->second.end());
439 Nodes.insert(CF->second.begin(), CF->second.end())
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 29 // std::set::insert operation will give you result in log(N) time.
161 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber});
1796 bool MergeFunctions::insert(Function *NewFunction) { function in class:MergeFunctions
    [all...]
  /external/mesa3d/prebuilt-intermediates/nir/
nir_constant_expressions.c 1201 unsigned mask = src0, insert = src1, base = src2; local
1208 insert <<= 1;
1210 dst = (base & ~mask) | (insert & mask);
1234 unsigned mask = src0, insert = src1, base = src2; local
1241 insert <<= 1;
1243 dst = (base & ~mask) | (insert & mask);
1407 unsigned base = src0, insert = src1; local
1415 dst = (base & ~mask) | ((insert << bits) & mask);
1441 unsigned base = src0, insert = src1; local
1449 dst = (base & ~mask) | ((insert << bits) & mask)
    [all...]
  /external/mesa3d/src/compiler/spirv/
spirv_to_nir.c 1248 struct vtn_value *insert = local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_context.h 308 const tnl_insert_func *insert; member in struct:tnl_clipspace_attr
  /external/protobuf/src/google/protobuf/
map.h 540 insert(other.begin(), other.end());
548 insert(first, last);
684 // container. This ensures O(lg n) bounds on find, insert, and erase, while
750 // with Keys that are not in any particular data structure. When we insert,
947 // In traditional C++ style, this performs "insert if not present.
948 std::pair<iterator, bool> insert(const KeyValuePair& kv) { function in class:google::protobuf::Map::InnerMap
967 std::pair<iterator, bool> insert(const Key& k) { function in class:google::protobuf::Map::InnerMap
1557 std::pair<iterator, bool> insert(const value_type& value) { function in class:google::protobuf::Map
1577 void insert(InputIt first, InputIt last) { function in class:google::protobuf::Map
    [all...]
  /external/python/cpython2/Lib/lib-tk/
Tix.py 607 def insert(self, index, str): member in class:ComboBox
608 self.tk.call(self._w, 'insert', index, str)
1466 def insert(self, index, cnf={}, **kw): member in class:TList
    [all...]
  /external/python/cpython3/Lib/test/
test_collections.py 1619 def insert(self, index, value): member in class:TestCollectionABCs.test_MutableSequence_mixins.MutableSequenceSubclass
    [all...]
  /external/python/cpython3/Lib/tkinter/
tix.py 601 def insert(self, index, str): member in class:ComboBox
602 self.tk.call(self._w, 'insert', index, str)
1459 def insert(self, index, cnf={}, **kw): member in class:TList
    [all...]
  /external/skia/src/pathops/
SkOpAngle.cpp 630 // OPTIMIZE: if this loops to only one other angle, after first compare fails, insert on other side
632 bool SkOpAngle::insert(SkOpAngle* angle) { function in class:SkOpAngle
643 angle->insert(this);
744 insert(working);
    [all...]
  /external/skqp/src/pathops/
SkOpAngle.cpp 630 // OPTIMIZE: if this loops to only one other angle, after first compare fails, insert on other side
632 bool SkOpAngle::insert(SkOpAngle* angle) { function in class:SkOpAngle
643 angle->insert(this);
744 insert(working);
    [all...]
  /external/swiftshader/src/Shader/
ShaderCore.cpp 1675 void ShaderCore::insert(Vector4f &dst, const Vector4f &src, const Float4 &element, const Float4 &index) function in class:sw::ShaderCore
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
CommandLine.h 311 void addSubCommand(SubCommand &S) { Subs.insert(&S); }
1413 iterator insert(const_iterator pos, const DataType &value) { function in class:llvm::list_storage
1416 iterator insert(const_iterator pos, DataType &&value) { function in class:llvm::list_storage
1420 iterator insert(iterator pos, const DataType &value) { function in class:llvm::list_storage
1423 iterator insert(iterator pos, DataType &&value) { function in class:llvm::list_storage
    [all...]
  /frameworks/base/core/java/android/content/
ContentResolver.java 1578 public final @Nullable Uri insert(@RequiresPermission.Write @NonNull Uri url, method in class:ContentResolver
    [all...]
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 1255 public long insert(ContentValues values) { method in class:DatabaseUtils.InsertHelper
    [all...]

Completed in 1663 milliseconds

<<51525354555657585960>>