HomeSort by relevance Sort by last modified time
    Searched defs:change (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/openssh/
auth2-passwd.c 54 int change; local
57 change = packet_get_char();
59 if (change) {
67 if (change)
68 logit("password change not supported");
  /external/chromium/chrome/browser/sync/glue/
theme_change_processor.cc 66 // TODO(akalin): Normally, we should only have a single change and
81 const sync_api::SyncManager::ChangeRecord& change = local
83 if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_UPDATE &&
84 change.action != sync_api::SyncManager::ChangeRecord::ACTION_DELETE) {
85 std::string err = "strange theme change.action " + change.action;
92 if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_DELETE) {
94 if (!node.InitByIdLookup(change.id)) {
extension_change_processor.cc 104 const sync_api::SyncManager::ChangeRecord& change = changes[i]; local
106 switch (change.action) {
110 if (!node.InitByIdLookup(change.id)) {
112 error << "Extension node lookup failed for change " << change.id
113 << " of action type " << change.action;
123 change.specifics, &specifics)) {
126 << change.id;
143 (change.action == sync_api::SyncManager::ChangeRecord::ACTION_DELETE);
session_change_processor.cc 171 const sync_api::SyncManager::ChangeRecord& change = changes[i]; local
172 sync_api::SyncManager::ChangeRecord::Action action(change.action);
177 if (!node.InitByIdLookup(change.id)) {
191 if (!sync_node.InitByIdLookup(change.id)) {
206 // We should only ever receive a change to our own machine's session info
autofill_profile_change_processor.cc 121 AutofillProfileChange* change = Details<AutofillProfileChange>(details).ptr(); local
123 ActOnChange(change, &trans, autofill_root);
127 AutofillProfileChange* change,
130 DCHECK(change->type() == AutofillProfileChange::REMOVE || change->profile());
131 switch (change->type()) {
133 AddAutofillProfileSyncNode(trans, autofill_root, *(change->profile()));
137 int64 sync_id = model_associator_->GetSyncIdFromChromeId(change->key());
139 LOG(ERROR) << "Sync id is not found for " << change->key();
148 WriteAutofillProfile(*(change->profile()), &node)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Path.cpp 73 FloatSize change = traversalState.m_current - traversalState.m_previous; local
74 float slope = atan2f(change.height(), change.width());
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 130 int change = bar.getDisplayOptions() ^ flags; local
131 bar.setDisplayOptions(change, flags);
  /external/opencv/cvaux/src/
cvlevmar.cpp 147 double change; local
151 change = 1;
211 /* Compute relative change of required parameter vectorX. change = norm(curr-prev) / norm(curr) ) */
212 change = cvNorm(vectX, vectNewX, CV_RELATIVE_L2);
226 } while ( change > epsilon && currIter < maxIter );
  /external/qemu/distrib/sdl-1.2.15/src/joystick/beos/
SDL_bejoystick.cc 162 int i, change; local
180 change = ((int32)axes[i] - joystick->axes[i]);
181 if ( (change > JITTER) || (change < -JITTER) ) {
186 /* Generate hat change events */
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 268 * @param n {@code >= 0;} which element to change, where {@code 0} is
274 public void change(int n, TypeBearer type) { method in class:ExecutionStack
299 * this merge results in a change. If no change results, this instance is
Merger.java 127 result.change(i, resultType);
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarDisplayOptions.java 129 int change = bar.getDisplayOptions() ^ flags; local
130 bar.setDisplayOptions(change, flags);
  /external/libppp/src/
i4b.c 104 int ombits, change; local
140 change = ombits ^ dev->mbits;
141 if (change & TIOCM_CD) {
tty.c 121 int ombits, change; local
164 change = ombits ^ dev->mbits;
165 if (change & TIOCM_CD) {
733 /* Change tty speed when we're not in -direct mode */
  /frameworks/base/services/java/com/android/server/
RecognitionManagerService.java 64 int change = isPackageDisappearing(comp.getPackageName()); local
65 if (change == PACKAGE_PERMANENT_CHANGE
66 || change == PACKAGE_TEMPORARY_CHANGE) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 35 import org.eclipse.ltk.core.refactoring.Change;
170 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) {
178 List<Change> changes = new ArrayList<Change>();
222 TextFileChange change = new TextFileChange(file.getName(), file); local
223 change.setEdit(rootEdit);
224 change.setTextType(EXT_XML);
225 changes.add(change);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 169 void change() { method in class:GcSnapshot.Layer
171 mBitmap.change();
614 layer.change();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceParticipant.java 62 import org.eclipse.ltk.core.refactoring.Change;
365 public Change createChange(IProgressMonitor monitor) throws CoreException,
419 CompositeChange change,
431 addResourceXmlChanges(manifest, change, null);
452 addResourceXmlChanges(file, change, folderType);
464 change.add(new RenameResourceChange(path, newFile));
482 Change fieldChanges = mFieldRefactoring.createChange(monitor);
486 // Look for the field change on the R.java class; it's a derived file
515 TextFileChange change = new TextFileChange(file.getName(), file); local
516 change.setTextType(EXT_XML)
725 TextChange change = getTextChange(rFile); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
ApplicationPackageNameRefactoring.java 51 import org.eclipse.ltk.core.refactoring.Change;
121 public Change createChange(IProgressMonitor pm) throws CoreException,
236 // Prepare the change set
264 // Found an occurrence. Create a change for it.
326 // Prepare the change set
366 // Found an occurrence. Create a change for it.
372 editGroups.add(new TextEditGroup("Change Android package name", edit));
424 CompositeChange change = new CompositeChange("Refactoring Application package name", local
425 mChanges.toArray(new Change[mChanges.size()]));
426 change.markAsSynthetic()
    [all...]
  /dalvik/vm/compiler/
SSATransformation.cpp 441 bool change; local
449 change = false;
463 change = true;
474 } while (change);
Dataflow.cpp 1653 bool change = true; local
    [all...]
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 49 and the date of any change. For modified versions of the FDK AAC Codec, the term
574 int change = max_band_previous - diff[0]; local
576 /* Limit the change so that the last band cannot get narrower than the first one */
577 if ( change > (diff[length-1]-diff[0])>>1 )
578 change = (diff[length-1]-diff[0])>>1;
580 diff[0] += change;
581 diff[length-1] -= change;
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.cpp 49 and the date of any change. For modified versions of the FDK AAC Codec, the term
576 INT change=max_band_previous-diff[0]; local
578 /* Limit the change so that the last band cannot get narrower than the first one */
579 if ( change > (diff[length-1] - diff[0]) / 2 )
580 change = (diff[length-1] - diff[0]) / 2;
582 diff[0] += change;
583 diff[length-1] -= change;
  /external/qemu/distrib/sdl-1.2.15/src/joystick/win32/
SDL_mmjoystick.c 282 int value, change; local
308 change = (value - joystick->axes[i]);
309 if ( (change < -JOY_AXIS_THRESHOLD) || (change > JOY_AXIS_THRESHOLD) ) {
  /external/quake/quake/src/QW/client/
pmove.c 75 float change; local
88 change = normal[i]*backoff;
89 out[i] = in[i] - change;

Completed in 851 milliseconds

1 2 3 4 5 6