HomeSort by relevance Sort by last modified time
    Searched refs:Insert (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/srec/seti/sltsEngine/include/
linklist.h 48 LListResult Insert(LList *list, void *data);
  /external/llvm/include/llvm/IR/
IRBuilder.h 41 if (BB) BB->getInstList().insert(InsertPt, I);
142 /// \brief Returns true if this insert point is set.
149 /// \brief Returns the current insert point.
154 /// \brief Returns the current insert point, clearing it in the process.
161 /// \brief Sets the current insert point to a previously-saved location.
279 /// \brief Create and insert a memset to the specified pointer and the
292 /// \brief Create and insert a memcpy between the specified pointers.
307 /// \brief Create and insert a memmove between the specified
428 /// \brief Insert and return the specified instruction.
430 InstTy *Insert(InstTy *I, const Twine &Name = "") const
    [all...]
  /external/chromium/net/disk_cache/
mem_rankings.h 24 void Insert(MemEntryImpl* node);
mem_rankings.cc 16 void MemRankings::Insert(MemEntryImpl* node) {
50 Insert(node);
  /external/v8/test/cctest/
test-hashmap.cc 48 void Insert(int x) {
51 CHECK(p != NULL); // insert is set!
97 set.Insert(1);
98 set.Insert(2);
99 set.Insert(3);
102 set.Insert(2);
103 set.Insert(3);
127 // Insert a long series of values.
136 set.Insert(x);
  /external/chromium/chrome/common/extensions/
extension_set_unittest.cc 67 extensions.Insert(ext1);
72 extensions.Insert(ext2);
77 extensions.Insert(ext3);
78 extensions.Insert(ext4);
extension_set.h 32 void Insert(const scoped_refptr<const Extension>& extension);
  /external/openfst/src/include/fst/
heap.h 43 // to the calling functions on heap insert. This key can be used
64 // Insert a value into the heap
65 int Insert(const T& val) {
76 return Insert(val, size_ - 1);
86 Insert(val, i);
182 // Insert (update) element at subtree rooted at index i
183 int Insert(const T& val, int i) {
arcfilter.h 88 labels_.Insert(label);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 39 // to the calling functions on heap insert. This key can be used
58 // insert a value into the heap
59 int Insert(const T& val) {
70 return Insert(val, size_ - 1);
80 Insert(val, i);
169 // insert(update) element at subtree rooted at index i
170 int Insert(const T& val, int i) {
  /external/webrtc/src/system_wrappers/interface/
map_wrapper.h 44 int Insert(int id, void* ptr);
list_wrapper.h 82 // Insert list item after existing_previous_item. Please note that new_item
84 // new_item following a successfull insert. If insert fails new_item will
86 int Insert(ListItem* existing_previous_item,
89 // Insert list item before existing_next_item. Please note that new_item
91 // new_item following a successfull insert. If insert fails new_item will
  /frameworks/base/core/java/android/provider/
Contacts.java 543 return resolver.insert(GroupMembership.CONTENT_URI, values);
562 Uri contactUri = resolver.insert(People.CONTENT_URI, values);
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
bloom_filter.h 42 void Insert(SBPrefix hash);
bloom_filter_unittest.cc 41 values.insert(value);
42 filter->Insert(value);
90 filter_write->Insert(GenHash());
  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 61 int Insert(ListNoStlItem* existing_previous_item,
list_stl.h 57 int Insert(ListItem* existing_previous_item, ListItem* new_item);
map_no_stl.h 48 int Insert(int id, void* ptr);
  /packages/apps/Contacts/src/com/android/contacts/
NonPhoneActivity.java 29 import android.provider.ContactsContract.Intents.Insert;
88 intent.putExtra(Insert.PHONE, getArgumentPhoneNumber());
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactModifier.java 42 import android.provider.ContactsContract.Intents.Insert;
92 // Insert possible when have valid types and under overall maximum
302 * Find the best {@link EditType} for a potential insert. The "best" is the
346 * Insert a new child of kind {@link DataKind} into the given
361 * Insert a new child of kind {@link DataKind} into the given
472 // An empty Insert must be ignored, because it won't save anything (an example
541 parseExtras(state, kind, extras, Insert.PHONE_TYPE, Insert.PHONE, Phone.NUMBER);
542 parseExtras(state, kind, extras, Insert.SECONDARY_PHONE_TYPE, Insert.SECONDARY_PHONE
    [all...]
  /external/webrtc/src/common_audio/resampler/include/
resampler.h 84 int Insert(WebRtc_Word16* samplesIn, int lengthIn);
  /external/webrtc/src/system_wrappers/test/list/
list.cc 132 // Test Insert. Please note that old iterators are no longer valid at
135 FailTest(test_list.Insert(test_list.Last(),insert_item_last) != 0);
136 FailTest(test_list.Insert(NULL,insert_item_last) == 0);
138 FailTest(test_list.Insert(insert_item_last2,NULL) == 0);
164 // Test Insert APIs when list is empty
166 FailTest(test_list.Insert(NULL,new_item) != 0);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 28 import android.provider.ContactsContract.Intents.Insert;
433 extras.remove(Insert.NAME);
460 * the full contact editor. Ignore extras with the key {@link Insert.NAME} because names
474 if (intentExtraKeys.contains(Insert.NAME)) {
475 intentExtraKeys.remove(Insert.NAME);
480 boolean hasPhone = intentExtraKeys.contains(Insert.PHONE) &&
481 intentExtraKeys.contains(Insert.PHONE_TYPE);
482 boolean hasEmail = intentExtraKeys.contains(Insert.EMAIL) &&
483 intentExtraKeys.contains(Insert.EMAIL_TYPE);
486 return intentExtraKeys.contains(Insert.PHONE) |
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
AllIntentsActivity.java 40 import android.provider.ContactsContract.Intents.Insert;
280 intent.putExtra(Insert.PHONE, "5123456789");
287 intent.putExtra(Insert.EMAIL, "android@android.com");
307 intent.putExtra(Insert.EMAIL, "a");
313 intent.putExtra(Insert.PHONE, "800");
634 intent.putExtra(Insert.ACCOUNT, account);
635 intent.putExtra(Insert.DATA_SET, dataSet);
642 intent.putExtra(Insert.ACCOUNT, account);
643 intent.putExtra(Insert.DATA_SET, dataSet);
665 intent.putParcelableArrayListExtra(Insert.DATA, Lists.newArrayList(row1, row2))
    [all...]
  /external/grub/docs/
menu.lst 39 pause Insert the diskette now!!

Completed in 670 milliseconds

1 2 3 4 5 6 7