HomeSort by relevance Sort by last modified time
    Searched full:desired (Results 151 - 175 of 3550) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
FixedAspectSurfaceView.java 31 * A SurfaceView that maintains its aspect ratio to be a desired target value.
42 * Desired width/height ratio
61 * Set the desired aspect ratio for this view.
63 * @param aspect the desired width/height ratio in the current UI orientation. Must be a
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 57 * iteration count and the desired length of the derived key.
66 * the desired key length of the derived key,
187 * Returns the desired key length of the derived key.
189 * @return the desired key length of the derived key.
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
FixedAspectSurfaceView.java 28 * A SurfaceView that maintains its aspect ratio to be a desired target value.
41 * Desired width/height ratio
58 * Set the desired aspect ratio for this view.
60 * @param aspect the desired width/height ratio in the current UI orientation. Must be a
  /external/compiler-rt/lib/builtins/
atomic.c 189 /// to the value at *expected, then this copies value at *desired to *ptr. If
194 void *desired, int success, int failure) {
197 *(type*)desired, success, failure)
203 memcpy(ptr, desired, size);
283 int __atomic_compare_exchange_##n(type *ptr, type *expected, type desired,\
286 return __c11_atomic_compare_exchange_strong((_Atomic(type)*)ptr, expected, desired,\
291 *ptr = desired;\
  /external/libcxx/www/
atomic_design_a.html 74 void __atomic_store(type* atomic_obj, type desired, int mem_ord);
78 type __atomic_exchange(type* atomic_obj, type desired, int mem_ord);
86 type* expected, type desired,
95 type* expected, type desired,
138 If desired the intrinsics taking a single <tt>mem_ord</tt> parameter can default
143 If desired the intrinsics taking two ordering parameters can default
166 purpose is to document the desired semantics of each operation, assuming
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleMatcher.java 130 * @param desired Desired locale
137 public double match(ULocale desired, ULocale desiredMax, ULocale supported, ULocale supportedMax) {
138 return matcherData.match(desired, desiredMax, supported, supportedMax);
436 void addDataToScores(String desired, String supported, R3<LocalePatternMatcher,LocalePatternMatcher,Double> data) {
437 // Map<String, Set<R3<LocalePatternMatcher,LocalePatternMatcher,Double>>> lang_result = scores.get(desired);
439 // scores.put(desired, lang_result = new HashMap());
636 private LanguageMatcherData addDistance(String desired, String supported, int percent) {
637 return addDistance(desired, supported, percent, false, null);
644 public LanguageMatcherData addDistance(String desired, String supported, int percent, String comment)
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ResizingTextView.java 150 * @return desired adjustment to top padding for resized text
157 * Set the desired adjustment to top padding for resized text.
169 * @return desired adjustment to bottom padding for resized text
176 * Set the desired adjustment to bottom padding for resized text.
233 // Check for other desired adjustments in addition to the text size
  /external/libvorbis/include/vorbis/
vorbisenc.h 49 * \param max_bitrate Desired maximum bitrate (limit). -1 indicates unset.
50 * \param nominal_bitrate Desired average, or central, bitrate. -1 indicates unset.
51 * \param min_bitrate Desired minimum bitrate. -1 indicates unset.
86 * \param max_bitrate Desired maximum bitrate (limit). -1 indicates unset.
87 * \param nominal_bitrate Desired average, or central, bitrate. -1 indicates unset.
88 * \param min_bitrate Desired minimum bitrate. -1 indicates unset.
120 * \param quality Desired quality level, currently from -0.1 to 1.0 (lo to hi).
148 * \param base_quality Desired quality level, currently from -0.1 to 1.0 (lo to hi).
206 * \param number Specifies the desired action; See \ref encctlcodes "the list
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 46 /** The desired media criteria. */
49 /** The desired title criteria. */
52 /** The desired character set criteria. */
95 * @param media The desired media criteria.
96 * @param title The desired title criteria.
97 * @param charset The desired character set criteria.
  /external/bison/lib/
bitset.h 100 /* Return bytes required for bitset of desired type and size. */
103 /* Initialise a bitset with desired type and size. */
106 /* Select an implementation type based on the desired bitset size
110 /* Create a bitset of desired type and size. The bitset is zeroed. */
116 /* Create a bitset of desired type and size using an obstack. The
124 /* Create a bitset of desired size and attributes. The bitset is zeroed. */
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p4.cpp 186 int b; // desired-note {{not initialized}}
187 Int<T> c; // desired-note {{not initialized}}
190 int e; // desired-note {{not initialized}}
191 Int<T> f; // desired-note {{not initialized}}
198 union { // desired-note {{not initialized}}
203 constexpr TemplateInit() {} // desired-error {{must initialize all members}}
  /external/clang/test/OpenMP/
atomic_update_codegen.cpp 98 // CHECK: [[DESIRED:%.+]] = trunc i32 [[ADD]] to i16
99 // CHECK: [[RES:%.+]] = cmpxchg i16* [[X_ADDR]], i16 [[EXPECTED]], i16 [[DESIRED]] monotonic monotonic
111 // CHECK: [[DESIRED:%.+]] = mul nsw i32 [[EXPECTED]], [[EXPR]]
112 // CHECK: [[RES:%.+]] = cmpxchg i32* [[X_ADDR]], i32 [[EXPECTED]], i32 [[DESIRED]] monotonic monotonic
128 // CHECK: [[DESIRED:%.+]] = shl i32 [[EXPECTED]], [[EXPR]]
129 // CHECK: [[RES:%.+]] = cmpxchg i32* [[X_ADDR]], i32 [[EXPECTED]], i32 [[DESIRED]] monotonic monotonic
141 // CHECK: [[DESIRED:%.+]] = lshr i32 [[EXPECTED]], [[EXPR]]
142 // CHECK: [[RES:%.+]] = cmpxchg i32* [[X_ADDR]], i32 [[EXPECTED]], i32 [[DESIRED]] monotonic monotonic
154 // CHECK: [[DESIRED:%.+]] = sdiv i64 [[EXPECTED]], [[EXPR]]
155 // CHECK: [[RES:%.+]] = cmpxchg i64* [[X_ADDR]], i64 [[EXPECTED]], i64 [[DESIRED]] monotonic monotoni
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/scroll/
ScrollStepStrategy.java 50 * @param itemFinder Finder for the desired item; relative to {@code containerFinder}
62 * @param itemFinder Finder for the desired item; relative to {@code containerFinder}
  /external/icu/icu4c/source/i18n/unicode/
upluralrules.h 77 * @param locale The locale for which the rules are desired.
88 * @param locale The locale for which the rules are desired.
  /external/kernel-headers/original/uapi/linux/
ptp_clock.h 65 struct ptp_clock_time period; /* Desired period, zero means disable. */
74 unsigned int n_samples; /* Desired number of measurements. */
  /external/llvm/test/CodeGen/ARM/
atomic-cmpxchg.ll 7 define zeroext i1 @test_cmpxchg_res_i8(i8* %addr, i8 %desired, i8 zeroext %new) {
9 %0 = cmpxchg i8* %addr, i8 %desired, i8 %new monotonic monotonic
  /external/llvm/test/CodeGen/X86/
cmpxchg-clobber-flags.ll 69 define i32 @test_feed_cmov(i32* %addr, i32 %desired, i32 %new) {
80 %res = cmpxchg i32* %addr, i32 %desired, i32 %new seq_cst seq_cst
  /external/markdown/docs/extensions/
Meta-Data.txt 37 value for the previous keyword. A keyword may have as many lines as desired.
67 line breaks if desired. Or the items could be joined where appropriate. No
  /external/pdfium/third_party/bigint/
BigIntegerUtils.hh 39 * Pass an array `data', its length, and the desired sign.
48 * the result contain the desired binary data.
  /external/selinux/libselinux/man/man3/
getcon.3 68 trusted to maintain any desired separation between the old and new
79 descriptors opened by the old context if that is desired. Otherwise,
  /external/strace/linux/
ptp_clock.h 64 struct ptp_clock_time period; /* Desired period, zero means disable. */
73 unsigned int n_samples; /* Desired number of measurements. */
  /external/zlib/src/contrib/blast/
blast.h 56 * use by the application to pass an input descriptor to infun(), if desired.
62 * desired.
  /frameworks/base/libs/hwui/
LayerCache.h 56 * @param width The desired width of the layer
57 * @param height The desired height of the layer
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationRequestUnbundled.java 85 * Get the desired interval of this request, in milliseconds.
87 * @return desired interval in milliseconds, inexact
  /hardware/intel/common/libva/va/wayland/
va_wayland.h 78 * The @flags describe the desired picture structure. This is useful
108 * The @flags describe the desired picture structure. See

Completed in 1001 milliseconds

1 2 3 4 5 67 8 91011>>