/frameworks/support/v7/appcompat/res/values-large/ |
dimens.xml | 25 <!-- The platform's desired fixed width for a dialog along the major axis 28 <!-- The platform's desired fixed width for a dialog along the minor axis 31 <!-- The platform's desired fixed height for a dialog along the major axis 34 <!-- The platform's desired fixed height for a dialog along the minor axis
|
/frameworks/support/v7/appcompat/res/values-xlarge/ |
dimens.xml | 27 <!-- The platform's desired fixed width for a dialog along the major axis 30 <!-- The platform's desired fixed width for a dialog along the minor axis 33 <!-- The platform's desired fixed height for a dialog along the major axis 36 <!-- The platform's desired fixed height for a dialog along the minor axis
|
/prebuilts/sdk/current/support/v7/appcompat/res/values-large/ |
dimens.xml | 25 <!-- The platform's desired fixed width for a dialog along the major axis 28 <!-- The platform's desired fixed width for a dialog along the minor axis 31 <!-- The platform's desired fixed height for a dialog along the major axis 34 <!-- The platform's desired fixed height for a dialog along the minor axis
|
/prebuilts/sdk/current/support/v7/appcompat/res/values-xlarge/ |
dimens.xml | 27 <!-- The platform's desired fixed width for a dialog along the major axis 30 <!-- The platform's desired fixed width for a dialog along the minor axis 33 <!-- The platform's desired fixed height for a dialog along the major axis 36 <!-- The platform's desired fixed height for a dialog along the minor axis
|
/external/libvncserver/x11vnc/misc/ |
blockdpy.c | 62 * The options -standby and -suspend change the desired DPMS level 164 CARD16 desired = DPMSModeOff; local 193 desired = DPMSModeStandby; 195 desired = DPMSModeSuspend; 197 desired = DPMSModeOff; 250 if (desired == DPMSModeOff) { 255 } else if (desired == DPMSModeSuspend) { 260 } else if (desired == DPMSModeStandby) { 276 if (! DPMSForceLevel(dpy, desired)) { 290 /* grab display if desired. NOT WORKING * [all...] |
/external/clang/lib/Headers/ |
stdatomic.h | 131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) 137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) 140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) 143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
|
/external/skia/include/ports/ |
SkAtomics_atomic.h | 35 bool sk_atomic_compare_exchange(T* ptr, T* expected, T desired, 44 return __atomic_compare_exchange_n(ptr, expected, desired, false/*weak?*/, success, failure);
|
/libcore/luni/src/main/java/javax/net/ssl/ |
package.html | 11 sockets, the selection of desired SSL and TLS protocol versions, and 12 the selection of desired cipher suites. The {@link
|
/packages/apps/Camera2/src/com/android/camera/captureintent/stateful/ |
EventHandler.java | 34 * @return The next desired state. If it is not NO_CHANGE, the state 35 * machine will change to the next desired state.
|
/prebuilts/sdk/renderscript/clang-include/ |
stdatomic.h | 131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) 137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) 140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) 143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
|
/frameworks/base/location/java/android/location/ |
Criteria.java | 118 * Indicates the desired horizontal accuracy (latitude and longitude). 133 * Returns a constant indicating the desired horizontal accuracy (latitude and longitude). 142 * Indicates the desired vertical accuracy (altitude). 157 * Returns a constant indicating the desired vertical accuracy (altitude). 166 * Indicates the desired speed accuracy. 181 * Returns a constant indicating the desired speed accuracy 190 * Indicates the desired bearing accuracy. 205 * Returns a constant indicating the desired bearing accuracy. 214 * Indicates the desired accuracy for latitude and longitude. Accuracy 215 * may be {@link #ACCURACY_FINE} if desired locatio [all...] |
/art/runtime/ |
atomic.h | 217 void StoreRelaxed(T desired) { 218 this->store(desired, std::memory_order_relaxed); 222 void StoreJavaData(T desired) { 223 this->store(desired, std::memory_order_relaxed); 227 void StoreRelease(T desired) { 228 this->store(desired, std::memory_order_release); 232 void StoreSequentiallyConsistent(T desired) { 233 this->store(desired, std::memory_order_seq_cst); 236 // Atomically replace the value with desired value if it matches the expected value. 247 // Atomically replace the value with desired value if it matches the expected value. Doesn' [all...] |
/cts/tests/tests/widget/src/android/widget/cts/util/ |
ListUtil.java | 42 * @param pos The desired position. 68 * Arrow (up or down as appropriate) to the desired position in the list. 69 * @param desiredPos The desired position
|
/external/compiler-rt/test/BlocksRuntime/ |
fail.c | 82 char desired[512]; local 84 bool gotErrorFile = readfile(desired, errorfile); 92 char *where = strstr(got, desired);
|
/external/droiddriver/src/io/appium/droiddriver/helpers/ |
ScrollerHelper.java | 44 * @param itemFinder Finder for the desired item; relative to 57 * @param itemFinder Finder for the desired item; relative to 70 * @param itemFinder Finder for the desired item
|
/external/droiddriver/src/io/appium/droiddriver/scroll/ |
Scroller.java | 25 * Interface for scrolling to the desired item in a scrollable container view. 34 * @param itemFinder Finder for the desired item; relative to {@code containerFinder} 46 * @param itemFinder Finder for the desired item; relative to {@code containerFinder}
|
/external/llvm/test/Transforms/AtomicExpand/ARM/ |
atomic-expansion-v8.ll | 85 define i8 @test_cmpxchg_i8_seqcst_seqcst(i8* %ptr, i8 %desired, i8 %newval) { 93 ; CHECK: [[SHOULD_STORE:%.*]] = icmp eq i8 [[OLDVAL]], %desired 114 %pairold = cmpxchg i8* %ptr, i8 %desired, i8 %newval seq_cst seq_cst 119 define i16 @test_cmpxchg_i16_seqcst_monotonic(i16* %ptr, i16 %desired, i16 %newval) { 127 ; CHECK: [[SHOULD_STORE:%.*]] = icmp eq i16 [[OLDVAL]], %desired 148 %pairold = cmpxchg i16* %ptr, i16 %desired, i16 %newval seq_cst monotonic 153 define i32 @test_cmpxchg_i32_acquire_acquire(i32* %ptr, i32 %desired, i32 %newval) { 160 ; CHECK: [[SHOULD_STORE:%.*]] = icmp eq i32 [[OLDVAL]], %desired 180 %pairold = cmpxchg i32* %ptr, i32 %desired, i32 %newval acquire acquire 185 define i64 @test_cmpxchg_i64_monotonic_monotonic(i64* %ptr, i64 %desired, i64 %newval) [all...] |
/external/skia/include/core/ |
SkImageEncoder.h | 50 * Encode bitmap 'bm' in the desired format, writing results to 57 * Encode bitmap 'bm' in the desired format, writing results to 74 * Encode bitmap 'bm' in the desired format, writing results to
|
/external/skia/tools/skpdiff/ |
SkCLImageDiffer.h | 50 * @param name The name of the entry point of the desired kernel in the file 60 * @param name The name of the entry point of the desired kernel in the stream 70 * @param name The name of the entry point of the desired kernel in the source string
|
/frameworks/base/core/java/android/app/ |
IWallpaperManager.aidl | 66 * Sets the dimension hint for the wallpaper. These hints indicate the desired 72 * Returns the desired minimum width for the wallpaper. 77 * Returns the desired minimum height for the wallpaper.
|
/frameworks/base/core/tests/coretests/src/android/util/ |
ListUtil.java | 44 * @param pos The desired position. 70 * Arrow (up or down as appropriate) to the desired position in the list. 71 * @param desiredPos The desired position
|
/frameworks/base/media/java/android/media/tv/ |
ITvInputHardware.aidl | 57 * @param samplingRate desired sampling rate. Use default when it's 0. 58 * @param channelMask desired channel mask. Use default when it's 60 * @param format desired format. Use default when it's AudioFormat.ENCODING_DEFAULT.
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ImageCanvas.java | 27 * Dimensions holds the desired width, height, and scale for a bitmap being 76 * Outputs the desired dimensions that the object with key 'id' would like to be drawn to. 87 * desired and will not offer the image.
|
/external/clang/test/CodeGen/ |
blockstret.c | 89 printf("desired global flags: %d\n", BLOCK_USE_STRET | BLOCK_IS_GLOBAL | BLOCK_HAS_OBJC_TYPE); 90 printf("desired stack flags: %d\n", BLOCK_USE_STRET | BLOCK_HAS_OBJC_TYPE); 106 desired global flags: 1879048192 107 desired stack flags: 1610612736
|
/external/icu/icu4c/source/io/ |
ufmt_cmn.h | 82 * @param radix The desired radix. 95 * @param radix The desired radix 124 * @param radix The desired radix 137 * @param radix The desired radix
|