/external/chromium_org/third_party/leveldatabase/src/db/ |
D | version_edit_test.cc | 10 static void TestEncodeDecode(const VersionEdit& edit) { in TestEncodeDecode() argument 12 edit.EncodeTo(&encoded); in TestEncodeDecode() 25 VersionEdit edit; in TEST() local 27 TestEncodeDecode(edit); in TEST() 28 edit.AddFile(3, kBig + 300 + i, kBig + 400 + i, in TEST() 31 edit.DeleteFile(4, kBig + 700 + i); in TEST() 32 edit.SetCompactPointer(i, InternalKey("x", kBig + 900 + i, kTypeValue)); in TEST() 35 edit.SetComparatorName("foo"); in TEST() 36 edit.SetLogNumber(kBig + 100); in TEST() 37 edit.SetNextFile(kBig + 200); in TEST() [all …]
|
D | version_set.cc | 656 void Apply(VersionEdit* edit) { in Apply() argument 658 for (size_t i = 0; i < edit->compact_pointers_.size(); i++) { in Apply() 659 const int level = edit->compact_pointers_[i].first; in Apply() 661 edit->compact_pointers_[i].second.Encode().ToString(); in Apply() 665 const VersionEdit::DeletedFileSet& del = edit->deleted_files_; in Apply() 675 for (size_t i = 0; i < edit->new_files_.size(); i++) { in Apply() 676 const int level = edit->new_files_[i].first; in Apply() 677 FileMetaData* f = new FileMetaData(edit->new_files_[i].second); in Apply() 811 Status VersionSet::LogAndApply(VersionEdit* edit, port::Mutex* mu) { in LogAndApply() argument 812 if (edit->has_log_number_) { in LogAndApply() [all …]
|
D | db_impl.cc | 274 Status DBImpl::Recover(VersionEdit* edit) { in Recover() argument 344 s = RecoverLogFile(logs[i], edit, &max_sequence); in Recover() 363 VersionEdit* edit, in RecoverLogFile() argument 435 status = WriteLevel0Table(mem, edit, NULL); in RecoverLogFile() 447 status = WriteLevel0Table(mem, edit, NULL); in RecoverLogFile() 457 Status DBImpl::WriteLevel0Table(MemTable* mem, VersionEdit* edit, in WriteLevel0Table() argument 492 edit->AddFile(level, meta.number, meta.file_size, in WriteLevel0Table() 508 VersionEdit edit; in CompactMemTable() local 511 Status s = WriteLevel0Table(imm_, &edit, base); in CompactMemTable() 520 edit.SetPrevLogNumber(0); in CompactMemTable() [all …]
|
D | db_impl.h | 81 Status Recover(VersionEdit* edit) EXCLUSIVE_LOCKS_REQUIRED(mutex_); 94 VersionEdit* edit, 98 Status WriteLevel0Table(MemTable* mem, VersionEdit* edit, Version* base)
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | BaseMultipleFieldsDateAndTimeInputType.cpp | 216 if (DateTimeEditElement* edit = dateTimeEditElement()) in focusAndSelectSpinButtonOwner() local 217 edit->focusIfNoFocus(); in focusAndSelectSpinButtonOwner() 229 if (DateTimeEditElement* edit = dateTimeEditElement()) in shouldSpinButtonRespondToWheelEvents() local 230 return edit->hasFocusedField(); in shouldSpinButtonRespondToWheelEvents() 236 if (DateTimeEditElement* edit = dateTimeEditElement()) in spinButtonStepDown() local 237 edit->stepDown(); in spinButtonStepDown() 242 if (DateTimeEditElement* edit = dateTimeEditElement()) in spinButtonStepUp() local 243 edit->stepUp(); in spinButtonStepUp() 264 DateTimeEditElement* edit = this->dateTimeEditElement(); in pickerIndicatorChooseValue() local 265 if (!edit) in pickerIndicatorChooseValue() [all …]
|
/external/chromium_org/ui/views/controls/textfield/ |
D | textfield_model.cc | 49 bool Merge(const Edit* edit) { in Merge() argument 54 if (type_ != DELETE_EDIT && edit->force_merge()) { in Merge() 55 MergeReplace(edit); in Merge() 58 return mergeable() && edit->mergeable() && DoMerge(edit); in Merge() 90 virtual bool DoMerge(const Edit* edit) = 0; 108 void MergeReplace(const Edit* edit) { in MergeReplace() argument 109 CHECK_EQ(REPLACE_EDIT, edit->type_); in MergeReplace() 110 CHECK_EQ(0U, edit->old_text_start_); in MergeReplace() 111 CHECK_EQ(0U, edit->new_text_start_); in MergeReplace() 112 base::string16 old_text = edit->old_text_; in MergeReplace() [all …]
|
/external/chromium_org/chrome/browser/resources/options/ |
D | autofill_edit_overlay.css | 5 #autofill-edit-address-overlay { 9 #autofill-edit-credit-card-overlay { 13 #autofill-edit-address-overlay .long div[role='listitem'] > div > div, 14 #autofill-edit-address-overlay .long input, 15 #autofill-edit-address-overlay textarea.long, 16 #autofill-edit-address-overlay input.long { 20 #autofill-edit-address-overlay .short div[role='listitem'] > div > div, 21 #autofill-edit-address-overlay .short input, 22 #autofill-edit-address-overlay textarea.short, 23 #autofill-edit-address-overlay input.short { [all …]
|
/external/javassist/src/main/javassist/expr/ |
D | ExprEditor.java | 97 edit(h); in doit() 191 edit((MethodCall)expr); in loopBody() 197 edit((FieldAccess)expr); in loopBody() 211 edit((NewExpr)expr); in loopBody() 219 edit(ccall); in loopBody() 223 edit(mcall); in loopBody() 232 edit((NewArray)expr); in loopBody() 236 edit((Instanceof)expr); in loopBody() 240 edit((Cast)expr); in loopBody() 262 public void edit(NewExpr e) throws CannotCompileException {} in edit() method in ExprEditor [all …]
|
/external/chromium_org/content/shell/renderer/test_runner/resources/fonts/ |
D | fonts.conf | 6 <edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit> 13 <edit name="family" mode="assign"> 15 </edit> 22 <edit name="family" mode="assign"> 24 </edit> 31 <edit name="family" mode="assign"> 33 </edit>
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | stringquery.cpp | 17 edit = new QLineEdit; in StringQuery() 18 edit->setFocus(); in StringQuery() 21 layout->addWidget(edit, 0, 1); in StringQuery() 24 connect(edit, SIGNAL(returnPressed()), this, SLOT(accept())); in StringQuery() 30 return edit->text(); in get_string()
|
/external/clang/lib/Edit/ |
D | EditedSource.cpp | 20 using namespace edit; 222 for (edit::Commit::edit_iterator in commit() 224 const edit::Commit::Edit &edit = *I; in commit() local 225 switch (edit.Kind) { in commit() 226 case edit::Commit::Act_Insert: in commit() 227 commitInsert(edit.OrigLoc, edit.Offset, edit.Text, edit.BeforePrev); in commit() 229 case edit::Commit::Act_InsertFromRange: in commit() 230 commitInsertFromRange(edit.OrigLoc, edit.Offset, in commit() 231 edit.InsertFromRangeOffs, edit.Length, in commit() 232 edit.BeforePrev); in commit() [all …]
|
/external/srtp/googlepatches/ |
D | google-10-srtp-ios-fixes.pack | 13 ... //depot/google3/third_party/libsrtp/README.google#6 edit 14 ... //depot/google3/third_party/libsrtp/crypto/ae_xfm/xfm.c#4 edit 15 ... //depot/google3/third_party/libsrtp/crypto/cipher/aes_icm.c#4 edit 16 ... //depot/google3/third_party/libsrtp/crypto/include/config.h#5 edit 17 ... //depot/google3/third_party/libsrtp/srtp/ekt.c#3 edit 20 # action=edit type=text 32 # action=edit type=text 44 # action=edit type=text 57 # action=edit type=text 70 # action=edit type=text
|
D | google-12-srtp-hide-aes-tables-main.patch | 14 ... //depot/google3/third_party/libsrtp/README.google#9 edit 15 ... //depot/google3/third_party/libsrtp/tables/aes_tables.c#4 edit 18 # action=edit type=text 30 # action=edit type=text
|
/external/chromium_org/tools/clang/scripts/ |
D | run_tool.py | 205 for edit in reversed(v): 206 if edit == last_edit: 208 last_edit = edit 209 contents[edit.offset:edit.offset + edit.length] = edit.replacement 210 if not edit.replacement: 211 _ExtendDeletionIfElementIsInList(contents, edit.offset)
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/ |
D | popup.js | 49 var edit = bookmarkNode.children ? $('<table><tr><td>Name</td><td>' + 79 $('#adddialog').empty().append(edit).dialog({autoOpen: false, 95 edit.val(anchor.text()); 96 $('#editdialog').empty().append(edit).dialog({autoOpen: false, 101 title: edit.val() 103 anchor.text(edit.val());
|
/external/libpng/contrib/tools/ |
D | chkfmt | 13 edit= 23 edit=yes 111 if test -n "$EDITOR" -a -n "$edit" 126 if test -n "$EDITOR" -a -n "$edit"
|
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
D | AwGeolocationPermissions.java | 37 mSharedPreferences.edit().putBoolean(key, true).apply(); in allow() 47 mSharedPreferences.edit().putBoolean(key, false).apply(); in deny() 57 mSharedPreferences.edit().remove(key).apply(); in clear() 69 editor = mSharedPreferences.edit(); in clearAll()
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/invalidation/ |
D | InvalidationControllerTest.java | 217 InvalidationPreferences.EditContext edit = invalidationPreferences.edit(); in testRefreshShouldReadValuesFromDiskWithSpecificTypes() local 224 invalidationPreferences.setSyncTypes(edit, storedModelTypes); in testRefreshShouldReadValuesFromDiskWithSpecificTypes() 226 invalidationPreferences.setAccount(edit, storedAccount); in testRefreshShouldReadValuesFromDiskWithSpecificTypes() 227 invalidationPreferences.commit(edit); in testRefreshShouldReadValuesFromDiskWithSpecificTypes() 260 InvalidationPreferences.EditContext edit = invalidationPreferences.edit(); in testRefreshShouldReadValuesFromDiskWithAllTypes() local 263 invalidationPreferences.setSyncTypes(edit, storedModelTypes); in testRefreshShouldReadValuesFromDiskWithAllTypes() 265 invalidationPreferences.setAccount(edit, storedAccount); in testRefreshShouldReadValuesFromDiskWithAllTypes() 266 invalidationPreferences.commit(edit); in testRefreshShouldReadValuesFromDiskWithAllTypes()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | html.css | 503 input::-webkit-datetime-edit { 510 input::-webkit-datetime-edit-fields-wrapper { 519 input::-webkit-datetime-edit-ampm-field, 520 input::-webkit-datetime-edit-day-field, 521 input::-webkit-datetime-edit-hour-field, 522 input::-webkit-datetime-edit-millisecond-field, 523 input::-webkit-datetime-edit-minute-field, 524 input::-webkit-datetime-edit-month-field, 525 input::-webkit-datetime-edit-second-field, 526 input::-webkit-datetime-edit-week-field, [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XString.java | 1035 boolean edit = false; in fixWhiteSpace() 1060 edit = true; in fixWhiteSpace() 1082 edit = true; in fixWhiteSpace() 1095 edit = true; in fixWhiteSpace() 1104 edit = true; in fixWhiteSpace() 1111 return edit ? xsf.newstr(new String(buf, start, d - start)) : this; in fixWhiteSpace()
|
D | XStringForFSB.java | 861 boolean edit = false; in fixWhiteSpace() 877 edit = true; in fixWhiteSpace() 899 edit = true; in fixWhiteSpace() 912 edit = true; in fixWhiteSpace() 921 edit = true; in fixWhiteSpace() 928 return edit ? xsf.newstr(buf, start, d - start) : this; in fixWhiteSpace()
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 92 std::unique_ptr<edit::EditedSource> Editor; 125 Editor.reset(new edit::EditedSource(Context.getSourceManager(), in Initialize() 229 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 230 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit, &PMap); in VisitObjCMessageExpr() 235 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 236 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit); in VisitObjCMessageExpr() 352 const NSAPI &NS, edit::Commit &commit, in rewriteToObjCProperty() 563 const NSAPI &NS, edit::Commit &commit) { in rewriteToObjCInterfaceDecl() 595 const NSAPI &NS, edit::Commit &commit, in rewriteToNSEnumDecl() 645 const NSAPI &NS, edit::Commit &commit, in rewriteToNSMacroDecl() [all …]
|
/external/chromium_org/content/browser/renderer_host/ |
D | render_widget_host_view_mac_editcommand_helper_unittest.mm | 57 // Returns true if all the edit command names in the array are present in 163 // Check that edit commands aren't already attached to the object. 169 // Check that all edit commands where added. 176 // Check that all edit commands are still there. 195 // TODO(jeremy): Currently IsMenuItemEnabled just returns true for all edit
|
/external/clang/tools/clang-format/ |
D | clang-format-sublime.py | 30 def run(self, edit): argument 51 edit, sublime.Region(0, self.view.size()),
|
/external/clang/tools/clang-format-vs/ClangFormat/ |
D | ClangFormatPackage.cs | 98 var edit = view.TextBuffer.CreateEdit(); in MenuItemCallback() 104 edit.Replace(span, replacement.Value); in MenuItemCallback() 106 edit.Apply(); in MenuItemCallback()
|