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

1 2 34 5 6 7 8 9

  /sdk/rule_api/src/com/android/ide/common/api/
IViewRule.java 261 * (where views are created in the destination and then deleted from the source), and
293 * Called when one or more children are about to be deleted by the user. Note that
294 * children deleted programmatically from view rules (via
301 * @param deleted a nonempty list of children about to be deleted
302 * @param parent the parent of the deleted children (which still contains the children
305 void onRemovingChildren(@NonNull List<INode> deleted, @NonNull INode parent);
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 65 /*private*/public boolean[] deleted = new boolean[ClassConstants.TYPICAL_CODE_LENGTH]; field in class:CodeAttributeEditor
104 deleted = new boolean[codeLength];
113 deleted[index] = false;
251 * @param instructionOffset the offset of the instruction to be deleted.
261 deleted[instructionOffset] = true;
270 * @param instructionOffset the offset of the instruction not to be deleted.
280 deleted[instructionOffset] = false;
293 deleted[instructionOffset];
601 // instruction, if it shouldn't be deleted.
607 else if (!deleted[oldOffset]
    [all...]
  /external/v8/test/mjsunit/
for-in-delete.js 28 // Test that properties deleted during a for-in iteration do not show up in
sparse-array-reverse.js 46 a[50] = 'deleted';
47 delete a[50]; // Should leave no trace once deleted.
global-deleted-property-keyed.js 30 // Test keyed access to deleted property in a global object without access checks.
  /external/v8/test/mjsunit/regress/
regress-189.js 28 // Test that we can handle initialization of a deleted const variable.
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsEdit.java 371 boolean deleted = mListInstance.deleteWord(word);
372 if (!deleted) {
UserDictionaryToolsList.java 414 boolean deleted = deleteWord(wnnWordSearch);
415 if (deleted) {
571 boolean deleted = false;
590 deleted = sendEventToIME(event);
599 return deleted;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoStore.java 136 * entries in the store (all other entries are deleted).
228 boolean deleted = file.delete();
229 if (!deleted) {
  /sdk/lint/cli/src/com/android/tools/lint/
MultiProjectHtmlReporter.java 87 boolean deleted = output.delete();
88 if (!deleted) {
  /external/jdiff/src/jdiff/
Diff.java 126 int deletes = hunk.deleted;
135 int first0 = hunk.line0; // Index of first deleted word
140 first0 == lasthunk.line0 + lasthunk.deleted + 1 &&
143 lasthunk.deleted += 2;
182 int deletes = hunk.deleted;
190 int first0 = hunk.line0; // Index of first deleted word
191 // Index of last deleted word, invalid if deletes == 0
192 int last0 = hunk.line0 + hunk.deleted - 1;
213 // Emit the deleted words, but struck through
214 // but do not emit deleted HTML tag
    [all...]
DiffMyers.java 95 of deleted lines (counting only lines before the midpoint).
97 lines inserted or deleted (counting only lines before the midpoint).
356 /** Scan the tables of which lines are inserted and deleted,
391 /** Scan the tables of which lines are inserted and deleted,
468 Each change represents one place where some lines are deleted
472 DELETED is the number of lines deleted here from file 0.
475 If DELETED is 0 then LINE0 is the number of the line before
484 public int deleted; field in class:DiffMyers.change
485 /** Line number of 1st deleted line. *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
RelativeLayoutRule.java 249 public void onRemovingChildren(List<INode> deleted, INode parent) {
250 super.onRemovingChildren(deleted, parent);
252 // Remove any attachments pointing to the deleted nodes.
256 Set<String> removeValues = new HashSet<String>(deleted.size() * 2);
257 for (INode node : deleted) {
270 if (deleted.contains(child)) {
278 // Unset this reference to a deleted widget.
  /external/chromium/chrome/browser/sync/engine/
syncer_util.cc 384 if (update.deleted()) {
386 // If we already think the item is server-deleted, we're done.
388 // back and overriding subsequent undeletions. For non-deleted items,
397 // they're deleted, they go back to version 0.
443 target->Put(SERVER_IS_DEL, update.deleted());
593 // Drop deleted uncommitted entries.
611 return true; // Deleted items have no predecessors.
647 // 1. Scan deleted unsynced entries looking up their pre-delete tree for any
648 // of the deleted folders.
672 // We've synced the deletion of this deleted entries parent
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java 725 * @return True if the database was successfully deleted.
732 boolean deleted = false;
733 deleted |= file.delete();
734 deleted |= new File(file.getPath() + "-journal").delete();
735 deleted |= new File(file.getPath() + "-shm").delete();
736 deleted |= new File(file.getPath() + "-wal").delete();
748 deleted |= masterJournal.delete();
751 return deleted;
    [all...]
  /external/bluetooth/glib/glib/
ghash.c 1101 guint deleted = 0; local
1111 deleted++;
1118 if (deleted > 0)
1122 return deleted;
    [all...]
  /packages/apps/Mms/src/com/android/mms/
TempFileProvider.java 152 boolean deleted = newTempFile.delete();
  /external/chromium/net/disk_cache/
disk_cache_test_base.cc 182 TrimTask(disk_cache::BackendImpl* backend, bool deleted, bool empty)
184 deleted_(deleted),
eviction.cc 17 // Whenever an element is evicted, we move it to the DELETED list so that if the
278 rankings_->Insert(entry->rankings(), true, Rankings::DELETED);
353 } else if (header_->lru.sizes[Rankings::DELETED] > header_->num_entries / 4 &&
414 rankings_->Remove(entry->rankings(), Rankings::DELETED, true);
439 rankings_->Insert(entry->rankings(), true, Rankings::DELETED);
446 rankings_->Remove(entry->rankings(), Rankings::DELETED, true);
465 Trace("*** Trim Deleted ***");
472 rankings_->GetPrev(node.get(), Rankings::DELETED));
473 bool deleted = false; local
477 next.reset(rankings_->GetPrev(node.get(), Rankings::DELETED));
    [all...]
  /external/llvm/lib/VMCore/
DebugLoc.cpp 237 /// deleted - The MDNode this is pointing to got deleted, so this pointer needs
239 void DebugRecVH::deleted() { function in class:DebugRecVH
284 // the mdnode got deleted.
286 if (NewVal == 0) return deleted();
  /external/v8/test/mjsunit/bugs/
bug-222.js 40 // Don't allow arguments to be deleted.
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 155 if (!g.deleted) {
175 if (!r.deleted) {
356 r.deleted = true;
358 r.deleted = false;
383 if (g.deleted || cmp < 0) {
386 g.deleted = true; // They didn't mention the file, but we noticed that it's gone.
426 // these were deleted
802 r.deleted = false;
977 r.deleted = false;
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java 123 Events.DELETED
185 int deletedColumn = entries.getColumnIndex(Events.DELETED);
252 boolean deleted = (entries.getInt(deletedColumn) != 0);
284 if (deleted) {
286 Log.d(CalendarProvider2.TAG, "Found deleted recurring event in "
405 // we temporarily store the DELETED status (will be cleaned later)
406 initialValues.put(Events.DELETED, deleted);
507 // If this instance was cancelled or deleted then don't create a new
510 boolean deleted = values.containsKey(Events.DELETED)
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 237 int deleted = 0; local
243 deleted = a - start;
247 b = b - deleted;
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 143 "WHERE url IS NOT NULL AND deleted == 0) AND url_key NOT IN " +
1227 int deleted = 0; local
    [all...]

Completed in 962 milliseconds

1 2 34 5 6 7 8 9