/external/chromium/chrome/browser/webdata/ |
D | autofill_change.cc | 30 const AutofillProfileChange& change) const { in operator ==() 31 return type() == change.type() && in operator ==() 32 key() == change.key() && in operator ==() 33 (type() != REMOVE) ? *profile() == *change.profile() : true; in operator ==() 48 const AutofillCreditCardChange& change) const { in operator ==() 49 return type() == change.type() && in operator ==() 50 key() == change.key() && in operator ==() 51 (type() != REMOVE) ? *credit_card() == *change.credit_card() : true; in operator ==()
|
D | autofill_change.h | 43 bool operator==(const AutofillChange& change) const { 44 return type() == change.type() && key() == change.key(); 62 bool operator==(const AutofillProfileChange& change) const; 83 bool operator==(const AutofillCreditCardChange& change) const;
|
D | web_data_service.cc | 1024 AutofillProfileChange change(AutofillProfileChange::ADD, in AddAutofillProfileImpl() local 1029 Details<AutofillProfileChange>(&change)); in AddAutofillProfileImpl() 1058 AutofillProfileChange change(AutofillProfileChange::UPDATE, in UpdateAutofillProfileImpl() local 1063 Details<AutofillProfileChange>(&change)); in UpdateAutofillProfileImpl() 1088 AutofillProfileChange change(AutofillProfileChange::REMOVE, guid, NULL); in RemoveAutofillProfileImpl() local 1092 Details<AutofillProfileChange>(&change)); in RemoveAutofillProfileImpl() 1124 AutofillProfileChange change(AutofillProfileChange::REMOVE, in EmptyMigrationTrashImpl() local 1129 Details<AutofillProfileChange>(&change)); in EmptyMigrationTrashImpl() 1140 AutofillProfileChange change(AutofillProfileChange::UPDATE, in EmptyMigrationTrashImpl() local 1145 Details<AutofillProfileChange>(&change)); in EmptyMigrationTrashImpl() [all …]
|
/external/iproute2/tc/ |
D | q_cbq.c | 163 lss.change = TCF_CBQ_LSS_MAXIDLE|TCF_CBQ_LSS_EWMA|TCF_CBQ_LSS_AVPKT; in cbq_parse_opt() 224 lss.change |= TCF_CBQ_LSS_MINIDLE; in cbq_parse_class_opt() 231 lss.change |= TCF_CBQ_LSS_OFFTIME; in cbq_parse_class_opt() 238 lss.change |= TCF_CBQ_LSS_MAXIDLE; in cbq_parse_class_opt() 241 lss.change |= TCF_CBQ_LSS_FLAGS; in cbq_parse_class_opt() 244 lss.change |= TCF_CBQ_LSS_FLAGS; in cbq_parse_class_opt() 247 lss.change |= TCF_CBQ_LSS_FLAGS; in cbq_parse_class_opt() 250 lss.change |= TCF_CBQ_LSS_FLAGS; in cbq_parse_class_opt() 261 lss.change |= TCF_CBQ_LSS_EWMA; in cbq_parse_class_opt() 303 lss.change |= TCF_CBQ_LSS_AVPKT; in cbq_parse_class_opt() [all …]
|
/external/valgrind/main/none/tests/x86/ |
D | pushpopseg.stdout.exp | 1 sp change after push = -2 2 sp change after pop = 2 4 sp change after push = -4 5 sp change after pop = 4
|
/external/chromium/chrome/browser/sync/glue/ |
D | autofill_change_processor.cc | 94 for (AutofillChangeList::iterator change = changes->begin(); in ObserveAutofillEntriesChanged() local 95 change != changes->end(); ++change) { in ObserveAutofillEntriesChanged() 96 switch (change->type()) { in ObserveAutofillEntriesChanged() 101 AutofillModelAssociator::KeyToTag(change->key().name(), in ObserveAutofillEntriesChanged() 102 change->key().value()); in ObserveAutofillEntriesChanged() 112 change->key().name(), in ObserveAutofillEntriesChanged() 113 change->key().value(), in ObserveAutofillEntriesChanged() 122 WriteAutofillEntry(AutofillEntry(change->key(), timestamps), in ObserveAutofillEntriesChanged() 132 change->key().name(), change->key().value()); in ObserveAutofillEntriesChanged() 136 UTF16ToUTF8(change->key().name()); in ObserveAutofillEntriesChanged() [all …]
|
D | theme_change_processor.cc | 81 const sync_api::SyncManager::ChangeRecord& change = in ApplyChangesFromSyncModel() local 83 if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_UPDATE && in ApplyChangesFromSyncModel() 84 change.action != sync_api::SyncManager::ChangeRecord::ACTION_DELETE) { in ApplyChangesFromSyncModel() 85 std::string err = "strange theme change.action " + change.action; in ApplyChangesFromSyncModel() 92 if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_DELETE) { in ApplyChangesFromSyncModel() 94 if (!node.InitByIdLookup(change.id)) { in ApplyChangesFromSyncModel()
|
D | autofill_profile_change_processor.cc | 121 AutofillProfileChange* change = Details<AutofillProfileChange>(details).ptr(); in Observe() local 123 ActOnChange(change, &trans, autofill_root); in Observe() 127 AutofillProfileChange* change, in ActOnChange() argument 130 DCHECK(change->type() == AutofillProfileChange::REMOVE || change->profile()); in ActOnChange() 131 switch (change->type()) { in ActOnChange() 133 AddAutofillProfileSyncNode(trans, autofill_root, *(change->profile())); in ActOnChange() 137 int64 sync_id = model_associator_->GetSyncIdFromChromeId(change->key()); in ActOnChange() 139 LOG(ERROR) << "Sync id is not found for " << change->key(); in ActOnChange() 148 WriteAutofillProfile(*(change->profile()), &node); in ActOnChange() 152 int64 sync_id = model_associator_->GetSyncIdFromChromeId(change->key()); in ActOnChange() [all …]
|
D | extension_change_processor.cc | 104 const sync_api::SyncManager::ChangeRecord& change = changes[i]; in ApplyChangesFromSyncModel() local 106 switch (change.action) { in ApplyChangesFromSyncModel() 110 if (!node.InitByIdLookup(change.id)) { in ApplyChangesFromSyncModel() 112 error << "Extension node lookup failed for change " << change.id in ApplyChangesFromSyncModel() 113 << " of action type " << change.action; in ApplyChangesFromSyncModel() 123 change.specifics, &specifics)) { in ApplyChangesFromSyncModel() 126 << change.id; in ApplyChangesFromSyncModel() 143 (change.action == sync_api::SyncManager::ChangeRecord::ACTION_DELETE); in ApplyChangesFromSyncModel()
|
D | password_change_processor.cc | 69 for (PasswordStoreChangeList::iterator change = changes->begin(); in Observe() local 70 change != changes->end(); ++change) { in Observe() 71 std::string tag = PasswordModelAssociator::MakeTag(change->form()); in Observe() 72 switch (change->type()) { in Observe() 82 PasswordModelAssociator::WriteToSyncNode(change->form(), &sync_node); in Observe() 101 PasswordModelAssociator::WriteToSyncNode(change->form(), &sync_node); in Observe()
|
/external/webp/ |
D | ChangeLog | 4 - 7/11: Updated WebP with head change#Ia53f845b 5 - 8/12: release version 0.2.0-rc1 (head change#Ia5475247) 6 - : Updated WebP with head change#I3da2063b 7 - 3/13: Updated WebP with head change#I9e5ae737
|
D | README.android | 20 - Synced the WebP Code (Encoder/Decoder) with the head change#Ia53f845b 26 - Sync-patch with libwebp ver 0.2.0-rc1 (head change#Ia5475247). 27 - Updated WebP with head change#I3da2063b 28 - Updated WebP with head change#I9e5ae737 35 - Updated WebP with head change#I9e5ae737
|
/external/openssh/ |
D | auth2-passwd.c | 54 int change; in userauth_passwd() local 57 change = packet_get_char(); in userauth_passwd() 59 if (change) { in userauth_passwd() 67 if (change) in userauth_passwd()
|
/external/chromium/base/ |
D | file_util.h | 592 EXPLICIT_ACCESS change; in MakeFileUnreadable() 593 change.grfAccessPermissions = GENERIC_READ; in MakeFileUnreadable() 594 change.grfAccessMode = DENY_ACCESS; in MakeFileUnreadable() 595 change.grfInheritance = 0; in MakeFileUnreadable() 596 change.Trustee.pMultipleTrustee = NULL; in MakeFileUnreadable() 597 change.Trustee.MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE; in MakeFileUnreadable() 598 change.Trustee.TrusteeForm = TRUSTEE_IS_NAME; in MakeFileUnreadable() 599 change.Trustee.TrusteeType = TRUSTEE_IS_USER; in MakeFileUnreadable() 600 change.Trustee.ptstrName = L"CURRENT_USER"; in MakeFileUnreadable() 603 if (SetEntriesInAcl(1, &change, old_dacl, &new_dacl) != ERROR_SUCCESS) { in MakeFileUnreadable()
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
D | private-browsing-affects-storage-expected.txt | 1 This is a test to make sure that when private browsing is on any attempt to change the localStorage… 3 Caught exception trying to change item: Error: QUOTA_EXCEEDED_ERR: DOM Exception 22 4 After change attempt, testItem is: null
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
D | private-browsing-affects-storage-expected.txt | 1 This is a test to make sure that when private browsing is on any attempt to change the sessionStora… 3 Caught exception trying to change item: Error: QUOTA_EXCEEDED_ERR: DOM Exception 22 4 After change attempt, testItem is: null
|
/external/hyphenation/ |
D | README.nonstandard | 42 pat1tern/change[,start,cut] 45 in the change region of the pattern, then pattern[start, start + cut - 1] 46 substring will be replaced with the "change". 56 will change every "ff" with "ff=f" at hyphenation. 69 - patterns must contain only one hyphenation point at change region 82 - Start: starting position of the change region. 116 Warning: change characters are lower cased in the source, so you may need 117 case conversion of the change characters based on input word case detection.
|
/external/jdiff/src/jdiff/ |
D | DiffMyers.java | 359 private change build_reverse_script() { in build_reverse_script() 360 change script = null; in build_reverse_script() 381 script = new change(line0, line1, i0 - line0, i1 - line1, script); in build_reverse_script() 394 private change build_script() { in build_script() 395 change script = null; in build_script() 415 script = new change(i0, i1, line0 - i0, line1 - i1, script); in build_script() 427 public change diff_2(final boolean reverse) { in diff_2() 478 public static class change { class in DiffMyers 480 public change link; 497 change(int line0, int line1, int deleted, int inserted, change old) { in change() method in DiffMyers.change
|
/external/llvm/test/CodeGen/AArch64/ |
D | atomic-ops.ll | 17 ; w0 below is a reasonable guess but could change: it certainly comes into the 37 ; w0 below is a reasonable guess but could change: it certainly comes into the 57 ; w0 below is a reasonable guess but could change: it certainly comes into the 77 ; x0 below is a reasonable guess but could change: it certainly comes into the 97 ; w0 below is a reasonable guess but could change: it certainly comes into the 117 ; w0 below is a reasonable guess but could change: it certainly comes into the 137 ; w0 below is a reasonable guess but could change: it certainly comes into the 157 ; x0 below is a reasonable guess but could change: it certainly comes into the 177 ; w0 below is a reasonable guess but could change: it certainly comes into the 197 ; w0 below is a reasonable guess but could change: it certainly comes into the [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/ |
D | CHANGELOG.txt | 5 * Change to encoding to fix last change to encoding of spaces 7 * Another change to encoding per 9 * A change to port handling to better deal with https and the like per
|
/external/expat/bcb5/ |
D | README.txt | 28 To change the name of the library a project file produces, edit the project 29 option source (see step 1 under Unicode below) and change the name contained in 30 the PROJECT tag. In a make file, change the value assigned to the PROJECT 43 following kludge will make the change stick. Close and save the file 48 If you are using a make file, just change the startup .obj file assigned 74 2. The single threaded RTL must be called. change the RTL in the ALLLIB tag or 76 name. For example, change cw32mti.lib to cw32i.lib. 85 remove the _RTLDLL assignment to the SYSDEFINES variable, and change the RTL
|
/external/iproute2/examples/diffserv/ |
D | Edge1 | 38 $TC class change $EGDEV classid 1:1 dsmark mask 0x3 \ 41 $TC class change $EGDEV classid 1:2 dsmark mask 0x3 \ 44 $TC class change $EGDEV classid 1:3 dsmark mask 0x3 \
|
D | Edge31-cb-chains | 90 $TC class change $EGDEV classid 1:1 dsmark mask 0x3 \ 93 $TC class change $EGDEV classid 1:2 dsmark mask 0x3 \ 96 $TC class change $EGDEV classid 1:3 dsmark mask 0x3 \ 99 $TC class change $EGDEV classid 1:4 dsmark mask 0x3 \
|
/external/quake/quake/src/QW/ |
D | qw2do.txt | 5 don't change if flood prot succeeds) 14 reliable data? change blocks to WriteClientMSG(client, byte, estimiatedsize), which will 45 x- change EF_DIMLIGHT to EF_BLUE for Quad effect in QWQC 47 x- exec frontend.cfg after execing config.cfg during gamedir change 50 x- stuff cl_warncmd before and after execing gamedir configs on gamedir change 82 x- change the lava effect when outside of map in spectator mode 83 x- change autocam to fixed, not float 96 have qwcl touch (change modify date) on a skin every time its loaded 100 x- change hunk_alloc error msgs, to say "16384" instead of "1600"?
|
/external/oprofile/ |
D | HACKING | 100 Even trivial patches must have a change log entry in the usual format (see 101 ChangeLog). Refer to bug numbers in the change log if relevant. 141 If you make a change visible to the user in some way, you should check the 149 Your cvs commit message only needs to briefly describe what your change 150 does - the change log should have the detailed description. Any 151 non-trivial change needs approval from either John, Phil or Maynard, 155 not need a change log, and neither does changes to TODO. If you make a 156 change that affects the user (feature improvement, new feature, bug fix, 157 UI change), see the next section. 166 the CVS code. This means that if you make a user-visible change as described [all …]
|