HomeSort by relevance Sort by last modified time
    Searched refs:changes (Results 151 - 175 of 559) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/themes/
theme_syncable_service.cc 145 // generates multiple changes. When we fix syncapi to not do that,
149 string err_msg = base::StringPrintf("Received %d theme changes: ",
325 syncer::SyncChangeList changes; local
329 changes.push_back(
336 << changes.back().ToString();
338 return sync_processor_->ProcessSyncChanges(FROM_HERE, changes);
  /external/chromium_org/remoting/host/installer/linux/
build-deb.sh 132 mv ../${PACKAGE_NAME}_*.changes "$OUTPUT_PATH"/
  /external/chromium_org/sync/tools/
sync_client.cc 134 const ImmutableChangeRecordList& changes) OVERRIDE {
135 LOG(INFO) << "Changes applied for "
138 size_t change_count = changes.Get().size();
140 changes.Get().begin(); it != changes.Get().end(); ++it) {
155 LOG(INFO) << "Changes complete for "
  /external/chromium_org/v8/test/mjsunit/compiler/
simple-deopt.js 49 // Test deopt when global function changes.
58 // Test deopt when map changes.
  /external/v8/test/mjsunit/compiler/
simple-deopt.js 49 // Test deopt when global function changes.
58 // Test deopt when map changes.
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSync.java 107 final List<MessageStateChange> changes = MessageStateChange.getChanges(mContext, mAccountId, local
109 if (changes == null) {
113 MessageStateChange.convertToChangesMap(changes);
118 final long[][] messageIds = new long[2][changes.size()];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 62 * Changes the type of the given widgets to the given target type
160 List<Change> changes = new ArrayList<Change>(); local
162 return changes;
168 changes.add(change);
219 return changes;
ExtractStyleRefactoring.java 330 List<Change> changes = new ArrayList<Change>(); local
332 return changes;
349 changes.add(addFile);
377 return changes;
381 changes.add(change);
393 return changes;
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_sync_service_unittest.cc 44 const SyncChangeList& changes() const { return change_list_; } function in class:__anon7663::MockChangeProcessor
153 EXPECT_EQ(0u, change_processor()->changes().size());
236 EXPECT_EQ(1u, change_processor()->changes().size());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplateWizardState.java 146 /** Computes the changes this wizard will make */
164 List<Change> changes = getTemplateHandler().render(project, parameters); local
169 changes.add(new NullChange(title) {
182 return changes;
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_database_unittest.cc 368 ScopedVector<google_apis::ChangeResource>* changes) {
369 changes->push_back(change.release());
492 ScopedVector<google_apis::ChangeResource> changes) {
495 changes.Pass(), base::Bind(&SyncStatusResultCallback, &status));
788 ScopedVector<google_apis::ChangeResource> changes; local
789 PushToChangeList(CreateChangeResourceFromMetadata(renamed_file), &changes); local
791 reorganized_file), &changes); local
792 PushToChangeList(CreateChangeResourceFromMetadata(updated_file), &changes); local
793 PushToChangeList(CreateChangeResourceFromMetadata(noop_file), &changes); local
794 PushToChangeList(CreateChangeResourceFromMetadata(new_file), &changes); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
UIUtils.js 195 // Make style changes.
984 * @param {Array.<Object>=} changes
986 WebInspector.highlightSearchResults = function(element, resultRanges, changes)
988 return WebInspector.highlightRangesWithStyleClass(element, resultRanges, "highlighted-search-result", changes);
995 * @param {Array.<Object>=} changes
997 WebInspector.highlightRangesWithStyleClass = function(element, resultRanges, styleClass, changes)
999 changes = changes || [];
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_typed_url_unittest.cc 501 history::URLsDeletedDetails changes; local
502 changes.all_history = false;
503 changes.urls.insert(GURL("http://mine.com"));
506 Details<history::URLsDeletedDetails>(&changes));
536 history::URLsDeletedDetails changes; local
537 changes.all_history = true;
540 Details<history::URLsDeletedDetails>(&changes));
profile_sync_service_autofill_unittest.cc 628 // TODO(skrul): Test processing of cloud changes.
878 AutofillChangeList changes; local
940 AutofillChangeList changes; local
970 AutofillChangeList changes; local
1035 AutofillChangeList changes; local
    [all...]
  /external/chromium_org/base/process/
launch_posix.cc 151 // If the number of signals in the Linux kernel changes, someone should
273 char** AlterEnvironment(const EnvironmentVector& changes,
285 for (EnvironmentVector::const_iterator j = changes.begin();
286 j != changes.end();
338 j = changes.begin(); j != changes.end(); j++) {
363 j = changes.begin(); j != changes.end(); j++) {
  /external/chromium_org/third_party/icu/source/test/intltest/
tzbdtest.cpp 458 int32_t changes = 0;
467 lastState = state;++changes;
471 if (changes == 0) {
476 else if (changes != 2) {
477 errln(UnicodeString("FAIL: ") + changes + " changes seen; should see 0 or 2");
480 errln("FAIL: useDaylightTime false but 2 changes seen");
482 if (changes != expectedChanges) {
483 dataerrln(UnicodeString("FAIL: ") + changes + " changes seen; expected " + expectedChanges)
    [all...]
  /external/icu4c/test/intltest/
tzbdtest.cpp 458 int32_t changes = 0;
467 lastState = state;++changes;
471 if (changes == 0) {
476 else if (changes != 2) {
477 errln(UnicodeString("FAIL: ") + changes + " changes seen; should see 0 or 2");
480 errln("FAIL: useDaylightTime false but 2 changes seen");
482 if (changes != expectedChanges) {
483 dataerrln(UnicodeString("FAIL: ") + changes + " changes seen; expected " + expectedChanges)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 428 int changes = 0; local
433 changes |= FILL_IN_ACTION;
439 changes |= FILL_IN_DATA;
444 changes |= FILL_IN_CATEGORIES;
449 changes |= FILL_IN_PACKAGE;
453 changes |= FILL_IN_COMPONENT;
457 return changes;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 122 * and compute the actual changes.
123 * <li> When all changes are computed, {@link #createChange(IProgressMonitor)} is invoked.
126 * The list of changes are:
198 /** The list of changes computed by {@link #checkFinalConditions(IProgressMonitor)} and
912 List<Change> changes = null; local
959 List<Change> changes = computeJavaChanges( local
972 List<Change> changes = computeXmlSourceChanges(xmlFile, local
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_texture_array.spec 163 Change the first paragraph (page 150) to say (spec changes identical to
179 Change the fourth paragraph on page 151 to say (spec changes identical
190 Change the fourth paragraph on page 156 to say (spec changes identical
228 Change the second paragraph (page 159) (spec changes identical
246 Change the last paragraph on page 160 to say (spec changes identical
309 Change the third paragraph (page 176) to say (spec changes identical
318 Change first paragraph to say (spec changes identical to
331 Change the second paragraph (page 177) to say (spec changes identical
340 Change the second and third paragraphs (page 179) to say (spec changes
372 Change section (page 180) to say (spec changes identical to
    [all...]
  /external/mesa3d/docs/
MESA_texture_array.spec 163 Change the first paragraph (page 150) to say (spec changes identical to
179 Change the fourth paragraph on page 151 to say (spec changes identical
190 Change the fourth paragraph on page 156 to say (spec changes identical
228 Change the second paragraph (page 159) (spec changes identical
246 Change the last paragraph on page 160 to say (spec changes identical
309 Change the third paragraph (page 176) to say (spec changes identical
318 Change first paragraph to say (spec changes identical to
331 Change the second paragraph (page 177) to say (spec changes identical
340 Change the second and third paragraphs (page 179) to say (spec changes
372 Change section (page 180) to say (spec changes identical to
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
event_page.js 197 * Changes current wallpaper and sets up an alarm to schedule next change around
241 chrome.storage.onChanged.addListener(function(changes, namespace) {
242 if (changes[Constants.AccessSurpriseMeEnabledKey]) {
243 if (changes[Constants.AccessSurpriseMeEnabledKey].newValue) {
250 if (changes[Constants.AccessSyncWallpaperInfoKey]) {
251 var newValue = changes[Constants.AccessSyncWallpaperInfoKey].newValue;
  /ndk/sources/host-tools/nawk-20071023/
FIXES 25 This file lists all bug fixes, changes, etc., made since the AWK book
159 a moratorium is hereby declared on internationalization changes.
162 that is, and i do not want to keep making changes until it's clear.
176 the internationalization changes, somewhat modified, are now
191 for the moment, the internationalization changes of nov 29 are
197 modified b.c (with tiny changes in main and run) to support
225 pervasive small changes to make things more const-correct, as
230 minor documentation changes to note that this now compiles out
345 complaints; other changes scattered throughout for the
533 made the same changes for field-splitting if FS is ""
    [all...]
  /external/chromium/chrome/browser/webdata/
web_data_service.cc 928 AutofillChangeList changes; local
929 if (!db_->GetAutofillTable()->AddFormFieldValues(form_fields, &changes)) {
934 new WDResult<AutofillChangeList>(AUTOFILL_CHANGES, changes));
966 AutofillChangeList changes; local
995 AutofillChangeList changes; local
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary_unittest.cc 162 int changes() const { return changes_; } function in class:DictionaryObserverCounter
386 syncer::SyncChangeList changes; local
392 changes.push_back(syncer::SyncChange(
403 changes.push_back(syncer::SyncChange(
413 changes.push_back(syncer::SyncChange(
423 changes.push_back(syncer::SyncChange(
433 changes.push_back(syncer::SyncChange(
439 EXPECT_FALSE(dictionary->ProcessSyncChanges(FROM_HERE, changes).IsSet());
    [all...]

Completed in 1142 milliseconds

1 2 3 4 5 67 8 91011>>