HomeSort by relevance Sort by last modified time
    Searched full:true (Results 776 - 800 of 18103) sorted by null

<<31323334353637383940>>

  /frameworks/base/opengl/tests/testPauseResume/
Android.mk 5 ifneq ($(TARGET_SIMULATOR),true) # not 64 bit clean
  /frameworks/base/tools/localize/
test.cpp 14 bool all = true;
  /packages/apps/AlarmClock/res/layout/
clockpicker.xml 28 android:layout_alignParentTop="true"
29 android:layout_centerHorizontal="true"
42 android:layout_alignParentBottom="true"
43 android:layout_alignParentLeft="true"
  /packages/apps/Browser/src/com/android/browser/
Browser.java 32 // Set to true to enable extra debugging.
35 // Set to true to enable verbose logging.
38 // Set to true to enable extra debug logging.
39 final static boolean LOGD_ENABLED = true;
  /packages/apps/Contacts/res/layout-finger/
display_group.xml 32 android:duplicateParentState="true">
38 android:singleLine="true"
41 android:duplicateParentState="true" />
51 android:duplicateParentState="true" />
  /packages/apps/Email/res/layout/
message_compose_attachment.xml 27 android:layout_alignParentRight="true"
38 android:singleLine="true"
43 android:layout_alignParentLeft="true"
50 android:layout_centerVertical="true" />
  /packages/apps/Gallery/res/layout/
cropimage.xml 38 android:layout_alignParentBottom="true"
39 android:layout_centerHorizontal="true">
44 android:layout_alignParentLeft="true"
51 android:layout_alignParentRight="true"
  /packages/apps/Gallery/src/com/android/camera/
Wallpaper.java 47 intent.putExtra("crop", "true");
60 intent.putExtra("scale", true);
61 intent.putExtra("noFaceDetection", true);
62 intent.putExtra("setWallpaper", true);
  /packages/apps/Gallery3D/res/layout/
cropimage.xml 37 android:layout_alignParentBottom="true"
38 android:layout_centerHorizontal="true">
43 android:layout_alignParentLeft="true"
50 android:layout_alignParentRight="true"
  /packages/apps/PackageInstaller/res/layout/
app_details.xml 34 android:layout_alignParentLeft="true"
36 android:layout_centerInParent="true"
46 android:singleLine="true"
48 android:layout_centerInParent="true"
  /packages/apps/Phone/res/layout/
enable_fdn_screen.xml 25 android:layout_centerInParent="true">
37 android:scrollHorizontally="true"
40 android:password="true" />
45 android:layout_centerInParent="true"
enable_sim_pin_screen.xml 25 android:layout_centerInParent="true">
37 android:scrollHorizontally="true"
40 android:password="true" />
45 android:layout_centerInParent="true"
  /packages/apps/Settings/res/layout/
power_usage_detail_item_text.xml 28 android:singleLine="true"
29 android:layout_alignParentLeft="true"
37 android:layout_alignParentRight="true"
40 android:singleLine="true"
  /packages/providers/TelephonyProvider/
AndroidManifest.xml 30 android:multiprocess="true" />
34 android:multiprocess="true"
40 android:multiprocess="true"
49 android:multiprocess="true"
  /system/core/libnetutils/
Android.mk 15 ifeq ($(TARGET_SIMULATOR),true)
  /external/skia/include/core/
SkRegion.h 56 /** Replace this region with the specified region, and return true if the
70 /** Return true if this region is empty */
72 /** Return true if this region is a single, non-empty rectangle */
74 /** Return true if this region consists of more than 1 rectangular area */
81 /** Returns true if the region is non-empty, and if so, sets the specified
91 /** If rect is non-empty, set this region to that rectangle and return true,
97 return true, otherwise set this region to empty and return false.
101 /** Set this region to the specified region, and return true if it is
106 Return true if the resulting region is non-empty.
112 /** Returns true if the specified rectangle has a non-empty intersectio
    [all...]
  /external/v8/src/
flag-definitions.h 103 DEFINE_bool(push_pop_elimination, true,
107 DEFINE_bool(enable_sse2, true,
109 DEFINE_bool(enable_sse3, true,
111 DEFINE_bool(enable_cmov, true,
113 DEFINE_bool(enable_rdtsc, true,
115 DEFINE_bool(enable_sahf, true,
117 DEFINE_bool(enable_vfp3, true,
119 DEFINE_bool(enable_armv7, true,
129 DEFINE_bool(inline_new, true, "use fast inline allocation")
132 DEFINE_bool(stack_trace_on_abort, true,
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinIME.java 64 * If is is true, IME will simulate key events for delete key, and send the
67 private static final boolean SIMULATE_KEY_DELETE = true;
192 mGestureListenerCandidates = new OnGestureListener(true);
238 if (processKey(event, 0 != event.getRepeatCount())) return true;
244 if (processKey(event, true)) return true;
255 if (!realAction) return true;
265 return true;
275 return true;
324 if (mSkbContainer.handleBack(realAction)) return true;
    [all...]
  /bootable/recovery/tools/ota/
Android.mk 17 ifneq ($(TARGET_SIMULATOR),true)
20 LOCAL_FORCE_STATIC_EXECUTABLE := true
29 LOCAL_FORCE_STATIC_EXECUTABLE := true
  /build/target/board/
Android.mk 5 ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true)
7 ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true)
17 ifneq ($(strip $(TARGET_NO_KERNEL)),true)
  /cts/tests/res/drawable/
colorstatelist_test.xml 18 <item android:state_focused="true" android:color="@color/resource_test_color"/>
19 <item android:state_pressed="true" android:state_enabled="false" android:color="@color/resource_test_color"/>
21 <item android:state_active="true" android:color="@color/resource_test_color"/>
  /cts/tests/res/layout/
textview_phonenumber.xml 24 android:editable="true"/>
29 android:phoneNumber="true"/>
35 android:editable="true"/>
  /cts/tests/res/xml/
selector_correct.xml 22 android:variablePadding="true"
23 android:constantSize="true" >
25 <item android:state_focused="true"
  /cts/tests/src/android/widget/cts/
SeekBarStubActivity.java 39 v.setEnabled(true);
40 v.setFocusable(true);
41 v.setFocusableInTouchMode(true);
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/
BooleanTest.java 35 notes = "Checks that booleanValue() returns true.",
40 assertTrue(Boolean.TRUE.booleanValue() == true);

Completed in 362 milliseconds

<<31323334353637383940>>