HomeSort by relevance Sort by last modified time
    Searched refs:Insert (Results 76 - 100 of 149) sorted by null

1 2 34 5 6

  /external/chromium/chrome/browser/safe_browsing/
filter_false_positive_perftest.cc 115 (*bloom_filter)->Insert(prefixes[i]);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 127 (* Insert an explicit fall through from the current block to the
167 (* Create the "after loop" block and insert it. *)
171 (* Insert the conditional branch into the end of loop_end_bb. *)
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
WebViewContextMenu.java 224 addIntent.putExtra(ContactsContract.Intents.Insert.PHONE, decodedPhoneExtra);
  /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));
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 464 intent.putExtra(ContactsContract.Intents.Insert.EMAIL, address);
466 intent.putExtra(ContactsContract.Intents.Insert.PHONE, address);
467 intent.putExtra(ContactsContract.Intents.Insert.PHONE_TYPE,
710 // Test code used for various scenarios where its desirable to insert a delay in
    [all...]
  /external/v8/src/
log.cc 90 void Insert(TickSample* sample) {
198 if (profiler_) profiler_->Insert(sample);
316 Insert(&sample);
384 void Insert(Address code_address, const char* name, int name_size) {
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 183 (* Insert an explicit fall through from the current block to the
224 (* Create the "after loop" block and insert it. *)
227 (* Insert the conditional branch into the end of loop_end_bb. *)
  /external/openfst/src/include/fst/
util.h 137 c->insert(c->end(), value); \
155 c->insert(value); \
374 void Insert(Key key) {
375 set_.insert(key);
queue.h 225 key_[s] = heap_.Insert(s);
227 heap_.Insert(s);
  /external/v8/benchmarks/
splay.js 72 // Insert new node with a unique key.
78 splayTree.insert(key, payload);
157 * @param {number} key Key to insert into the tree.
158 * @param {*} value Value to insert into the tree.
160 SplayTree.prototype.insert = function(key, value) {
209 // Insert the original right child as the right child of the new
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-splay.js 67 // Insert new node with a unique key.
72 splayTree.insert(key, GeneratePayloadTree(kSplayTreePayloadDepth, key));
151 * @param {number} key Key to insert into the tree.
152 * @param {*} value Value to insert into the tree.
154 SplayTree.prototype.insert = function(key, value) {
203 // Insert the original right child as the right child of the new
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-splay.js 67 // Insert new node with a unique key.
72 splayTree.insert(key, GeneratePayloadTree(kSplayTreePayloadDepth, key));
151 * @param {number} key Key to insert into the tree.
152 * @param {*} value Value to insert into the tree.
154 SplayTree.prototype.insert = function(key, value) {
203 // Insert the original right child as the right child of the new
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 67 // Insert new node with a unique key.
73 splayTree.insert(key, payload);
152 * @param {number} key Key to insert into the tree.
153 * @param {*} value Value to insert into the tree.
155 SplayTree.prototype.insert = function(key, value) {
204 // Insert the original right child as the right child of the new
  /external/webkit/Source/WebKit/wx/
WebBrowserShell.cpp 186 GetMenuBar()->Insert((size_t)prevMenu+1, m_debugMenu, _("&Debug"));
  /packages/apps/Contacts/src/com/android/contacts/
CallDetailActivity.java 50 import android.provider.Contacts.Intents.Insert;
459 // the Insert.PHONE extra only works correctly for PSTN numbers.
462 // - define ContactsContract.Intents.Insert.SIP_ADDRESS, and use it here if
464 // - update the contacts UI code to handle Insert.SIP_ADDRESS by
473 mainActionIntent.putExtra(Insert.PHONE, mNumber);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 85 * {@link android.provider.ContactsContract.Intents.Insert#PHONE} with type
86 * {@link android.provider.ContactsContract.Intents.Insert#PHONE_TYPE} or
87 * {@link android.provider.ContactsContract.Intents.Insert#EMAIL} with type
88 * {@link android.provider.ContactsContract.Intents.Insert#EMAIL_TYPE} intent keys.
242 if (extras.containsKey(ContactsContract.Intents.Insert.PHONE)) {
244 } else if (extras.containsKey(ContactsContract.Intents.Insert.EMAIL)) {
681 // If no valid raw contact (to insert the data) was found, we won't have an editable
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 240 (Account) mIntentExtras.getParcelable(Intents.Insert.ACCOUNT);
242 mIntentExtras.getString(Intents.Insert.DATA_SET);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 368 (Account) mIntentExtras.getParcelable(Intents.Insert.ACCOUNT);
370 mIntentExtras.getString(Intents.Insert.DATA_SET);
503 EntityDelta insert = new EntityDelta(ValuesDelta.fromAfter(values)); local
504 insert.setProfileQueryUri();
505 mState.add(insert);
645 EntityDelta insert = new EntityDelta(ValuesDelta.fromAfter(values)); local
648 EntityModifier.parseExtras(mContext, newAccountType, insert, mIntentExtras);
650 EntityModifier.migrateStateForNewContact(mContext, oldState, insert,
656 EntityModifier.ensureKindExists(insert, newAccountType, Phone.CONTENT_ITEM_TYPE);
657 EntityModifier.ensureKindExists(insert, newAccountType, Email.CONTENT_ITEM_TYPE)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 305 // insert/extract elements, and if there was at least one use that had
308 // we just get a lot of insert/extracts. If at least one vector is
323 // Create and insert the integer alloca.
337 /// Here we turn element accesses into insert/extract element operations.
339 /// into a <4 x float> that uses insert element.
341 /// large) integer type with extract and insert operations where the loads
521 /// vector with insert/extractelement instructions.
675 /// insert/extractelement instructions.
785 /// ConvertScalar_InsertValue - Insert the value "SV" into the existing integer
790 /// vector with insert/extractelement instructions
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface_unittest.cc 495 TEST_F(CommandLineInterfaceTest, Insert) {
505 "--test_out=insert=test_generator,test_plugin:$tmpdir "
506 "--plug_out=insert=test_generator,test_plugin:$tmpdir "
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
queue.h 205 key_[s] = heap_.Insert(s);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 329 FIList.Insert(Index, Value);
  /external/chromium/chrome/browser/resources/net_internals/
util.js 192 // Insert empty new row at start of |rows_| if currently no header row.
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 62 * @param {number} key Key to insert into the tree.
63 * @param {*} value Value to insert into the tree.
65 SplayTree.prototype.insert = function(key, value) {
114 // Insert the original right child as the right child of the new

Completed in 1130 milliseconds

1 2 34 5 6