HomeSort by relevance Sort by last modified time
    Searched refs:changes (Results 1 - 25 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/findunused/
findunusedtranslations 59 $changes = 0;
66 $changes = 1;
72 $changes = 1;
78 $changes = 1;
96 if ($changes) {
101 print "(no changes)\n";
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffFooter.pl 48 Property changes on: FileA
65 Property changes on: Makefile
81 Property changes on: Makefile
97 Property changes on: Makefile
114 Property changes on: FileA
131 Property changes on: FileA
151 Property changes on: FileA
170 Property changes on: FileA
175 Property changes on: Makefile.shared
183 expectedNextLine => "Property changes on: Makefile.shared\n"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplatePreviewPage.java 32 setDescription("Optionally review pending changes");
38 List<Change> changes = mValues.computeChanges(); local
40 changes.toArray(new Change[changes.size()]));
  /external/libppp/src/
slcompress.c 168 register u_int changes = 0; local
285 * changes in the order: urgent, window, ack, seq (the order minimizes the
291 changes |= NEW_U;
304 changes |= NEW_W;
312 changes |= NEW_A;
320 changes |= NEW_S;
322 switch (changes) {
343 * actual changes match one of our special case encodings -- send packet
352 changes = SPECIAL_I;
360 changes = SPECIAL_D
434 register u_int hlen, changes; local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
change_processor_mock.h 24 const sync_api::SyncManager::ChangeRecord* changes,
password_change_processor.cc 67 PasswordStoreChangeList* changes = local
69 for (PasswordStoreChangeList::iterator change = changes->begin();
70 change != changes->end(); ++change) {
128 const sync_api::SyncManager::ChangeRecord* changes,
146 changes[i].action) {
147 DCHECK(changes[i].specifics.HasExtension(sync_pb::password))
149 DCHECK(changes[i].extra.get());
151 changes[i].extra.get();
156 model_associator_->Disassociate(changes[i].id);
161 if (!sync_node.InitByIdLookup(changes[i].id))
    [all...]
extension_change_processor.h 23 // This class is responsible for taking changes from the
46 const sync_api::SyncManager::ChangeRecord* changes,
preference_change_processor.h 23 // This class is responsible for taking changes from the PrefService and
42 const sync_api::SyncManager::ChangeRecord* changes,
55 // The model we are processing changes from. Non-NULL when |running_| is true.
session_change_processor.h 27 // This class is responsible for taking changes from the
54 const sync_api::SyncManager::ChangeRecord* changes,
theme_change_processor.h 24 // This class is responsible for taking changes from the
44 const sync_api::SyncManager::ChangeRecord* changes,
  /external/chromium/third_party/libevent/
kqueue.c 72 struct kevent *changes; member in struct:kqop
124 kqueueop->changes = malloc(NEVENT * sizeof(struct kevent));
125 if (kqueueop->changes == NULL) {
131 free (kqueueop->changes);
143 kqueueop->changes[0].ident = -1;
144 kqueueop->changes[0].filter = EVFILT_READ;
145 kqueueop->changes[0].flags = EV_ADD;
152 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
156 free(kqueueop->changes);
177 newchange = realloc(kqop->changes,
221 struct kevent *changes = kqop->changes; local
    [all...]
  /development/apps/OBJViewer/
Android.mk 12 # currently disabled because of API changes. won't be fixed for 1.0
  /external/libvorbis/doc/vorbisenc/
Makefile.am 5 doc_DATA = changes.html examples.html index.html ov_ectl_ratemanage2_arg.html \
  /external/chromium/chrome/browser/password_manager/
password_store_default.cc 129 PasswordStoreChangeList changes; local
130 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD, form));
134 Details<PasswordStoreChangeList>(&changes));
140 PasswordStoreChangeList changes; local
141 changes.push_back(PasswordStoreChange(PasswordStoreChange::UPDATE, form));
145 Details<PasswordStoreChangeList>(&changes));
151 PasswordStoreChangeList changes; local
152 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
156 Details<PasswordStoreChangeList>(&changes));
165 PasswordStoreChangeList changes; local
    [all...]
password_store_x.cc 33 PasswordStoreChangeList changes; local
34 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD, form));
38 Details<PasswordStoreChangeList>(&changes));
48 PasswordStoreChangeList changes; local
49 changes.push_back(PasswordStoreChange(PasswordStoreChange::UPDATE, form));
53 Details<PasswordStoreChangeList>(&changes));
63 PasswordStoreChangeList changes; local
64 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
68 Details<PasswordStoreChangeList>(&changes));
83 PasswordStoreChangeList changes; local
    [all...]
  /external/clang/utils/
token-delta.py 15 def test(self, changes):
20 def getTestResult(self, changes):
24 changeset = frozenset(changes)
27 elif not self.test(changes):
33 def run(self, changes, force=False):
39 if not self.getTestResult(changes):
46 return self.delta(changes, self.split(changes))
148 def writeFiles(self, changes, fileNames):
151 for i,j in changes
    [all...]
  /external/libsepol/src/
genbools.c 75 int errors = 0, changes = 0; local
104 changes++;
136 changes++;
145 *changesp = changes;
153 int rc, changes = 0; local
160 if (load_booleans(&policydb, booleans, &changes) < 0) {
164 if (!changes)
197 int rc, changes = 0; local
199 rc = load_booleans(policydb, booleans, &changes);
200 if (!rc && changes)
    [all...]
  /external/chromium/chrome/browser/sync/
js_sync_manager_observer_unittest.cc 218 sync_api::SyncManager::ChangeRecord changes[syncable::MODEL_TYPE_COUNT]; local
221 changes[i].id =
225 changes[i].action =
229 changes[i].action =
233 changes[i].action =
240 EXPECT_TRUE(node.InitByIdLookup(changes[i].id));
241 changes[i].specifics = node.GetEntry()->Get(syncable::SPECIFICS);
246 // to i cast to ModelType and the second argument with the changes
247 // starting from changes[i].
260 expected_changes->Append(changes[j].ToValue(&trans))
272 &trans, &changes[i], local
    [all...]
  /external/clang/docs/analyzer/
Makefile 17 .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
39 @echo " changes to make an overview of all changed/added/deprecated items"
141 changes:
142 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
144 @echo "The overview file is in $(BUILDDIR)/changes."
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoringTest.java 105 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
108 changes.toArray(new Change[changes.size()]));
112 checkEdits(basename, changes);
ChangeViewRefactoringTest.java 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
57 checkEdits(basename, changes);
UnwrapRefactoringTest.java 55 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
56 checkEdits(basename, changes);
WrapInRefactoringTest.java 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
57 checkEdits(basename, changes);
  /external/bison/build-aux/
do-release-commit-and-tag 82 noteworthy='* Noteworthy changes in release'
141 *) die 'this tree is dirty; commit your changes first';;
158 ## Then, changes. ##
  /external/chromium/chrome/browser/webdata/
autofill_table.h 121 // is returned in the changes out parameter.
123 std::vector<AutofillChange>* changes);
126 // of all added and updated autofill entries is returned in the changes out
129 std::vector<AutofillChange>* changes);
144 // changes out parameter.
147 std::vector<AutofillChange>* changes);
303 std::vector<AutofillChange>* changes,
306 std::vector<AutofillChange>* changes,

Completed in 267 milliseconds

1 2 3 4 5 6 7 8 91011>>