Searched defs:Insert (Results 1 - 3 of 3) sorted by relevance

/art/compiler/utils/
H A Dgrowable_array.h78 // Insert an element to the end of a list, resizing if necessary.
79 void Insert(T elem) { function in class:art::GrowableArray
88 Insert(elem);
96 Insert(elem);
/art/runtime/
H A Dintern_table.cc71 strong_interns_.Insert(new_ref);
108 strong_interns_.Insert(s);
117 weak_interns_.Insert(s);
133 // Insert/remove methods used to undo changes made during an aborted transaction.
234 mirror::String* InternTable::Insert(mirror::String* s, bool is_strong) { function in class:art::InternTable
263 // No match in the strong table or the weak table. Insert into the strong / weak table.
279 return Insert(s, true);
283 return Insert(s, false);
379 void InternTable::Table::Insert(mirror::String* s) { function in class:art::InternTable::Table
382 post_zygote_table_.Insert(GcRoo
[all...]
/art/runtime/base/
H A Dhash_set.h321 // Insert an element, allows duplicates.
322 void Insert(const T& element) { function in class:art::HashSet

Completed in 141 milliseconds