/frameworks/base/core/tests/coretests/apks/version/res/values/ |
strings.xml | 3 <!-- Just need this dummy file to have something to build. -->
|
/frameworks/base/core/tests/coretests/apks/version_nosys/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/support/v4/java/android/support/v4/util/ |
ContainerHelpers.java | 24 public static int idealIntArraySize(int need) { 25 return idealByteArraySize(need * 4) / 4; 28 public static int idealLongArraySize(int need) { 29 return idealByteArraySize(need * 8) / 8; 32 public static int idealByteArraySize(int need) { 34 if (need <= (1 << i) - 12) 37 return need;
|
/cts/tests/tests/permission2/ |
AndroidManifest.xml | 31 <!-- need ability to send sms, to test that SMS's cannot be received --> 37 <!-- need app that has WRITE_SETTINGS but not WRITE_SECURE_SETTINGS --> 40 <!-- need app that has CALL_PHONE but not PROCESS_OUTGOING_CALL --> 45 <!-- need app that has RECORD_AUDIO but not CAPTURE_AUDIO_OUTPUT --> 48 <!-- need a permission that would ordinarily be granted, but has a maxSdkVersion that 54 <!-- need a permission that will be granted -->
|
/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/chromium_org/base/test/ |
mock_chrome_application_mac.h | 16 // CrAppControlProtocol. This can be used in tests that need an 17 // NSApplication and use a runloop, or which need a ScopedSendingEvent
|
/external/chromium_org/chrome/browser/sync/glue/ |
DEPS | 21 # TODO(zea): SessionModelAssociator shouldn't need this. 22 # TODO(sync): Also need to fix crbug.com/123674.
|
/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
location.html | 3 To start retrieving location information, you need to create a location watch 10 You also need to add a listener
|
/external/chromium_org/components/browser_context_keyed_service/ |
browser_context_keyed_service.h | 16 // subsystems need a first pass shutdown phase where they drop references. Not 17 // all services will need this, so there's a default implementation. Only once
|
/external/chromium_org/tools/git/ |
post-checkout | 15 warn "DEPS has local modifications; do you need to re-run gclient sync?" 19 warn "DEPS has changed; you probably need to re-run gclient sync."
|
/external/chromium_org/ui/views/ |
view_aura.cc | 22 // TODO(jennyz): This value may need to be adjusted for different platforms 28 // TODO(jennyz): This value may need to be adjusted for different platforms
|
/external/clang/test/Lexer/ |
cxx1y_binary_literal.cpp | 16 // FIXME: If we ever need to support a standard suffix starting with [a-f], 17 // we'll need to rework our binary literal parsing rules.
|
/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
|
/development/ide/eclipse/ |
README.importing-to-eclipse.txt | 15 You will need to re-index for the changes to get picked up (right click project 21 You will need to re-index for the changes to get picked up (right click project 24 In addition, you will need to add some include files (no way to import this 31 If you are having trouble seeing the "Include Files" tab, you will need to
|
/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
|