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

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/idlelib/
MultiStatusBar.py 35 def change(): function in function:_multistatus_bar
39 button = Button(root, text="Update status", command=change)
  /external/python/cpython3/Lib/idlelib/
statusbar.py 36 def change(): function in function:_multistatus_bar
40 button = Button(top, text="Update status", command=change)
  /external/icu/icu4c/source/test/intltest/
testutil.h 21 UBool change; member in struct:EditChange
  /toolchain/binutils/binutils-2.27/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/linux-kselftest/tools/testing/selftests/powerpc/stringloops/
memcmp.c 64 unsigned long change; local
71 /* change one byte */
72 change = random() % SIZE;
73 s2[change] = random() & 0xff;
82 unsigned long change; local
89 /* change multiple bytes, 1/8 of total */
91 change = random() % SIZE;
92 s2[change] = random() & 0xff;
  /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/avb/test/
avb_vbmeta_image_unittest.cc 395 uint64_t change = be64toh(h->auxiliary_data_block_size) - 64; local
396 h->auxiliary_data_block_size = htobe64(change);
400 vbmeta_image_.data(), vbmeta_image_.size() - change, NULL, NULL));
  /external/libnl/src/
nl-link-set.c 39 "Change Options\n"
53 struct rtnl_link *change = arg; local
60 if ((err = rtnl_link_change(sock, link, change, 0)) < 0)
61 nl_cli_fatal(err, "Unable to change link: %s",
73 struct rtnl_link *link, *change; local
80 change = nl_cli_link_alloc();
117 case ARG_RENAME: nl_cli_link_parse_name(change, optarg); break;
118 case ARG_MTU: nl_cli_link_parse_mtu(change, optarg); break;
119 case ARG_TXQLEN: nl_cli_link_parse_txqlen(change, optarg); break;
120 case ARG_WEIGHT: nl_cli_link_parse_weight(change, optarg); break
    [all...]
  /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 36 bool change = true; local
37 while (change) {
38 change = false;
48 change = true;
hydrogen-representation-changes.cc 13 // Insert the representation change right before its use. For phi-uses we
21 // For constants we try to make the representation change at compile
22 // time. When a representation change is not possible without loss of
24 // change instructions for them.
52 static bool IsNonDeoptingIntToSmiChange(HChange* change) {
53 Representation from_rep = change->from();
54 Representation to_rep = change->to();
56 DCHECK(!change->CheckFlag(HValue::kUint32));
94 HChange* change = HChange::cast(input); local
95 if (change->from().Equals(req) && IsNonDeoptingIntToSmiChange(change))
    [all...]
  /device/google/contexthub/firmware/app/chre/common/
chre10_app.c 203 struct chreSensorSamplingStatusEvent change; local
205 change.sensorHandle = msg->sensorHandle;
207 change.status.enabled = 0;
208 change.status.interval = 0;
209 change.status.latency = 0;
211 change.status.enabled = true;
215 change.status.interval = CHRE_SENSOR_INTERVAL_DEFAULT;
217 change.status.interval = (UINT32_C(1024000000) / msg->newRate) * UINT64_C(1000);
220 change.status.latency = CHRE_SENSOR_INTERVAL_DEFAULT;
222 change.status.latency = msg->newLatency
    [all...]
chre_app.c 203 struct chreSensorSamplingStatusEvent change; local
205 change.sensorHandle = msg->sensorHandle;
207 change.status.enabled = 0;
208 change.status.interval = 0;
209 change.status.latency = 0;
211 change.status.enabled = true;
215 change.status.interval = CHRE_SENSOR_INTERVAL_DEFAULT;
217 change.status.interval = (UINT32_C(1024000000) / msg->newRate) * UINT64_C(1000);
220 change.status.latency = CHRE_SENSOR_INTERVAL_DEFAULT;
222 change.status.latency = msg->newLatency
    [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/pdfium/fxjs/xfa/
cjx_eventpseudomodel.cpp 57 void CJX_EventPseudoModel::change(CFXJSE_Value* pValue, function in class:CJX_EventPseudoModel
60 Property(pValue, XFA_Event::Change, bSetting);
206 case XFA_Event::Change:
  /external/selinux/prebuilts/bin/
sediff.py 158 change = [] variable
160 change.append("{0} Added permissions".format(len(mod.added_perms)))
162 change.append("{0} Removed permissions".format(len(mod.removed_perms)))
164 print(" * {0} ({1})".format(name, ", ".join(change)))
186 change = [] variable
188 change.append("{0} Added permissions".format(len(mod.added_perms)))
190 change.append("{0} Removed permissions".format(len(mod.removed_perms)))
192 print(" * {0} ({1})".format(name, ", ".join(change)))
238 change = [] variable
240 change.append("{0} Added types".format(len(mod.added_types))
267 change = [] variable
316 change = [] variable
345 change = [] variable
391 change = [] variable
423 change = [] variable
456 change = [] variable
1220 change = [] variable
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debug_grpc_testlib.cc 94 EventReply::DebugOpStateChange* change = local
99 change->set_state(new_states_[i]);
101 change->set_node_name(debug_node_key.node_name);
102 change->set_output_slot(debug_node_key.output_slot);
103 change->set_debug_op(debug_node_key.debug_op);
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/app/
ToolbarDisplayOptions.java 123 int change = bar.getDisplayOptions() ^ flags; local
124 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;
  /cts/tests/tests/car/src/android/car/cts/
CarAppFocusManagerTest.java 99 FocusChangedListerner change = new FocusChangedListerner(); local
103 mManager.addFocusListener(change, CarAppFocusManager.APP_FOCUS_TYPE_NAVIGATION);
104 mManager.addFocusListener(change, CarAppFocusManager.APP_FOCUS_TYPE_VOICE_COMMAND);
122 assertTrue(change.waitForFocusChangedAndAssert(DEFAULT_WAIT_TIMEOUT_MS,
141 assertTrue(change.waitForFocusChangedAndAssert(DEFAULT_WAIT_TIMEOUT_MS,
145 change.reset();
156 assertFalse(change.waitForFocusChangedAndAssert(DEFAULT_WAIT_TIMEOUT_MS,
175 change.reset();
186 change.reset();
199 assertTrue(change.waitForFocusChangedAndAssert(DEFAULT_WAIT_TIMEOUT_MS
    [all...]
  /packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/
CarAppFocusManagerTest.java 89 FocusChangedListener change = new FocusChangedListener(); local
93 mManager.addFocusListener(change, CarAppFocusManager.APP_FOCUS_TYPE_NAVIGATION);
94 mManager.addFocusListener(change, CarAppFocusManager.APP_FOCUS_TYPE_VOICE_COMMAND);
109 assertTrue(change.waitForFocusChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS,
122 assertTrue(change.waitForFocusChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS,
126 change.reset();
134 assertFalse(change.waitForFocusChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS,
149 change.reset();
157 change.reset();
166 assertTrue(change.waitForFocusChangeAndAssert(DEFAULT_WAIT_TIMEOUT_MS
    [all...]
  /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/syslinux/gpxe/src/net/80211/
wep.c 265 * Check for key change on trivial 802.11 security handshaker
274 int change = 0; local
278 change ^= 1;
283 change ^= 1;
286 if ( change )

Completed in 985 milliseconds

1 2 3 4 5 6 7 8 91011>>