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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/etc/
add-log.el 26 ;;; add-log.el --- change log maintenance commands for Emacs
55 (defvar change-log-default-name nil
56 "*Name of a change log file for \\[add-change-log-entry].")
61 \\[add-change-log-entry] calls this function (if nil, `add-log-current-defun'
74 (defvar change-log-font-lock-keywords
78 "Additional expressions to highlight in Change Log mode.")
80 (defvar change-log-mode-map nil
81 "Keymap for Change Log major mode.")
82 (if change-log-mode-ma
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
lsf_check.c 31 int k,n,m, Nit=2, change=0,pos; local
53 change=1;
59 change=1;
64 change=1;
70 return change;
  /external/libnl/src/
nl-link-set.c 39 "Change Options\n"
51 struct rtnl_link *change = arg; local
58 if ((err = rtnl_link_change(sock, link, change, 0) < 0))
59 nl_cli_fatal(err, "Unable to change link: %s",
71 struct rtnl_link *link, *change; local
78 change = nl_cli_link_alloc();
111 case ARG_RENAME: nl_cli_link_parse_name(change, optarg); break;
121 nl_cache_foreach_filter(link_cache, OBJ_CAST(link), set_cb, change);
  /external/mesa3d/src/gallium/auxiliary/util/
u_ringbuffer.c 19 pipe_condvar change; member in struct:util_ringbuffer
38 pipe_condvar_init(ring->change);
50 pipe_condvar_destroy(ring->change);
88 pipe_condvar_wait(ring->change, ring->mutex);
103 /* Signal change:
105 pipe_condvar_signal(ring->change);
126 pipe_condvar_wait(ring->change, ring->mutex);
155 /* Signal change:
157 pipe_condvar_signal(ring->change);
  /external/v8/src/crankshaft/
hydrogen-infer-representation.cc 35 bool change = true; local
36 while (change) {
37 change = false;
47 change = true;
hydrogen-representation-changes.cc 12 // Insert the representation change right before its use. For phi-uses we
20 // For constants we try to make the representation change at compile
21 // time. When a representation change is not possible without loss of
23 // change instructions for them.
54 static bool IsNonDeoptingIntToSmiChange(HChange* change) {
55 Representation from_rep = change->from();
56 Representation to_rep = change->to();
58 DCHECK(!change->CheckFlag(HValue::kUint32));
96 HChange* change = HChange::cast(input); local
97 if (change->from().Equals(req) && IsNonDeoptingIntToSmiChange(change))
    [all...]
  /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/selinux/policycoreutils/setfiles/
restore.h 28 int change; member in struct:restore_opts
  /external/selinux/prebuilts/bin/
sediff.py 134 change = [] variable
136 change.append("{0} Added permissions".format(len(mod.added_perms)))
138 change.append("{0} Removed permissions".format(len(mod.removed_perms)))
140 print(" * {0} ({1})".format(name, ", ".join(change)))
162 change = [] variable
164 change.append("{0} Added permissions".format(len(mod.added_perms)))
166 change.append("{0} Removed permissions".format(len(mod.removed_perms)))
168 print(" * {0} ({1})".format(name, ", ".join(change)))
214 change = [] variable
216 change.append("{0} Added types".format(len(mod.added_types))
243 change = [] variable
292 change = [] variable
321 change = [] variable
367 change = [] variable
399 change = [] variable
432 change = [] variable
887 change = [] variable
    [all...]
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
ToolbarDisplayOptions.java 122 int change = bar.getDisplayOptions() ^ flags; local
123 bar.setDisplayOptions(change, flags);
ActionBarDisplayOptions.java 155 int change = bar.getDisplayOptions() ^ flags; local
156 bar.setDisplayOptions(change, flags);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_videoobjectplane.c 342 int32_t change=0; local
343 if(mp4_brightness_change(parent, &change) == MP4_STATUS_PARSE_ERROR)
347 vidObjPlane->brightness_change_factor = change;
  /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/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 136 int change = bar.getDisplayOptions() ^ flags; local
137 bar.setDisplayOptions(change, flags);
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/mac/
MacKeyboard.cpp 275 UInt32 change = prevModMask ^ mods; local
276 MacEventType newstate = ((change & prevModMask) > 0) ? MAC_KEYUP : MAC_KEYDOWN;
281 //cout << "Change: " << hex << (change & prevModMask) << endl << endl;
284 switch (change)
  /external/pdfium/fpdfsdk/src/javascript/
event.cpp 23 JS_STATIC_PROP_ENTRY(change)
55 FX_BOOL event::change(IJS_Context* cc, function in class:event
60 CFX_WideString& wChange = pEvent->Change();
  /external/v8/test/cctest/compiler/
test-changes-lowering.cc 8 #include "src/compiler/change-lowering.h"
89 Node* change = this->graph()->NewNode(op, p0); local
90 Node* ret = this->graph()->NewNode(this->common()->Return(), change,
94 LowerChange(change);
102 Node* change = this->graph()->NewNode(op, p0); local
105 change, this->start(), this->start());
110 LowerChange(change);
120 Node* change = this->graph()->NewNode(op, load); local
121 Node* ret = this->graph()->NewNode(this->common()->Return(), change,
125 LowerChange(change);
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
UidRecord.java 44 int change; field in class:UidRecord.ChangeItem
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
ObservableArrayListTest.java 30 private static final int CHANGE = 1;
50 mNotifications.add(new ListChange(CHANGE, start, count));
71 public ListChange(int change, int start, int count) {
76 this.change = change;
79 public ListChange(int change, int from, int to, int count) {
84 this.change = change;
95 public final int change; field in class:ObservableArrayListTest.ListChange
160 ListChange change = mNotifications.get(0) local
179 ListChange change = mNotifications.get(1); local
196 ListChange change = mNotifications.get(0); local
213 ListChange change = mNotifications.get(0); local
225 ListChange change = mNotifications.get(0); local
241 ListChange change = mNotifications.get(0); local
253 ListChange change = mNotifications.get(0); local
270 ListChange change = mNotifications.get(0); local
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/
SortedArrayAdapter.java 146 * Change an item in the list.
147 * @param item The item to change.
149 final void change(T item) { method in class:SortedArrayAdapter
  /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);
  /cts/tests/tests/car/src/android/car/cts/
CarAppContextManagerTest.java 75 ContextChangeListener change = new ContextChangeListener(); local
79 mManager.registerContextListener(change, CarAppContextManager.APP_CONTEXT_NAVIGATION |
96 // change should not get notification for its own change
97 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
112 // change should not get notification for its own change
113 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
120 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
151 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0))
177 ContextChangeListener change = new ContextChangeListener(); local
    [all...]
  /packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/
CarAppContextManagerTest.java 77 ContextChangeListerner change = new ContextChangeListerner(); local
81 mManager.registerContextListener(change, CarAppContextManager.APP_CONTEXT_NAVIGATION |
98 // change should not get notification for its own change
99 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
114 // change should not get notification for its own change
115 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
122 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
153 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0))
179 ContextChangeListerner change = new ContextChangeListerner(); local
    [all...]
  /packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/
CarAppContextManagerTest.java 77 ContextChangeListerner change = new ContextChangeListerner(); local
81 mManager.registerContextListener(change, CarAppContextManager.APP_CONTEXT_NAVIGATION |
98 // change should not get notification for its own change
99 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
114 // change should not get notification for its own change
115 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
122 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0));
153 assertFalse(change.waitForContextChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS, 0))
179 ContextChangeListerner change = new ContextChangeListerner(); local
    [all...]

Completed in 708 milliseconds

1 2 3 4 5 6 7 8 91011>>