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

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
PriorityWorklist.h 44 /// ignored. It is an error to insert such a value, and popping elements will
90 /// Insert a new element into the PriorityWorklist.
92 bool insert(const T &X) { function in class:llvm::PriorityWorklist
93 assert(X != T() && "Cannot insert a null (default constructed) value!");
94 auto InsertResult = M.insert({X, V.size()});
112 /// Insert a sequence of new elements into the PriorityWorklist.
115 insert(SequenceT &&Input) { function in class:llvm::PriorityWorklist
123 V.insert(V.end(), std::begin(Input), std::end(Input));
126 auto InsertResult = M.insert({V[i], i});
130 // If the existing index is before this insert's start, nuke that one an
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
insert_join_fn_imps.hpp 382 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
insert_join_fn_imps.hpp 382 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ColorDelegator.py 82 def insert(self, index, chars, tags=None): member in class:ColorDelegator
84 self.delegate.insert(index, chars, tags)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ColorDelegator.py 82 def insert(self, index, chars, tags=None): member in class:ColorDelegator
84 self.delegate.insert(index, chars, tags)
  /prebuilts/go/darwin-x86/src/container/list/
list.go 91 // insert inserts e after at, increments l.len, and returns e.
92 func (l *List) insert(e, at *Element) *Element { func
103 // insertValue is a convenience wrapper for insert(&Element{Value: v}, at).
105 return l.insert(&Element{Value: v}, at)
173 l.insert(l.remove(e), &l.root)
184 l.insert(l.remove(e), l.root.prev)
194 l.insert(l.remove(e), mark.prev)
204 l.insert(l.remove(e), mark)
  /prebuilts/go/linux-x86/src/container/list/
list.go 91 // insert inserts e after at, increments l.len, and returns e.
92 func (l *List) insert(e, at *Element) *Element { func
103 // insertValue is a convenience wrapper for insert(&Element{Value: v}, at).
105 return l.insert(&Element{Value: v}, at)
173 l.insert(l.remove(e), &l.root)
184 l.insert(l.remove(e), l.root.prev)
194 l.insert(l.remove(e), mark.prev)
204 l.insert(l.remove(e), mark)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 82 def insert(self, index, chars, tags=None): member in class:ColorDelegator
84 self.delegate.insert(index, chars, tags)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 82 def insert(self, index, chars, tags=None): member in class:ColorDelegator
84 self.delegate.insert(index, chars, tags)
  /system/extras/perfprofd/scripts/
sorted_collection.py 93 def insert(self, item): member in class:SortedCollection
94 'Insert a new item. If equal keys are found, add to the left'
97 self._keys.insert(i, k)
98 self._items.insert(i, item)
101 'Insert a new item. If equal keys are found, add to the right'
104 self._keys.insert(i, k)
105 self._items.insert(i, item)
  /tools/dexter/slicer/export/slicer/
intrusive_list.h 78 insert(end(), p);
81 Iterator insert(Iterator it, T* p) { function in class:slicer::IntrusiveList
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 165 public Uri insert(Uri uri, ContentValues values) { method in class:TestResultsProvider
167 long id = db.insert(TABLE_NAME, null, values);
243 resolver.insert(uri, values);
  /cts/tests/tests/content/src/android/content/cts/
DummyProvider.java 93 * @see android.content.ContentProvider#insert(android.net.Uri,
97 public Uri insert(Uri uri, ContentValues values) { method in class:DummyProvider
103 db.insert(tbName, VALUE, values);
CursorWindowContentProvider.java 118 public Uri insert(@NonNull Uri uri, @Nullable ContentValues values) { method in class:CursorWindowContentProvider
119 Log.e(TAG, "insert() not implemented");
SearchRecentSuggestionsProviderTest.java 62 s.insert(TEST_URI, new ContentValues());
66 s.insert(TEST_URI, new ContentValues());
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java 299 * Insert a single row into a table
300 * @see android.content.ContentProvider#insert(Uri, ContentValues)
302 * @param values a {@link android.content.ContentValues} object containing the row to insert
306 public Uri insert(Uri uri, ContentValues values) { method in class:DataProvider
318 long id = localSQLiteDatabase.insert(
324 // If the insert succeeded, notify a change and return the new row's content URI.
330 throw new SQLiteException("Insert error:" + uri);
334 throw new IllegalArgumentException("Insert: Invalid URI" + uri);
341 * {@link SQLiteDatabase#insert(String, String, ContentValues) SQLiteDatabase.insert()}
    [all...]
  /external/annotation-tools/annotation-file-utilities/src/annotator/
Source.java 164 * @param str the text to insert
166 public void insert(int offset, String str) { method in class:Source
167 source.insert(offset, str);
  /external/clang/utils/
clang-completion-mode.el 127 ;; Insert the code-completion string into the process buffer.
129 (insert (mapconcat 'identity completion-lines "\n")))
175 (defun clang-complete-self-insert (arg)
177 (self-insert-command arg)
192 (defun clang-filter-self-insert (arg)
194 (self-insert-command arg)
227 (define-key clang-completion-mode-map char 'clang-complete-self-insert))
236 (define-key clang-completion-mode-map char 'clang-filter-self-insert))
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LigatureTree.java 92 void insert(int[] chars, int index) method in class:LigatureTree.Lignode
111 subnodes[0].insert(chars, index + 1); method
120 subnodes[i].insert(chars, index + 1); method
141 subnodes[i].insert(chars, index + 1); method
226 public void insert(String string) method in class:LigatureTree
228 root.insert(toIntArray(string), 0);
231 public void insert(int[] chars) method in class:LigatureTree
233 root.insert(chars, 0);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 72 public long insert(String table, String nullColumnHack, ContentValues values) { method in class:ShadowSQLiteDatabase
94 PreparedStatement insert = connection.prepareStatement(sqlInsertString.sql, Statement.RETURN_GENERATED_KEYS); local
99 insert.setObject(i++, columns.next());
101 insert.executeUpdate();
102 ResultSet resultSet = insert.getGeneratedKeys();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IntRangeManager.java 104 * Insert new ClientRange in order by start id, then by end id
110 * @param range the new ClientRange to insert
112 void insert(ClientRange range) { method in class:IntRangeManager.IntRange
114 int insert = -1; local
123 insert = i + 1;
124 if (insert < len) {
136 if (insert != -1 && insert < len) {
137 mClients.add(insert, range);
212 // duplicate "client" check is done in insert, attempt to insert
    [all...]
  /frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
SpannableBuilder.java 318 public SpannableStringBuilder insert(int where, CharSequence tb) { method in class:SpannableBuilder
319 super.insert(where, tb);
324 public SpannableStringBuilder insert(int where, CharSequence tb, int start, int end) { method in class:SpannableBuilder
325 super.insert(where, tb, start, end);
  /libcore/ojluni/src/main/java/java/lang/
StringBuffer.java 44 * {@code append} and {@code insert} methods, which are
49 * of the buffer; the {@code insert} method adds the characters at
56 * {@code z.insert(4, "le")} would alter the string buffer to
61 * {@code sb.insert(sb.length(), x)}.
68 * {@code append} or {@code insert} operation is passed a source sequence
488 public synchronized StringBuffer insert(int index, char[] str, int offset, method in class:StringBuffer
492 super.insert(index, str, offset, len);
500 public synchronized StringBuffer insert(int offset, Object obj) { method in class:StringBuffer
502 super.insert(offset, String.valueOf(obj));
510 public synchronized StringBuffer insert(int offset, String str) method in class:StringBuffer
520 public synchronized StringBuffer insert(int offset, char[] str) { method in class:StringBuffer
531 public StringBuffer insert(int dstOffset, CharSequence s) { method in class:StringBuffer
544 public synchronized StringBuffer insert(int dstOffset, CharSequence s, method in class:StringBuffer
556 public StringBuffer insert(int offset, boolean b) { method in class:StringBuffer
568 public synchronized StringBuffer insert(int offset, char c) { method in class:StringBuffer
578 public StringBuffer insert(int offset, int i) { method in class:StringBuffer
590 public StringBuffer insert(int offset, long l) { method in class:StringBuffer
602 public StringBuffer insert(int offset, float f) { method in class:StringBuffer
614 public StringBuffer insert(int offset, double d) { method in class:StringBuffer
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
MyProvider.java 53 public Uri insert(Uri uri, ContentValues values) { method in class:MyProvider
  /cts/hostsidetests/inputmethodservice/deviceside/provider/src/android/inputmethodservice/cts/provider/
EventProvider.java 93 public Uri insert(@NonNull final Uri uri, @Nullable final ContentValues values) { method in class:EventProvider
96 Log.d(TAG, "insert: uri=" + uri + " values={" + values + "}");
98 final long rowId = mDatabase.insert(uriHelper.table, values);
101 Log.d(TAG, " insert.uri=" + insertedUri);

Completed in 2580 milliseconds

<<11121314151617181920>>