/frameworks/base/core/java/android/content/ |
SyncQueue.java | 85 boolean changed = false; 91 changed = true; 96 changed = true; 99 return changed;
|
/frameworks/base/core/java/android/widget/ |
ScrollBarDrawable.java | 164 final boolean changed = mRangeChanged || mChanged; 165 if (changed) { 177 if (changed) thumb.setBounds(thumbRect); 181 if (changed) thumb.setBounds(thumbRect);
|
/frameworks/base/core/tests/coretests/src/android/view/ |
ViewGroupAttributesTest.java | 34 protected void onLayout(boolean changed, int l, int t, int r, int b) {
|
/packages/apps/Browser/src/com/android/browser/ |
TabScrollView.java | 85 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 86 super.onLayout(changed, left, top, right, bottom); 233 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 234 super.onLayout(changed, left, top, right, bottom);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
AggregationSuggestionEngine.java | 309 boolean changed = updateSuggestedContactIds(cursor); 310 if (!changed) { 335 boolean changed = count != mSuggestedContactIds.length; 336 if (!changed) { 340 changed = true; 346 if (changed) { 356 return changed;
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaConnection.java | 209 // On mobile originated (MO) calls, the phone number may have changed 482 // Returns true if state has changed, false if nothing changed 486 boolean changed = false; 495 if (Phone.DEBUG_PHONE) log("update: phone # changed!"); 497 changed = true; 503 changed = true; 507 changed = true; 521 changed = true; 525 changed = changed || parentStateChange [all...] |
/external/bison/lib/ |
bitset.c | 412 bool changed = false; local 429 changed = bitset_and_cmp (dst, src3, tmp); 434 changed = bitset_or_cmp (dst, src3, tmp); 439 changed = bitset_or_cmp (dst, src3, tmp); 444 return changed;
|
/external/elfutils/libelf/ |
elf32_updatenull.c | 106 int changed = 0; local 272 changed); 309 changed); 313 changed); 318 scn->flags |= changed;
|
/packages/inputmethods/PinyinIME/jni/share/ |
ngram.cpp | 63 size_t changed = 0; local 68 changed++; 71 return changed; 109 size_t changed = update_code_idx(freqs, num, code_book, code_idx); local 115 iter_num, changed, delta);
|
/external/icu4c/common/ |
uvector.cpp | 212 UBool changed = FALSE; local 217 changed = TRUE; 220 return changed; 224 UBool changed = FALSE; local 229 changed = TRUE; 232 return changed;
|
/external/v8/test/mjsunit/regress/ |
regress-186.js | 46 assertFalse(setterCalled, "prototype of extension object changed"); 55 assertFalse(setterCalled, "prototype of extension object changed"); 62 // Check that the prototype of the global object changed.
|
/external/v8/tools/ |
stats-viewer.py | 138 changed = False 142 changed = True 151 changed = (changed or counter_changed) 154 changed = True 156 if changed: 158 # changed. 287 True if the value had changed, otherwise False. The first call
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_elementchangeattributevalue.js | 67 // the page status is changed which allows the 80 its value should be changed to the new one that is in 87 element, then its value should be changed to the new one
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_elementchangeattributevalue.js | 67 // the page status is changed which allows the 80 its value should be changed to the new one that is in 87 element, then its value should be changed to the new one
|
/dalvik/vm/analysis/ |
Liveness.cpp | 93 * requires further attention ("visited" is set and "changed" is 108 * If a block is marked "changed", we stop and handle it. If it 110 * for one that has been changed. 114 * required (both by using "changed" as a work list, and by picking 118 assert(startGuess->changed); 126 if (block->changed) { 140 assert(workBlock->changed || !workBlock->visited); 198 workBlock->changed = false; 206 * the old bits, set the "changed" flag. 216 pred->changed = dvmCheckMergeBitVectors(pred->liveRegs, workBits) [all...] |
/external/e2fsprogs/util/ |
gen-tarball.in | 41 -o -name changed-files -o -name .#\* -o -name \*.tar.gz \
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
LayerDrawable.java | 379 boolean changed = super.setVisible(visible, restart); 385 return changed; 449 boolean changed = false; 453 changed = true; 462 return changed; 470 boolean changed = false; 474 changed = true; 483 return changed;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
IconMerger.java | 59 protected void onLayout(boolean changed, int l, int t, int r, int b) { 60 super.onLayout(changed, l, t, r, b);
|
PhoneStatusBarView.java | 101 protected void onLayout(boolean changed, int l, int t, int r, int b) { 102 super.onLayout(changed, l, t, r, b);
|
/packages/apps/Calculator/src/com/android/calculator2/ |
PanelSwitcher.java | 85 boolean changed = mCurrentView != current; 88 if (changed && mListener != null) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
GestureToolTip.java | 127 // If the alignment has not changed recently, just apply the change immediately 151 //boolean changed = mToRightOf; 152 boolean changed = true; 154 mShell.pack(changed); 180 // Has the orientation changed?
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
FixedGridLayout.java | 75 protected void onLayout(boolean changed, int l, int t, int r, int b) {
|
/external/qemu/distrib/sdl-1.2.12/src/video/riscos/ |
SDL_riscosevents.c | 274 /* Something changed so generate appropriate events */ 344 int changed = last_buttons ^ regs.r[2]; local 346 if (changed & 4) SDL_PrivateMouseButton((last_buttons & 4) ? SDL_PRESSED : SDL_RELEASED, SDL_BUTTON_LEFT, 0, 0); 347 if (changed & 2) SDL_PrivateMouseButton((last_buttons & 2) ? SDL_PRESSED : SDL_RELEASED, SDL_BUTTON_MIDDLE, 0, 0); 348 if (changed & 1) SDL_PrivateMouseButton((last_buttons & 1) ? SDL_PRESSED : SDL_RELEASED, SDL_BUTTON_RIGHT, 0, 0);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
IndicatorControlBar.java | 85 boolean changed, int left, int top, int right, int bottom) {
|
/dalvik/vm/ |
BitVector.cpp | 319 bool changed = false; 328 changed = true; 332 return changed;
|