/external/elfutils/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/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hashtab.h | 146 /* An enum saying whether we insert into the hash table or not. */ 147 enum insert_option {NO_INSERT, INSERT};
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
hashtab.h | 146 /* An enum saying whether we insert into the hash table or not. */ 147 enum insert_option {NO_INSERT, INSERT};
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hashtab.h | 146 /* An enum saying whether we insert into the hash table or not. */ 147 enum insert_option {NO_INSERT, INSERT};
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/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, 76 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid,
|
/external/chromium/net/disk_cache/ |
rankings.cc | 22 INSERT = 1, 235 void Rankings::Insert(CacheRankingsBlock* node, bool modified, List list) { 236 Trace("Insert 0x%x l %d", node->address().value(), list); 240 Transaction lock(control_data_, node->address(), INSERT, list); 382 // A crash in between Remove and Insert will lead to a dirty entry not on the 396 Insert(node, modified, list); 633 if (INSERT == control_data_->operation) { 652 // This part will be skipped by the logic of Insert. 656 Insert(node, true, static_cast<List>(control_data_->operation_list));
|
/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/ |
rankings.cc | 26 INSERT = 1, 244 void Rankings::Insert(CacheRankingsBlock* node, bool modified, List list) { 245 Trace("Insert 0x%x l %d", node->address().value(), list); 249 Transaction lock(control_data_, node->address(), INSERT, list); 396 // A crash in between Remove and Insert will lead to a dirty entry not on the 410 Insert(node, modified, list); 654 if (INSERT == control_data_->operation) { 673 // This part will be skipped by the logic of Insert. 677 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/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/chrome/browser/tabs/ |
tab_strip_model_unittest.cc | 273 INSERT, 337 State* s = new State(contents, index, INSERT); 413 // ever insert tests rather than append. 422 State s1(contents1, 0, MockTabStripModelObserver::INSERT); 438 State s1(contents2, 1, MockTabStripModelObserver::INSERT); 454 State s1(contents3, 2, MockTabStripModelObserver::INSERT); 484 State s3(detached, 2, MockTabStripModelObserver::INSERT); [all...] |
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_strip_model_unittest.cc | 271 INSERT, 330 State s(contents, index, INSERT); 427 // ever insert tests rather than append. 436 State s1(contents1, 0, MockTabStripModelObserver::INSERT); 457 State s1(contents2, 1, MockTabStripModelObserver::INSERT); 481 State s1(contents3, 2, MockTabStripModelObserver::INSERT); 526 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...] |
/external/chromium/chrome/browser/ui/gtk/tabs/ |
tab_strip_gtk.cc | 116 INSERT, 194 // an animation you need to insert a gap before a tab. 262 : TabAnimation(tabstrip, INSERT), 954 // has the Tab already constructed and we can just insert it into our list [all...] |
/external/chromium_org/chrome/browser/ui/gtk/tabs/ |
tab_strip_gtk.cc | 137 INSERT, 215 // an animation you need to insert a gap before a tab. 283 : TabAnimation(tabstrip, INSERT), [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationCursor.java | 1440 public Uri insert(Uri uri, ContentValues values) { method in class:ConversationCursor.ConversationProvider [all...] |
/external/mksh/src/ |
edit.c | 3472 static int insert; \/* non-zero in insert mode *\/ variable [all...] |
/external/robolectric/lib/main/ |
h2-1.2.147.jar | |