HomeSort by relevance Sort by last modified time
    Searched full:need (Results 26 - 50 of 17805) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/webkitsecurity/assets/
form-associated-element-crash3.html 6 This test passes if it doesn't crash. Note: You might need to reload this test
  /dalvik/dx/tests/115-merge/
info.txt 5 test. You'll also need a device or host VM for vogar to attach to.
  /dalvik/dx/tests/117-modified-utf8/
info.txt 4 test. You'll also need a device or host VM for vogar to attach to.
  /dalvik/dx/tests/119-merge-conflict/
info.txt 4 test. You'll also need a device or host VM for vogar to attach to.
  /dalvik/vm/mterp/armv5te/
stub.S 2 SAVE_PC_FP_TO_SELF() @ only need to export these two
  /dalvik/vm/mterp/c/
OP_MONITOR_ENTER.cpp 12 EXPORT_PC(); /* need for precise GC */
  /dalvik/vm/mterp/x86/
OP_GOTO.S 6 * The branch distance is a signed code-unit offset, which we need to
  /external/jpeg/
makvms.opt 3 ! but only for the older VAX C compiler. DEC C does not need it.
  /external/llvm/lib/Target/ARM/MCTargetDesc/
CMakeLists.txt 13 # Hack: we need to include 'main' target directory to grab private headers
  /external/llvm/lib/Target/X86/MCTargetDesc/
CMakeLists.txt 13 # Hack: we need to include 'main' target directory to grab private headers
  /external/qemu/distrib/jpeg-6b/
makvms.opt 3 ! but only for the older VAX C compiler. DEC C does not need it.
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
__init__.py 6 # Unclear if Bug and Attachment need to be public classes.
  /frameworks/base/core/tests/coretests/apks/install/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_decl_perm/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_loc_auto/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_loc_internal/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_loc_sdcard/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_loc_unspecified/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_use_perm_good/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_uses_feature/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_verifier_bad/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /frameworks/base/core/tests/coretests/apks/install_verifier_good/res/values/
strings.xml 3 <!-- Just need this dummy file to have something to build. -->
  /ndk/tests/device/gnustl-shared-1/jni/
main.cpp 12 // instead, we would need to activate rtti as well to avoid crashing
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 64 int need = ht - (v + fm.descent - fm.ascent - istartv); local
65 if (need > 0)
66 fm.descent += need;
68 need = ht - (v + fm.bottom - fm.top - istartv);
69 if (need > 0)
70 fm.bottom += need;
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 37 public static int idealByteArraySize(int need) {
39 if (need <= (1 << i) - 12)
42 return need;
45 public static int idealBooleanArraySize(int need) {
46 return idealByteArraySize(need);
49 public static int idealShortArraySize(int need) {
50 return idealByteArraySize(need * 2) / 2;
53 public static int idealCharArraySize(int need) {
54 return idealByteArraySize(need * 2) / 2;
57 public static int idealIntArraySize(int need) {
    [all...]

Completed in 1115 milliseconds

12 3 4 5 6 7 8 91011>>