HomeSort by relevance Sort by last modified time
    Searched full:need (Results 76 - 100 of 18991) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/apks/version/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...]
  /external/chromium/chrome/browser/profiles/
profile_keyed_service.h 12 // subsystems need a first pass shutdown phase where they drop references. Not
13 // all services will need this, so there's a default implementation. Only once
  /external/valgrind/main/gdbserver_tests/
mcwatchpoints.vgtest 2 # Note: we need --vgdb=full to stop at the instruction following the watchpoint.
3 # We need a non buggy gdb.step as watchpoints are placed after a "step".
  /frameworks/base/core/tests/hosttests/test-apps/ExternalLocAllPermsTestApp/src/com/android/framework/externallocallpermstestapp/
ExternalLocAllPermsTest.java 26 * Test method that should get run. Doesn't need to actually do anything here,
27 * we just need to verify the test runs without errors.
  /build/core/
apicheck_msg_current.txt 13 you will need approval.
  /dalvik/vm/mterp/c/
OP_THROW.cpp 8 * We need to update the saved PC.
  /dalvik/vm/mterp/x86/
OP_MONITOR_ENTER.S 11 EXPORT_PC # need for precise GC
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/
import.apt 4 as imports in your main .g files, you need to place the imported grammar
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/
antlr.properties 4 # filtered into this resource file so that we don't need to
  /external/chromium/base/
message_pump_default.cc 49 // need to call DoDelayedWork now.
53 // Since event_ is auto-reset, we don't need to do anything special here
65 // Since this can be called on any thread, we need to ensure that our Run
73 // only be called on the same thread as Run, so we only need to update our
  /external/chromium/chrome/browser/automation/
automation_provider_list_mac.mm 10 // We need to explicitly quit the application here because on Mac
  /external/chromium/chrome/browser/importer/
toolbar_importer_utils.h 11 // Currently the only configuration information we need is to check whether or
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/
README 5 "HelloLicenseServlet.java" contains all the code you need to talk to the Chrome
  /external/clang/test/CodeCompletion/
constexpr.cpp 3 // PR14381: need constexpr function bodies always, even if code-completing.
  /external/grub/util/
Makefile.am 8 # XXX: Need to search for a header file in docs, because of multiboot.h.
  /external/icu4c/test/testdata/
tstfiles.mk 4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
  /external/iptables/extensions/
libxt_CHECKSUM.man 6 This is particularly useful, if you need to work around old applications
  /external/llvm/autoconf/m4/
need_dev_zero_for_mmap.m4 2 # When allocating RWX memory, check whether we need to use /dev/zero
  /external/llvm/cmake/modules/
AddLLVMDefinitions.cmake 2 # options chosen via `add_definitions', so we need our own method for
  /external/llvm/projects/sample/autoconf/m4/
need_dev_zero_for_mmap.m4 2 # When allocating RWX memory, check whether we need to use /dev/zero
  /external/llvm/test/CodeGen/X86/
isnan2.ll 3 ; This should not need to materialize 0.0 to evaluate the condition.
  /external/llvm/test/Scripts/
coff-dump.py.bat 3 @rem We need to set -u to treat stdin as binary. Python 3 has support for doing

Completed in 436 milliseconds

1 2 34 5 6 7 8 91011>>