HomeSort by relevance Sort by last modified time
    Searched refs:changed (Results 126 - 150 of 728) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/ash/display/
display_manager_unittest.cc 69 const vector<gfx::Display>& changed() const { return changed_; } function in class:ash::DisplayManagerTest
144 EXPECT_EQ(display_manager()->GetDisplayAt(0).id(), changed()[0].id());
146 EXPECT_EQ("0,0 500x500", changed()[0].bounds().ToString());
161 EXPECT_EQ(display_manager()->GetDisplayAt(0).id(), changed()[0].id());
162 EXPECT_EQ("0,0 1000x600", changed()[0].bounds().ToString());
176 // Secondary removed, primary changed.
180 EXPECT_EQ(display_manager()->GetDisplayAt(0).id(), changed()[0].id());
181 EXPECT_EQ("0,0 800x300", changed()[0].bounds().ToString());
200 EXPECT_EQ("0,0 500x400", changed()[0].bounds().ToString());
202 GetDisplayInfo(changed()[0]).bounds_in_native().ToString())
1203 bool changed = changed_; local
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderSpanTest.java 386 private ArrayList<Changed> mChanged = new ArrayList<Changed>();
402 private class Changed {
409 public Changed(Object span, int oldStart, int oldEnd, int newStart, int newEnd) {
438 if (text == mSpannable) mChanged.add(new Changed(span, ostart, oend, nstart, nend));
450 for (Changed changed: mChanged) {
451 if (changed.span == span)
452 fail("Span " + span + " was changed and not unmodified");
457 for (Changed changed : mChanged)
    [all...]
  /external/chromium_org/chrome/browser/resources/
flags.js 155 * @param {HTMLElement} node The node for the experiment being changed.
166 * Invoked when the selection of a multi-value choice is changed to the
168 * @param {HTMLElement} node The node for the experiment being changed.
  /external/chromium_org/chrome/browser/resources/gaia_auth/
saml_injected.js 9 * UI around it should be changed accordingly;
72 // Channel to send back changed password.
106 * Check if the password field at |index| has changed. If so, sends back
  /external/chromium_org/content/browser/gamepad/
gamepad_provider.cc 208 bool changed; local
218 changed = devices_changed_;
228 data_fetcher_->GetGamepadData(&hwbuf->buffer, changed);
  /external/chromium_org/third_party/re2/re2/
simplify.cc 200 bool changed = false; local
206 changed = true;
210 if (!changed) {
  /cts/tests/tests/view/src/android/view/cts/
GestureDetectorCtsActivity.java 66 protected void onLayout(boolean changed, int l, int t, int r, int b) {
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalVariableInfo.java 110 boolean changed = false;
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableInfo.java 109 boolean changed = false;
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 110 boolean changed = false;
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
CardStreamLinearLayout.java 231 protected void onLayout(boolean changed, int l, int t, int r, int b) {
232 super.onLayout(changed, l, t, r, b);
233 Log.d(TAG, "onLayout: " + changed);
235 if( changed && !mLayouted ){
  /development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
FixedGridLayout.java 86 protected void onLayout(boolean changed, int l, int t, int r, int b) {
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
FitCenterFrameLayout.java 53 protected void onLayout(boolean changed, int l, int t, int r, int b) {
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
CardStreamLinearLayout.java 231 protected void onLayout(boolean changed, int l, int t, int r, int b) {
232 super.onLayout(changed, l, t, r, b);
233 Log.d(TAG, "onLayout: " + changed);
235 if( changed && !mLayouted ){
  /external/chromium_org/chrome/common/extensions/docs/server2/
app_yaml_helper.py 21 system's revision history to find when it changed to some given version.
  /external/chromium_org/third_party/skia/src/gpu/
GrResourceCache.cpp 390 bool changed = false; local
397 changed = false;
416 changed = true;
421 } while (!withinBudget && changed);
  /external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
control_panel.js 55 * Invoked when the model changed.
107 * Invoked when the 'duration' property is changed.
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
LocalVariableInfo.java 110 boolean changed = false;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LocalVariableInfo.java 111 boolean changed = false;
  /external/llvm/lib/CodeGen/
StackSlotColoring.cpp 276 bool Changed = false;
286 Changed |= (SS != NewSS);
304 if (!Changed)
370 bool changed = false; local
384 changed = true;
399 changed = true;
414 return changed;
429 bool Changed = false;
446 Changed = ColorSlots(MF);
461 return Changed;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Maps.java     [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Maps.java     [all...]
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp 202 // address and it has changed.
209 // address for dyld and it has changed.
448 bool changed = false; local
490 changed = true;
504 // If the loaded the file (it changed) and we have segments that
511 if (changed && !inaccessible_segment_indexes.empty())
537 changed = true;
538 else if (changed)
543 return changed;
553 bool changed = false local
869 bool changed = false; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CameraPreview.java 220 protected void onLayout(boolean changed, int l, int t, int r, int b) {
221 if (changed && getChildCount() > 0) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ContentBrowserActivity.java 142 final boolean changed = newVis == getSystemUiVisibility();
146 if (changed || visible) {

Completed in 1131 milliseconds

1 2 3 4 56 7 8 91011>>