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

<<41424344454647484950>>

  /toolchain/binutils/binutils-2.27/zlib/
deflate.h 159 uInt strstart; /* start of string to insert */
180 /* Insert new strings in the hash table only if the match length is not
250 uInt insert; /* bytes at end of window left to insert */ member in struct:internal_state
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleDatabaseOperations.java 381 // Insert a new local conversation for this thread id
404 final long conversationRowId = dbWrapper.insert(DatabaseHelper.CONVERSATIONS_TABLE, null,
409 LogUtil.e(TAG, "BugleDatabaseOperations : failed to insert conversation into table");
1146 final SQLiteStatement insert = messagePart.getInsertStatement(dbWrapper, conversationId); local
1168 final SQLiteStatement insert = message.getInsertStatement(dbWrapper); local
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 353 * insert() now ensures these four columns are never null for new downloads, so this method
557 public Uri insert(final Uri uri, final ContentValues values) { method in class:DownloadProvider
564 Log.d(Constants.TAG, "calling insert on an unknown/invalid URI: " + uri);
721 long rowID = db.insert(DB_TABLE, null, filteredValues);
723 Log.d(Constants.TAG, "couldn't insert into downloads database");
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 183 * This is used to insert a new event into the database. The event is
188 private class Insert implements Command {
191 public Insert(String eventName) {
196 Log.i(TAG, "insert " + eventInfo.mTitle);
776 new Insert("normal0"),
777 new Insert("normal1"),
778 new Insert("normal2"),
2779 public Uri insert(Uri uri, ContentValues values) { method in class:CalendarProvider2Test.MockProvider
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
AsyncQueryHandlerTest.java 49 private static final Object INSERT_COOKIE = "insert cookie";
82 mResolver.insert(DummyProvider.CONTENT_URI, values0);
86 mResolver.insert(DummyProvider.CONTENT_URI, values1);
90 mResolver.insert(DummyProvider.CONTENT_URI, values2);
115 // insert without cancelling.
124 // insert will be cancelled.
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_FilesTest.java 103 mResolver.insert(allFilesUri, values);
113 Uri fileUri = mResolver.insert(allFilesUri, values);
135 Uri foo = mResolver.insert(allFilesUri, values);
150 // insert file and check its parent
155 fileUri = mResolver.insert(allFilesUri, values);
189 Uri fileUri = mResolver.insert(allFilesUri, values);
214 // insert some dummy starter data into the provider
219 Uri uri = mResolver.insert(MediaStore.Images.Media.INTERNAL_CONTENT_URI, values);
266 // Insert a private file into the database. Since it's private, the media provider won't
366 // insert temp fil
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsTest.java 91 // Test: insert
99 Uri uri = mProvider.insert(People.CONTENT_URI, value);
165 // Test: insert
171 Uri uri = mProvider.insert(Groups.CONTENT_URI, value);
229 // Test: insert
235 mProvider.insert(Photos.CONTENT_URI, value);
238 // Don't support direct insert operation to photos URI.
270 Uri peopleUri = mProvider.insert(People.CONTENT_URI, value);
273 // Test: insert
280 Uri uri = mProvider.insert(Phones.CONTENT_URI, value)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Misc.py 1130 def insert(self, key, newkey, newvalue, order): member in class:sdict
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/
MethodWriter.java 1737 int insert = 0; \/\/ bytes to be added after this instruction local
    [all...]
  /external/autotest/site_utils/rpm_control_system/
BeautifulSoup.py 157 oldParent.insert(myIndex, replaceWith)
166 myParent.insert(myIndex, child)
204 def insert(self, position, newChild): member in class:PageElement
261 self.contents.insert(position, newChild)
265 self.insert(len(self.contents), tag)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp 1000 const deUint32 insert = ((const deUint32*)inputs[1])[compNdx]; local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp 796 m_spec.inputs.push_back(Symbol("insert", glu::VarType(baseType, precision)));
800 m_spec.source = "result = bitfieldInsert(base, insert, offset, bits);";
840 const deUint32 insert = ((const deUint32*)inputs[1])[compNdx]; local
844 const deUint32 ref = (base & ~(mask<<offset)) | ((insert & mask)<<offset);
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
LambdaDesugaring.java 480 * Tries to insert a new/dup for the given class name before expected existing instructions that
487 * such more complicated cases this method may fail to insert a new/dup pair and returns {@code
493 * @return {@code true} if we were able to insert a new/dup, {@code false} otherwise
498 // after which we need to insert our NEW/DUP pair
558 instructions.insert(newInsn);
560 instructions.insert(insn, newInsn);
562 instructions.insert(newInsn, new InsnNode(Opcodes.DUP));
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h 200 * If the element does not exist then it is inserted via the insert(Index,Index) function
203 * This is a O(log(nnz_j)) operation (binary search) plus the cost of insert(Index,Index)
217 return insert(row,col);
222 return insert(row,col);
240 Scalar& insert(Index row, Index col);
382 * \sa insert, insertBackByOuterInner, startVec */
456 * same as insert(Index,Index) except that the indices are given relative to the storage order */
459 return insert(IsRowMajor ? j : i, IsRowMajor ? i : j);
1129 typename SparseMatrix<_Scalar,_Options,_StorageIndex>::Scalar& SparseMatrix<_Scalar,_Options,_StorageIndex>::insert(Index row, Index col) function in class:Eigen::SparseMatrix
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 1816 PSH_Point* insert; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateIntervalFormat.java     [all...]
MessagePattern.java 388 modified.insert(part.index, (char)part.value);
    [all...]
NFRule.java 689 ruleTextCopy.insert(sub2.getPos(), sub2.toString());
692 ruleTextCopy.insert(sub1.getPos(), sub1.toString());
745 // first, insert the rule's rule text into toInsertInto at the
746 // specified position, then insert the results of the substitutions
753 toInsertInto.insert(pos, ruleText);
760 toInsertInto.insert(pos, ruleText.substring(pluralRuleEnd + 2));
762 toInsertInto.insert(pos, rulePatternFormat.format(number / power(radix, exponent)));
764 toInsertInto.insert(pos, ruleText.substring(0, pluralRuleStart));
786 // first, insert the rule's rule text into toInsertInto at the
787 // specified position, then insert the results of the substitution
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
StringTrieBuilder.java 403 // Mismatch, insert a branch node.
509 chars.insert(i, c);
527 chars.insert(i, c);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UTF16Test.java 510 * Testing UTF16 class method insert
522 UTF16.insert(strbuff, 5, 't');
523 UTF16.insert(strbuff, 5, 's');
524 UTF16.insert(strbuff, 5, 'e');
525 UTF16.insert(strbuff, 5, 't');
529 length = UTF16.insert(array, length, 5, 't');
530 length = UTF16.insert(array, length, 5, 's');
531 length = UTF16.insert(array, length, 5, 'e');
532 length = UTF16.insert(array, length, 5, 't');
537 UTF16.insert(strbuff, 0, 0x10000)
    [all...]
  /external/icu/icu4c/source/test/intltest/
tstnorm.cpp 503 inline static void insert(UnicodeString& dest, int pos, UChar32 ch) function
523 insert(reverse, 0, ch);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateIntervalFormat.java     [all...]
MessagePattern.java 411 modified.insert(part.index, (char)part.value);
    [all...]
NFRule.java 688 ruleTextCopy.insert(sub2.getPos(), sub2.toString());
691 ruleTextCopy.insert(sub1.getPos(), sub1.toString());
744 // first, insert the rule's rule text into toInsertInto at the
745 // specified position, then insert the results of the substitutions
752 toInsertInto.insert(pos, ruleText);
759 toInsertInto.insert(pos, ruleText.substring(pluralRuleEnd + 2));
761 toInsertInto.insert(pos, rulePatternFormat.format(number / power(radix, exponent)));
763 toInsertInto.insert(pos, ruleText.substring(0, pluralRuleStart));
785 // first, insert the rule's rule text into toInsertInto at the
786 // specified position, then insert the results of the substitution
    [all...]

Completed in 1713 milliseconds

<<41424344454647484950>>