HomeSort by relevance Sort by last modified time
    Searched defs:insert (Results 1076 - 1100 of 1909) sorted by null

<<41424344454647484950>>

  /external/swiftshader/src/OpenGL/compiler/
SymbolTable.h 209 bool insert(TSymbol *symbol);
211 // Insert a function using its unmangled name as the key.
338 return insert(currentLevel(), symbol);
341 bool insert(ESymbolLevel level, TSymbol *symbol) function in class:TSymbolTable
343 return table[level]->insert(symbol);
350 return insert(level, constant);
436 insert(level, function);
500 mInvariantVaryings.insert(originalName);
518 // Used to insert unmangled functions to check redeclaration of built-ins in ESSL 3.00.
519 void insertUnmangledBuiltIn(const char *name) { mUnmangledBuiltinNames.insert(std::string(name));
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallVector.h 401 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorTemplateCommon::SmallVectorImpl
429 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorTemplateCommon::SmallVectorImpl
471 // Insert the non-overwritten middle part.
477 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorTemplateCommon::SmallVectorImpl
523 // Insert the non-overwritten middle part.
ilist.h 409 iterator insert(iterator where, NodeTy *New) { function in class:llvm::iplist
427 return insert(begin(), New);
429 return insert(++where, New);
535 void push_front(NodeTy *val) { insert(begin(), val); }
536 void push_back(NodeTy *val) { insert(end(), val); }
546 // Special forms of insert...
547 template<class InIt> void insert(iterator where, InIt first, InIt last) { function in class:llvm::iplist
548 for (; first != last; ++first) insert(where, *first);
628 insert(this->begin(), right.begin(), right.end());
631 insert(this->begin(), count, NodeTy())
646 iterator insert(iterator where, const NodeTy &val) { function in struct:llvm::ilist
656 template<class InIt> void insert(iterator where, InIt first, InIt last) { function in struct:llvm::ilist
659 void insert(iterator where, size_type count, const NodeTy &val) { function in struct:llvm::ilist
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineBasicBlock.h 315 /// not a PHI or a label. This is the correct point to insert copies at the
348 void insert(iterator I, IT S, IT E) { Insts.insert(I, S, E); } function in class:llvm::MachineBasicBlock
349 iterator insert(iterator I, MachineInstr *M) { return Insts.insert(I, M); } function in class:llvm::MachineBasicBlock
363 /// and insert it into this MBB right before 'where'.
369 /// To), and insert them into this MBB right before 'where'.
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFObjectWriter.cpp 119 size_t insert(llvm::StringRef String);
292 size_t StringTable::insert(llvm::StringRef String) { function in class:StringTable
300 // Insert string data into string table.
301 Data.insert(Data.end(), String.begin(), String.end());
476 size_t StringTableEntry = Strings.insert(S.Name.c_str());
504 size_t StringTableEntry = Strings.insert(S.Name.c_str());
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
MergeFunctions.cpp 411 if (!seen_values.insert(V2).second)
512 VisitedBBs.insert(F1BBs[0]);
525 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
559 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
561 bool insert(ComparableFunction &NewF);
590 /// The set of all distinct functions. Use the insert() and remove() methods
627 // Insert only strong functions and merge them. Strong function merging
636 Changed |= insert(CF);
640 // Insert only weak functions and merge them. By doing these second we
651 Changed |= insert(CF)
811 bool MergeFunctions::insert(ComparableFunction &NewF) { function in class:MergeFunctions
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DenseMap.h 172 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::DenseMapBase
179 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::DenseMapBase
193 // Otherwise, insert the new element.
210 // Otherwise, insert the new element.
216 /// Alternate version of insert() which allows a different, and possibly
229 // Otherwise, insert the new element.
236 /// insert - Range insertion of pairs.
238 void insert(InputIt I, InputIt E) { function in class:llvm::DenseMapBase
240 insert(*I);
339 // Insert all the old elements
    [all...]
SmallVector.h 464 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl
494 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl
523 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl
569 // Insert the non-overwritten middle part.
575 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl
626 // Insert the non-overwritten middle part.
631 void insert(iterator I, std::initializer_list<T> IL) { function in class:llvm::SmallVectorImpl
632 insert(I, IL.begin(), IL.end());
  /external/swiftshader/third_party/subzero/src/
IceTargetLowering.h 68 /// a node, and insert new (lowered) instructions at the current point. Along
96 void insert(Inst *Instr);
97 template <typename Inst, typename... Args> Inst *insert(Args &&... A) { function in class:Ice::LoweringContext
99 insert(New);
218 /// Randomly insert NOPs.
365 Context.insert<InstBundleLock>(BundleOption);
367 void _bundle_unlock() { Context.insert<InstBundleUnlock>(); }
439 /// the UnimplementedLoweringError macro to insert fake uses of all the
525 Context.insert<InstAssign>(T, Undef);
527 Context.insert<InstFakeDef>(T)
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
inlined_vector.h 236 iterator insert(iterator pos, const value_type& v);
569 typename InlinedVector<T, N>::iterator InlinedVector<T, N>::insert( function in class:tensorflow::gtl::InlinedVector
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
methods-expected.cc 258 void insert(int x) {} function in class:blink::blacklisting_of_method_and_function_names::Foo
methods-original.cc 262 void insert(int x) {} function in class:blink::blacklisting_of_method_and_function_names::Foo
  /external/vogar/src/vogar/android/
AndroidSdk.java 347 dexCache.insert(cacheKey, output);
  /external/zlib/src/
deflate.h 162 uInt strstart; /* start of string to insert */
183 /* Insert new strings in the hash table only if the match length is not
253 uInt insert; /* bytes at end of window left to insert */ member in struct:internal_state
  /frameworks/base/core/java/android/app/slice/
SliceProvider.java 344 public final Uri insert(Uri uri, ContentValues values) { method in class:SliceProvider
345 if (DEBUG) Log.d(TAG, "insert " + uri);
  /frameworks/base/core/java/android/content/
ContentProviderNative.java 152 Uri out = insert(callingPkg, url, values);
463 public Uri insert(String callingPkg, Uri url, ContentValues values) throws RemoteException method in class:ContentProviderProxy
  /frameworks/base/core/java/android/provider/
VoicemailContract.java 166 /** URI to insert/retrieve voicemails. */
408 public static Uri insert(Context context, Voicemail voicemail) { method in class:VoicemailContract.Voicemails
411 return contentResolver.insert(buildSourceUri(context.getPackageName()), contentValues);
423 public static int insert(Context context, List<Voicemail> voicemails) { method in class:VoicemailContract.Voicemails
428 contentResolver.insert(buildSourceUri(context.getPackageName()), contentValues);
475 /** URI to insert/retrieve status of voicemail source. */
  /frameworks/base/keystore/java/android/security/
KeyStore.java 210 return insert(key, value, uid, flags) == NO_ERROR;
213 public int insert(String key, byte[] value, int uid, int flags) { method in class:KeyStore
218 return mBinder.insert(key, value, uid, flags);
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDatabase.java 385 final long id = mDatabase.insert(TABLE_DOCUMENTS, null, values);
703 mDatabase.insert(TABLE_LAST_BOOT_COUNT, null, values);
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GsmInboundSmsHandlerTest.java     [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetMetaDataTest.java 238 String insert1 = "insert into hutch (id, animal_id, address) values (1, 2, 'Birds-house, 1');";
239 String insert2 = "insert into hutch (id, animal_id, address) values (2, 1, 'Horse-house, 5');";
284 String insert = "insert into DecimalNumbers values (1.5, 20.55, 30.666, 100000);"; local
288 st2.executeUpdate(insert);
349 String insert = "insert into DecimalNumbers values (1.5, 20.55, 30.666);"; local
354 st.executeUpdate(insert);
  /packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
BluetoothMapEmailProvider.java 314 * First create a message in the DB using insert into the message DB
446 * Insert is used to add new messages to the data base.
447 * Insert message approach:
448 * - Insert an empty message to get an _id with only a folder_id
454 public Uri insert(Uri uri, ContentValues values) { method in class:BluetoothMapEmailProvider
467 Log.d(TAG, "insert(): uri=" + uri.toString() + " - getLastPathSegment() = "
473 Log.i(TAG, "insert() ID: " + id);
  /packages/apps/Calendar/tests/src/com/android/calendar/
AsyncQueryServiceTest.java 614 public Uri insert(Uri uri, ContentValues values) { method in class:AsyncQueryServiceTest.TestProvider
615 Log.d(TAG, "Provider insert index=" + index);
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockContentProvider.java 234 public static class Insert {
242 * Creates a new Insert to expect.
245 * @param contentValues the ContentValues to insert.
249 public Insert(Uri uri, ContentValues contentValues, Uri resultUri) {
256 * Causes this insert expectation to be useable for mutliple calls to insert, rather than
261 public Insert anyNumberOfTimes() {
278 Insert insert = (Insert) o local
555 public Uri insert(Uri uri, ContentValues values) { method in class:MockContentProvider
560 Insert insert = iterator.next(); local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
SystemCallLogDataSource.java 257 "found %d entries to insert/update",
353 mutations.insert(id, contentValues);

Completed in 1682 milliseconds

<<41424344454647484950>>