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

<<11121314151617181920>>

  /external/skia/src/opts/
SkBlitRow_opts_arm.h 13 // Define USE_NEON_CODE to indicate that we need to build NEON routines
16 // Define USE_ARM_CODE to indicate that we need to build ARM routines
  /frameworks/base/media/mca/filterfw/jni/
Android.mk 36 # Need FilterFW lib
39 # Also need the JNI headers.
  /libcore/dalvik/src/main/java/dalvik/annotation/
ToBeFixed.java 26 * need to be fixed in future.
39 * Specifies why this method need to be fixed. If we think it's a bug, explain
  /libcore/luni/src/main/native/
readlink.cpp 24 // We can't know how big a buffer readlink(2) will need, so we need to
  /ndk/sources/host-tools/sed-4.2.1/m4/
alloca.m4 21 AC_EGREP_CPP([Need own alloca], [
23 Need own alloca
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 116 "Need BLUETOOTH ADMIN permission");
134 "Need BLUETOOTH ADMIN permission");
146 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
151 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
156 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
162 "Need BLUETOOTH_ADMIN permission");
172 "Need BLUETOOTH_ADMIN permission");
181 "Need BLUETOOTH permission");
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemView.java 41 // We will assume that once measured this will not need to resize
42 // itself, so there is no need to pass the layout request to the parent
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm-generic/
mman.h 30 #define MADV_WILLNEED 3 /* will need these pages */
31 #define MADV_DONTNEED 4 /* don't need these pages */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm-generic/
mman.h 30 #define MADV_WILLNEED 3 /* will need these pages */
31 #define MADV_DONTNEED 4 /* don't need these pages */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm-generic/
mman.h 30 #define MADV_WILLNEED 3 /* will need these pages */
31 #define MADV_DONTNEED 4 /* don't need these pages */
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 311 "Need BLUETOOTH ADMIN permission");
329 "Need BLUETOOTH ADMIN permission");
341 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
346 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
351 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
357 "Need BLUETOOTH_ADMIN permission");
367 "Need BLUETOOTH_ADMIN permission");
375 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
386 enforceCallingOrSelfPermission(BLUETOOTH_PERM, "Need BLUETOOTH permission");
387 // It seem that we really need to check the AudioOn state
    [all...]
  /external/chromium/chrome/browser/sync/glue/
extension_util.h 44 // state. Neither |a| nor |b| need to be valid.
58 // |incognito_enabled|. Neither parameter need be valid.
63 // Copies everything but non-user properties. Neither parameter need
70 // properties. Neither |a| nor |b| need to be valid.
76 // properties. Neither |a| nor |b| need to be valid.
  /external/icu4c/i18n/
tmunit.cpp 31 * 1. a flag need to be added in Measure;
32 * 2. a new constructor which takes const "unit" as parameter need to be added,
34 * 3. clone and destructor need to check upon this flag to distinguish on how
51 * we should and need to change TimeUnitAmount and CurrencyAmount to be
53 * Or we need to add 2 parallel mutable classes in order to
  /external/jpeg/
jinclude.h 14 * JPEG library. Most applications need only include jpeglib.h.
18 /* Include auto-config file to find out which system include files we need. */
24 * We need the NULL macro and size_t typedef.
49 * We need memory copying and zeroing functions, plus strncpy().
84 * these macros. On some systems you may need to twiddle the argument casts.
  /external/qemu/distrib/jpeg-6b/
jinclude.h 14 * JPEG library. Most applications need only include jpeglib.h.
18 /* Include auto-config file to find out which system include files we need. */
24 * We need the NULL macro and size_t typedef.
49 * We need memory copying and zeroing functions, plus strncpy().
84 * these macros. On some systems you may need to twiddle the argument casts.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
LookaheadStream.cs 109 * Make sure we have 'need' elements from current position p. Last valid
110 * p index is data.size()-1. p+need-1 is the data index 'need' elements
111 * ahead. If we need 1 element, (p+1-1)==p must be &lt; data.size().
114 protected virtual void SyncAhead(int need) {
115 int n = (_p + need - 1) - _data.Count + 1; // how many more elements we need?
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
LookaheadStream.cs 127 * Make sure we have 'need' elements from current position p. Last valid
128 * p index is data.size()-1. p+need-1 is the data index 'need' elements
129 * ahead. If we need 1 element, (p+1-1)==p must be &lt; data.size().
132 protected virtual void SyncAhead( int need )
134 int n = ( _p + need - 1 ) - _data.Count + 1; // how many more elements we need?
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
LookaheadStream.java 95 /** Make sure we have 'need' elements from current position p. Last valid
96 * p index is data.size()-1. p+need-1 is the data index 'need' elements
97 * ahead. If we need 1 element, (p+1-1)==p must be < data.size().
99 protected void syncAhead(int need) {
100 int n = (p+need-1) - data.size() + 1; // how many more elements we need?
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
LookaheadStream.h 82 /** Make sure we have 'need' elements from current position p. Last valid
83 * p index is data.size()-1. p+need-1 is the data index 'need' elements
84 * ahead. If we need 1 element, (p+1-1)==p must be < data.size().
86 public void sync(int need) {
87 int n = (p+need-1) - data.size() + 1; // how many more elements we need?
LookaheadStream.m 82 /** Make sure we have 'need' elements from current position p. Last valid
83 * p index is data.size()-1. p+need-1 is the data index 'need' elements
84 * ahead. If we need 1 element, (p+1-1)==p must be < data.size().
86 public void sync(int need) {
87 int n = (p+need-1) - data.size() + 1; // how many more elements we need?
  /external/compiler-rt/lib/asan/tests/
asan_mac_test_helpers.mm 88 // pthread_create(). We need to verify that AddressSanitizer notices that the
91 // TODO(glider): this is hacky. Need to wait for the worker instead.
99 // pthread_create(). We need to verify that AddressSanitizer notices that the
102 // TODO(glider): this is hacky. Need to wait for the worker instead.
106 // libdispatch spawns a rather small number of threads and reuses them. We need
116 // TODO(glider): this is hacky. Need to wait for the workers instead.
133 // TODO(glider): this is hacky. Need to wait for the workers instead.
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZonePickerUtils.java 44 * This needs to be an instantiated class so that it doesn't need to continuously re-load the
45 * list of timezone IDs that need to be overridden.
49 // Instead of saving a reference to the context (because we might need to look up the
59 * @param context Context in case the override labels need to be re-cached.
75 // recently, we'll need to re-cache them.
153 * need to be have their default display names overriden, use the pre-set display name from
178 // If the ID doesn't need to have the display name overridden, or if the labels were
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryPackInstallBroadcastReceiver.java 35 * need to query the dictionaries.
37 * this happens, we need to re-query the dictionaries.
38 * - Unknown client. If the dictionary provider is in urgent need of data about some client that
39 * it does not know, it sends this broadcast. When we receive this, we need to tell the dictionary
66 // We need to reread the dictionary if a new dictionary package is installed.
105 // When the dictionary package is removed, we need to reread dictionary (to use the
108 // If we are replacing the package, we will receive ADDED right away so no need to
  /external/icu4c/common/unicode/
localpointer.h 33 * - Need to be able to orphan/release the pointer and its ownership.
34 * - Need variants for normal C++ object pointers, C++ arrays, and ICU C service objects.
92 * with ==NULL need not be changed.
100 * with !=NULL need not be changed.
176 * if(some condition) { return; } // no need to explicitly delete the pointer
179 * // no need to explicitly delete the pointer
222 * if(some condition) { return; } // no need to explicitly delete the array
225 * // no need to explicitly delete the array
283 * if(U_FAILURE(errorCode)) { return; } // no need to explicitly delete the UCaseMap
  /development/host/windows/usb/
readme.txt 3 package that is compliant with android_winusb.inf, you need to create
34 template to create new .inf file for new devices. Note that you also need
38 available in WDK at bin\SelfSign folder. To use this utility you will need to

Completed in 4055 milliseconds

<<11121314151617181920>>