HomeSort by relevance Sort by last modified time
    Searched refs:insert (Results 26 - 50 of 2365) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_GroupMembershipTest.java 51 TestRawContact rawContact = mBuilder.newRawContact().insert();
52 TestGroup group = mBuilder.newGroup().insert();
55 .insert();
66 .insert();
71 .insert();
74 .insert();
86 .insert();
89 .insert();
  /external/webkit/Source/WebCore/css/
StyleList.cpp 38 void StyleList::insert(unsigned position, PassRefPtr<StyleBase> child) function in class:WebCore::StyleList
44 m_children.insert(position, child);
  /libcore/luni/src/main/java/java/lang/
StringBuffer.java 431 * the index at which to insert.
433 * the character to insert.
438 public synchronized StringBuffer insert(int index, char ch) { method in class:StringBuffer
448 * the index at which to insert.
450 * the boolean to insert.
455 public StringBuffer insert(int index, boolean b) { method in class:StringBuffer
456 return insert(index, b ? "true" : "false");
464 * the index at which to insert.
466 * the integer to insert.
471 public StringBuffer insert(int index, int i) method in class:StringBuffer
487 public StringBuffer insert(int index, long l) { method in class:StringBuffer
503 public StringBuffer insert(int index, double d) { method in class:StringBuffer
519 public StringBuffer insert(int index, float f) { method in class:StringBuffer
539 public StringBuffer insert(int index, Object obj) { method in class:StringBuffer
557 public synchronized StringBuffer insert(int index, String string) { method in class:StringBuffer
575 public synchronized StringBuffer insert(int index, char[] chars) { method in class:StringBuffer
600 public synchronized StringBuffer insert(int index, char[] chars, int start, int length) { method in class:StringBuffer
621 public synchronized StringBuffer insert(int index, CharSequence s) { method in class:StringBuffer
649 public synchronized StringBuffer insert(int index, CharSequence s, method in class:StringBuffer
    [all...]
  /external/llvm/lib/Transforms/IPO/
Internalize.cpp 75 ExternalNames.insert(APIList.begin(), APIList.end());
83 ExternalNames.insert(*itr);
99 ExternalNames.insert(Symbol);
120 ExternalNames.insert(MainFunc->getName());
125 // Never internalize functions which code-gen might insert.
128 ExternalNames.insert("__stack_chk_fail");
149 ExternalNames.insert("llvm.used");
150 ExternalNames.insert("llvm.compiler.used");
154 ExternalNames.insert("llvm.global_ctors");
155 ExternalNames.insert("llvm.global_dtors")
    [all...]
  /external/srec/tools/grxmlcompile/
testhashmap.cpp 47 myHash.insert(1, i);
72 myHash.insert(1, value);
73 myHash.insert(2, "world");
121 void insert(int i, const string &s);
130 insert(1,s);
131 insert(2,"world");
143 insert(3,s);
145 insert(3,"zzz");
148 insert(3,"zzz");
176 void insert( int i, const string &s
    [all...]
  /external/v8/test/mjsunit/tools/
splaytree.js 35 tree.insert(0, 'value');
43 tree.insert(0, 'value');
45 tree.insert(0, 'value');
62 // We can't use the 'insert' method because it also uses 'splay_'.
97 tree.insert(5, 'root');
98 tree.insert(3, 'left');
100 tree.insert(7, 'right');
107 tree.insert(5, 'root');
108 tree.insert(3, 'left');
109 tree.insert(7, 'right')
    [all...]
  /external/stlport/test/unit/
hash_test.cpp 93 pair<maptype::iterator, bool> p = m.insert(pair<const char, crope>('c', crope("100")));
97 p = m.insert(pair<const char, crope>('c', crope("100")));
119 m.insert(pair<const char,int>('X', 10)); // Standard way.
121 // m.insert('X', 20); // Non-standard, but very convenient!
122 m.insert(pair<const char,int>('X', 20)); // jbuck: standard way
124 // m.insert('Y', 32);
125 m.insert(pair<const char,int>('Y', 32)); // jbuck: standard way
155 hmap.insert(HMapType::value_type(1, counter));
157 hmap.insert(HMapType::value_type(12325, 1));
158 hmap.insert(HMapType::value_type(12325, 2))
    [all...]
set_test.cpp 23 CPPUNIT_TEST(insert);
40 void insert();
60 s.insert(42);
62 s.insert(42);
72 pair<int_set::iterator, bool> p = s.insert(42);
74 p = s.insert(42);
78 s.insert(array1, array1 + 4);
97 s.insert(1);
105 void SetTest::insert() function in class:SetTest
108 set<int>::iterator i = s.insert( s.end(), 0 )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
hash_test.cpp 93 pair<maptype::iterator, bool> p = m.insert(pair<const char, crope>('c', crope("100")));
97 p = m.insert(pair<const char, crope>('c', crope("100")));
119 m.insert(pair<const char,int>('X', 10)); // Standard way.
121 // m.insert('X', 20); // Non-standard, but very convenient!
122 m.insert(pair<const char,int>('X', 20)); // jbuck: standard way
124 // m.insert('Y', 32);
125 m.insert(pair<const char,int>('Y', 32)); // jbuck: standard way
155 hmap.insert(HMapType::value_type(1, counter));
157 hmap.insert(HMapType::value_type(12325, 1));
158 hmap.insert(HMapType::value_type(12325, 2))
    [all...]
set_test.cpp 23 CPPUNIT_TEST(insert);
40 void insert();
60 s.insert(42);
62 s.insert(42);
72 pair<int_set::iterator, bool> p = s.insert(42);
74 p = s.insert(42);
78 s.insert(array1, array1 + 4);
97 s.insert(1);
105 void SetTest::insert() function in class:SetTest
108 set<int>::iterator i = s.insert( s.end(), 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 93 pair<maptype::iterator, bool> p = m.insert(pair<const char, crope>('c', crope("100")));
97 p = m.insert(pair<const char, crope>('c', crope("100")));
119 m.insert(pair<const char,int>('X', 10)); // Standard way.
121 // m.insert('X', 20); // Non-standard, but very convenient!
122 m.insert(pair<const char,int>('X', 20)); // jbuck: standard way
124 // m.insert('Y', 32);
125 m.insert(pair<const char,int>('Y', 32)); // jbuck: standard way
155 hmap.insert(HMapType::value_type(1, counter));
157 hmap.insert(HMapType::value_type(12325, 1));
158 hmap.insert(HMapType::value_type(12325, 2))
    [all...]
set_test.cpp 23 CPPUNIT_TEST(insert);
40 void insert();
60 s.insert(42);
62 s.insert(42);
72 pair<int_set::iterator, bool> p = s.insert(42);
74 p = s.insert(42);
78 s.insert(array1, array1 + 4);
97 s.insert(1);
105 void SetTest::insert() function in class:SetTest
108 set<int>::iterator i = s.insert( s.end(), 0 )
    [all...]
  /external/clang/include/clang/Edit/
EditsReceiver.h 25 virtual void insert(SourceLocation loc, StringRef text) = 0;
  /external/icu4c/layout/
MultipleSubstSubtables.cpp 74 le_int32 insert = 0, direction = 1; local
77 insert = glyphCount - 1;
84 newGlyphs[insert] = LE_SET_GLYPH(glyph, substitute);
85 insert += direction;
  /external/libxml2/
dict.c 760 xmlDictEntryPtr insert; local
775 insert = NULL;
777 for (insert = &(dict->dict[key]); insert->next != NULL;
778 insert = insert->next) {
780 if ((insert->okey == okey) && (insert->len == len)) {
781 if (!memcmp(insert->name, name, len))
782 return(insert->name)
892 xmlDictEntryPtr insert; local
995 xmlDictEntryPtr insert; local
    [all...]
hash.c 526 xmlHashEntryPtr insert; local
557 insert = NULL;
560 for (insert = &(table->table[key]); insert->next != NULL;
561 insert = insert->next) {
562 if ((insert->name == name) &&
563 (insert->name2 == name2) &&
564 (insert->name3 == name3))
568 if ((insert->name == name) &
642 xmlHashEntryPtr insert; local
    [all...]
  /external/llvm/lib/Target/X86/
X86COFFMachineModuleInfo.h 34 Externals.insert(Symbol);
  /external/webkit/Source/WebCore/dom/
RawDataDocumentParser.h 47 virtual void insert(const SegmentedString&) function in class:WebCore::RawDataDocumentParser
  /external/chromium/chrome/browser/sync/
backend_migrator_unittest.cc 34 preferred_types_.insert(syncable::BOOKMARKS);
35 preferred_types_.insert(syncable::PREFERENCES);
36 preferred_types_.insert(syncable::AUTOFILL);
93 to_migrate.insert(syncable::PREFERENCES);
94 difference.insert(syncable::AUTOFILL);
95 difference.insert(syncable::BOOKMARKS);
121 to_migrate.insert(syncable::PREFERENCES);
143 to_migrate1.insert(syncable::PREFERENCES);
144 to_migrate2.insert(syncable::AUTOFILL);
145 bookmarks.insert(syncable::BOOKMARKS)
    [all...]
  /external/clang/test/Analysis/
iterators.cpp 47 // calling insert invalidates unless assigned to as result, but still
49 it = v.insert( it, 1 ); // no-warning
50 *et; // expected-warning{{Attempt to use an iterator made invalid by call to 'insert'}}
61 it = v.insert( it, 1 ); // expected-warning{{Attempt to use an iterator made invalid by call to 'erase'}}
62 // now valid after return from insert
74 v.insert( it, 1 ); // no-warning
75 *it; // expected-warning{{Attempt to use an iterator made invalid by call to 'insert'}}
76 it = v.insert( it, 1 ); // expected-warning{{Attempt to use an iterator made invalid by call to 'insert'}}
90 v.insert( b, 1 ); // no-warnin
    [all...]
  /external/llvm/unittests/ADT/
SparseSetTest.cpp 46 std::pair<USet::iterator, bool> IP = Set.insert(5);
61 // Redundant insert.
62 IP = Set.insert(5);
84 Set.insert(5);
85 Set.insert(3);
86 Set.insert(2);
87 Set.insert(1);
88 Set.insert(4);
105 // Redundant insert.
106 std::pair<USet::iterator, bool> IP = Set.insert(3)
    [all...]
  /external/llvm/include/llvm/ADT/
SetVector.h 1 //===- llvm/ADT/SetVector.h - Set with insert order iteration ---*- C++ -*-===//
54 insert(Start, End);
100 /// @brief Insert a new element into the SetVector.
101 bool insert(const value_type &X) {
102 bool result = set_.insert(X);
108 /// @brief Insert a range of elements into the SetVector.
110 void insert(It Start, It End) {
112 if (set_.insert(*Start))
177 this->insert(Start, End);
  /cts/tests/tests/permission2/src/android/permission2/cts/
WriteSocialStreamPermissionTest.java 40 mResolver.insert(Uri.withAppendedPath(
52 mResolver.insert(StreamItems.CONTENT_URI, values);
  /development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
Utils.java 44 sbMethods.insert(0, method + "\r\n");
53 sbStatus.insert(0,key + ": " + mStatusTracker.getStatus(key) + "\n");
  /external/chromium/chrome/browser/sync/notifier/
non_blocking_invalidation_notifier_unittest.cc 62 types.insert(syncable::BOOKMARKS);
63 types.insert(syncable::AUTOFILL);

Completed in 831 milliseconds

12 3 4 5 6 7 8 91011>>