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

<<11121314151617181920>>

  /cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/
FeatureProvider.java 72 public Uri insert(Uri uri, ContentValues values) { method in class:FeatureProvider
  /cts/tests/tests/provider/src/android/provider/cts/
CallLogTest.java 59 resolver.insert(CallLog.Calls.CONTENT_URI, values);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoContentProvider.java 129 public Uri insert(Uri uri, ContentValues values) { method in class:VideoContentProvider
  /developers/build/prebuilts/gradle/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
AssetProvider.java 58 public Uri insert(@NonNull Uri uri, ContentValues values) { method in class:AssetProvider
59 // Do not support insert requests.
  /developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
AssetProvider.java 170 public Uri insert(Uri uri, ContentValues contentValues) { method in class:AssetProvider
  /developers/samples/android/content/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
AssetProvider.java 58 public Uri insert(@NonNull Uri uri, ContentValues values) { method in class:AssetProvider
59 // Do not support insert requests.
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherDataProvider.java 104 public Uri insert(Uri uri, ContentValues values) { method in class:WeatherDataProvider
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 109 public Uri insert(Uri uri, ContentValues values) { method in class:WeatherDataProvider
  /development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/content/
AssetProvider.java 58 public Uri insert(@NonNull Uri uri, ContentValues values) { method in class:AssetProvider
59 // Do not support insert requests.
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 64 void insert(const value_type &Val) { function in class:clang::ContinuousRangeMap
69 "Must insert keys in order.");
80 Rep.insert(I, Val);
130 void insert(const value_type &Val) { function in class:clang::ContinuousRangeMap::Builder
  /external/elfutils/libdwfl/
segment.c 50 insert (Dwfl *dwfl, size_t i, GElf_Addr start, GElf_Addr end, int segndx) function
169 /* Module starts below any segment. Insert a low one. */
170 if (unlikely (insert (dwfl, 0, start, end, -1)))
178 if (unlikely (insert (dwfl, idx + 1, start, end,
188 if (unlikely (insert (dwfl, idx + 1, start, end, -1)))
198 if (unlikely (insert (dwfl, idx + 1,
319 if (unlikely (insert (dwfl, i, start, end, ndx)))
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
SimpleModifier.java 96 result.insert(startIndex, compiledPattern, 2, 2 + prefixLength, field);
99 result.insert(endIndex + prefixLength, compiledPattern, 1 + suffixOffset, 1 + suffixOffset + suffixLength,
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ReplaceableString.java 160 buf.insert(start, chars, charsStart, charsLen);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
SimpleModifier.java 94 result.insert(startIndex, compiledPattern, 2, 2 + prefixLength, field);
97 result.insert(endIndex + prefixLength, compiledPattern, 1 + suffixOffset, 1 + suffixOffset + suffixLength,
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ReplaceableString.java 170 buf.insert(start, chars, charsStart, charsLen);
  /external/jline/src/src/main/java/jline/
CursorBuffer.java 46 * ahead one. The text may overwrite or insert based on the current setting
50 * the character to insert
53 buffer.insert(cursor++, c);
60 * Insert the specified {@link String} into the buffer, setting the cursor
64 * the String to insert. Must not be null.
70 buffer.insert(cursor, str);
  /external/kmod/libkmod/python/kmod/
module.pyx 118 def insert(self, flags=0, extra_options=None, install_callback=None, member in class:Module
121 insert module to current tree.
125 tp.insert(extra_options='fan_control=1')
  /external/llvm/lib/Target/Hexagon/
BitTracker.cpp 199 // Insert the entire cell RC into the current cell at position given by M.
200 BT::RegisterCell &BT::RegisterCell::insert(const BT::RegisterCell &RC, function in class:BT::RegisterCell
345 // value. Don't actually insert anything in the map, just return the cell.
363 // If not found, create a "top" entry, but do not insert it in the map.
721 // Copy bits from A1, insert A2 at position AtN.
724 Res.insert(RegisterCell::ref(A2), BT::BitMask(AtN, AtN+W2-1));
752 Res.insert(RegisterCell::ref(getCell(RS, Inputs)), mask(RD.Reg, SS));
753 Res.insert(RegisterCell::ref(getCell(RT, Inputs)), mask(RD.Reg, ST));
769 Res.insert(Src, BitMask(0, WS-1));
922 InstrExec.insert(&MI)
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
BlotMapVector.h 51 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/
odict.py 90 def insert(self, index, key, value): member in class:OrderedDict
91 """Insert the key, value pair before the item with the given index."""
97 self.keyOrder.insert(index, key)
142 """ Insert by key location. """
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/
containers.py 116 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/python/cpython2/Lib/idlelib/
ColorDelegator.py 81 def insert(self, index, chars, tags=None): member in class:ColorDelegator
83 self.delegate.insert(index, chars, tags)
249 text.insert("insert", source)
  /external/python/cpython3/Lib/idlelib/
colorizer.py 99 def insert(self, index, chars, tags=None): member in class:ColorDelegator
101 self.delegate.insert(index, chars, tags)
275 text.insert("insert", source)
  /external/python/cpython3/Lib/turtledemo/
sorting_animate.py 74 def insert(self, key, b): member in class:Shelf
76 list.insert(self, key, b)
90 shelf.insert(hole, shelf.pop(i))
101 shelf.insert(j, shelf.pop(imin))
105 shelf.insert(right, shelf.pop(pivot_index))
109 shelf.insert(store_index, shelf.pop(i))
111 shelf.insert(store_index, shelf.pop(right)) # move pivot to correct position
129 s.insert(i, s.pop(j))
  /external/python/cpython3/Modules/
_bisectmodule.c 9 _Py_IDENTIFIER(insert); variable
68 Return the index where to insert item x in list a, assuming a is sorted.\n\
108 Insert item x in list a, and keep it sorted assuming a is sorted.\n\
110 If x is already in a, insert it to the right of the rightmost x.\n\
172 Return the index where to insert item x in list a, assuming a is sorted.\n\
212 Insert item x in list a, and keep it sorted assuming a is sorted.\n\
214 If x is already in a, insert it to the left of the leftmost x.\n\

Completed in 4130 milliseconds

<<11121314151617181920>>