HomeSort by relevance Sort by last modified time
    Searched defs:INSERT (Results 1 - 25 of 39) sorted by null

1 2

  /external/elfutils/0.153/lib/
dynamicsizehash.c 63 REVERSE iterate in reverse order of insert
233 #define INSERT(name) _INSERT (name)
236 INSERT(NAME) (htab, hval, data)
260 #define INSERT(name) _INSERT (name)
263 INSERT(NAME) (htab, hval, data)
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
LevenshteinDistanceTest.java 31 private static final int INSERT = LevenshteinDistance.EDIT_INSERT;
78 new int[]{INSERT, INSERT},
129 new int[] {UNCHANGED, INSERT},
141 new int[] {UNCHANGED, UNCHANGED, INSERT},
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
hashtab.h 146 /* An enum saying whether we insert into the hash table or not. */
147 enum insert_option {NO_INSERT, INSERT};
  /system/security/keystore/include/keystore/
IKeystoreService.h 47 INSERT = IBinder::FIRST_CALL_TRANSACTION + 2,
79 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid,
  /external/libedit/src/
chared.h 52 * like real vi: i.e. the transition from command<->insert modes moves
80 Char *buf; /* redo insert key sequence */
129 #define INSERT 0x02
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 59 # Special tags, marks and insert positions
64 INSERT='insert'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 59 # Special tags, marks and insert positions
64 INSERT='insert'
  /external/chromium_org/net/disk_cache/blockfile/
rankings.cc 29 INSERT = 1,
247 void Rankings::Insert(CacheRankingsBlock* node, bool modified, List list) {
248 Trace("Insert 0x%x l %d", node->address().value(), list);
252 Transaction lock(control_data_, node->address(), INSERT, list);
399 // A crash in between Remove and Insert will lead to a dirty entry not on the
413 Insert(node, modified, list);
657 if (INSERT == control_data_->operation) {
676 // This part will be skipped by the logic of Insert.
680 Insert(node, true, static_cast<List>(control_data_->operation_list));
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
errors.c 140 * on all message IDs of a certain severity, then Insert() one of the
148 * is the Insert() call.
154 * Because Insert() is the only place that will learn an ID's severity,
155 * it should insert an ID into the appropriate list, but only if the ID
416 #define INSERT 1
426 if (caller != INSERT)
466 if (caller == INSERT)
487 if (!validate_params(ctx, INSERT, source, type, severity))
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 42 private diff_match_patch.Operation INSERT = diff_match_patch.Operation.INSERT;
132 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "\u0001\u0002\u0001"), new Diff(INSERT, "\u0002\u0001\u0002"));
138 assertEquals("diff_charsToLines:", diffList(new Diff(EQUAL, "alpha\nbeta\nalpha\n"), new Diff(INSERT, "beta\nalpha\nbeta\n")), diffs);
166 diffs = diffList(new Diff(EQUAL, "a"), new Diff(DELETE, "b"), new Diff(INSERT, "c"));
168 assertEquals("diff_cleanupMerge: No change case.", diffList(new Diff(EQUAL, "a"), new Diff(DELETE, "b"), new Diff(INSERT, "c")), diffs);
178 diffs = diffList(new Diff(INSERT, "a"), new Diff(INSERT, "b"), new Diff(INSERT, "c"));
180 assertEquals("diff_cleanupMerge: Merge insertions.", diffList(new Diff(INSERT, "abc")), diffs)
    [all...]
diff_match_patch.java 119 * {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"),
124 DELETE, INSERT, EQUAL
210 diffs.add(new Diff(Operation.INSERT, text2));
226 Operation.DELETE : Operation.INSERT;
271 diffs.add(new Diff(Operation.INSERT, text2));
291 case INSERT:
342 // So we'll insert a junk entry to avoid generating a null character.
563 if (last_op == Operation.INSERT) {
566 path.addFirst(new Diff(Operation.INSERT,
569 last_op = Operation.INSERT;
    [all...]
  /external/mesa3d/src/mesa/main/
errors.c 140 * on all message IDs of a certain severity, then Insert() one of the
148 * is the Insert() call.
154 * Because Insert() is the only place that will learn an ID's severity,
155 * it should insert an ID into the appropriate list, but only if the ID
416 #define INSERT 1
426 if (caller != INSERT)
466 if (caller == INSERT)
487 if (!validate_params(ctx, INSERT, source, type, severity))
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 200 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
370 INSERT(OCH_, conc); /* offset is wrong */
495 INSERT(OPLUS_, pos);
497 INSERT(OQUEST_, pos);
501 INSERT(OPLUS_, pos);
506 INSERT(OCH_, pos); /* offset slightly wrong */
702 INSERT(OPLUS_, pos);
704 INSERT(OQUEST_, pos);
1165 INSERT(OCH_, start); /* offset is wrong... */
1178 INSERT(OCH_, start)
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_unittest.cc 274 INSERT,
354 State s(contents, index, INSERT);
457 // ever insert tests rather than append.
466 State s1(contents1, 0, MockTabStripModelObserver::INSERT);
487 State s1(contents2, 1, MockTabStripModelObserver::INSERT);
511 State s1(contents3, 2, MockTabStripModelObserver::INSERT);
556 State s5(detached, 2, MockTabStripModelObserver::INSERT);
    [all...]
  /external/llvm/lib/Support/
regcomp.c 132 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
276 INSERT(OCH_, conc); /* offset is wrong */
424 INSERT(OPLUS_, pos);
426 INSERT(OQUEST_, pos);
430 INSERT(OPLUS_, pos);
435 INSERT(OCH_, pos); /* offset slightly wrong */
609 INSERT(OPLUS_, pos);
611 INSERT(OQUEST_, pos);
1000 INSERT(OCH_, start); /* offset is wrong... */
1013 INSERT(OCH_, start)
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 131 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
268 INSERT(OCH_, conc); /* offset is wrong */
388 INSERT(OPLUS_, pos);
390 INSERT(OQUEST_, pos);
394 INSERT(OPLUS_, pos);
399 INSERT(OCH_, pos); /* offset slightly wrong */
573 INSERT(OPLUS_, pos);
575 INSERT(OQUEST_, pos);
964 INSERT(OCH_, start); /* offset is wrong... */
977 INSERT(OCH_, start)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java 1450 public Uri insert(Uri uri, ContentValues values) { method in class:ConversationCursor.ConversationProvider
    [all...]
  /external/mksh/src/
edit.c 3487 static int insert; \/* <>0 in insert mode *\/ variable
    [all...]
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 

Completed in 1170 milliseconds

1 2