Searched refs:value (Results 251 - 275 of 1696) sorted by relevance

<<11121314151617181920>>

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DStringString.java8 public String value; field in class:StringString
34 out.writeString(value);
39 value = in.readString();
/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLog.h62 void writeInt32(int32_t value);
64 void writeInt64(int64_t value);
66 void writeString8(const String8& value);
/frameworks/support/annotations/src/android/support/annotation/
H A DRequiresPermission.java57 * a permission which depends on the value of the parameter. For example, consider
86 String value() default "";
91 * If specified, {@link #anyOf()} and {@link #value()} must both be null.
98 * If specified, {@link #allOf()} and {@link #value()} must both be null.
112 * a permission which depends on the value of the parameter (and typically
118 RequiresPermission value() default @RequiresPermission;
125 * a permission which depends on the value of the parameter (and typically
131 RequiresPermission value() default @RequiresPermission;
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableHighSpeedVideoConfiguration.java47 public void marshal(HighSpeedVideoConfiguration value, ByteBuffer buffer) { argument
48 buffer.putInt(value.getWidth());
49 buffer.putInt(value.getHeight());
50 buffer.putInt(value.getFpsMin());
51 buffer.putInt(value.getFpsMax());
52 buffer.putInt(value.getBatchSizeMax());
H A DMarshalQueryableMeteringRectangle.java42 public void marshal(MeteringRectangle value, ByteBuffer buffer) { argument
43 int xMin = value.getX();
44 int yMin = value.getY();
45 int xMax = xMin + value.getWidth();
46 int yMax = yMin + value.getHeight();
47 int weight = value.getMeteringWeight();
H A DMarshalQueryableReprocessFormatsMap.java44 public void marshal(ReprocessFormatsMap value, ByteBuffer buffer) { argument
54 int[] inputs = StreamConfigurationMap.imageFormatToInternal(value.getInputs());
60 StreamConfigurationMap.imageFormatToInternal(value.getOutputs(input));
94 public int calculateMarshalSize(ReprocessFormatsMap value) { argument
106 int[] inputs = value.getInputs();
112 int[] outputs = value.getOutputs(input);
/frameworks/base/core/java/android/util/
H A DLongArray.java53 * Appends the specified value to the end of this array.
55 public void add(long value) { argument
56 add(mSize, value);
60 * Inserts a value at the specified position in this array.
64 public void add(int index, long value) { argument
75 mValues[index] = value;
126 * Returns the value at the specified position in this array.
136 * Returns the index of the first occurrence of the specified value in this
137 * array, or -1 if this array does not contain the value.
139 public int indexOf(long value) { argument
[all...]
/frameworks/base/core/java/com/android/internal/logging/
H A DMetricsLogger.java66 public static void action(Context context, int category, int value) { argument
67 action(context, category, Integer.toString(value));
70 public static void action(Context context, int category, boolean value) { argument
71 action(context, category, Boolean.toString(value));
81 /** Add an integer value to the monotonically increasing counter with the given name. */
82 public static void count(Context context, String name, int value) { argument
83 EventLogTags.writeSysuiCount(name, value);
/frameworks/base/core/java/org/apache/http/params/
H A DHttpConnectionParams.java62 * timeout for waiting for data. A timeout value of zero is interpreted as an infinite
63 * timeout. This value is used when no socket timeout is set in the
77 * timeout for waiting for data. A timeout value of zero is interpreted as an infinite
78 * timeout. This value is used when no socket timeout is set in the
112 * @param value <tt>true</tt> if the Nagle's algorithm is to NOT be used
115 public static void setTcpNoDelay(final HttpParams params, boolean value) { argument
119 params.setBooleanParameter(CoreConnectionPNames.TCP_NODELAY, value);
158 * @param value the linger-on-close timeout
160 public static void setLinger(final HttpParams params, int value) { argument
164 params.setIntParameter(CoreConnectionPNames.SO_LINGER, value);
221 setStaleCheckingEnabled(final HttpParams params, boolean value) argument
[all...]
/frameworks/base/location/java/android/location/
H A DFusedBatchOptions.java31 // the default value is set to request fixes at no cost
39 public void setMaxPowerAllocationInMW(double value) { argument
40 mMaxPowerAllocationInMW = value;
47 public void setPeriodInNS(long value) { argument
48 mPeriodInNS = value;
55 public void setSmallestDisplacementMeters(float value) { argument
56 mSmallestDisplacementMeters = value;
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerServiceCompilerMapping.java49 // exception in case the reason or value are invalid.
116 String value = SystemProperties.get("dalvik.vm.dex2oat-filter");
117 if (value == null || value.isEmpty()) {
121 if (!DexFile.isValidCompilerFilter(value) ||
122 DexFile.isProfileGuidedCompilerFilter(value)) {
126 return value;
/frameworks/base/tools/aapt/
H A DAaptUtil.h32 const KEY& key, const VALUE& value);
36 const KEY& key, const VALUE& value);
44 const KEY& key, const VALUE& value) {
49 keyedVector.editValueAt(idx).add(value);
54 const KEY& key, const VALUE& value) {
59 keyedVector.editValueAt(idx).add(value);
43 appendValue(android::KeyedVector<KEY, android::Vector<VALUE> >& keyedVector, const KEY& key, const VALUE& value) argument
53 appendValue(android::KeyedVector<KEY, android::SortedVector<VALUE> >& keyedVector, const KEY& key, const VALUE& value) argument
/frameworks/base/tools/aapt2/link/
H A DReferenceLinker.cpp67 visit(&style->parent.value());
88 // Try to convert the value to a more specific, typed value based on the
90 entry.value = parseValueWithAttribute(std::move(entry.value),
93 // Link/resolve the final value (mostly if it's a reference).
94 entry.value->accept(this);
99 if (!symbol->attribute->matches(entry.value.get(), nullptr)) {
105 symbol->attribute->matches(entry.value.get(), &msg);
134 * Transform a RawString value int
137 parseValueWithAttribute(std::unique_ptr<Item> value, const Attribute* attr) argument
[all...]
/frameworks/base/tools/split-select/
H A DTestRules.cpp27 const Rule EqRule(Rule::Key key, long value) { argument
31 rule.longArgs.add(value);
35 const Rule GtRule(Rule::Key key, long value) { argument
39 rule.longArgs.add(value);
43 const Rule LtRule(Rule::Key key, long value) { argument
47 rule.longArgs.add(value);
/frameworks/native/opengl/tools/glgen/specs/egl/
H A Dchecks.spec4 eglGetConfigAttrib check value 1
10 eglQuerySurface check value 1
13 eglQueryContext check value 1
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DAbstractCache.java37 public boolean put(K key, V value) { argument
53 cacheEntry.value = value;
76 return cacheEntry.value;
93 return v != null ? v.value : null;
110 V value; field in class:AbstractCache.CacheEntry
/frameworks/support/v4/java/android/support/v4/util/
H A DArrayMap.java24 * ArrayMap is a generic key->value mapping data structure that is
29 * codes for each item, and an Object array of the key/value pairs. This allows it to
90 protected int colIndexOfValue(Object value) {
91 return indexOfValue(value);
100 protected void colPut(K key, V value) {
101 put(key, value);
105 protected V colSetValue(int index, V value) {
106 return setValueAt(index, value);
134 * Perform a {@link #put(Object, Object)} of all key/value pairs in <var>map</var>
/frameworks/support/v4/java/android/support/v4/widget/
H A DAutoScrollHelper.java54 * {@link #setActivationDelay}. Default value is
56 * <li>Location of activation areas, see {@link #setEdgeType}. Default value is
59 * {@link #setRelativeEdges}. Default value is 20% for both vertical and
62 * {@link #setMaximumEdges}. Default value is {@link #NO_MAX}.
70 * value is 500 milliseconds.
72 * Default value is 500 milliseconds.
74 * Default value is 100% per second for both vertical and horizontal.
77 * larger of either this value or the relative target value. Default value i
652 constrain(int value, int min, int max) argument
662 constrain(float value, float min, float max) argument
806 interpolateValue(float value) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_cavlc.c50 * of certain decoded symbol value and the length of the corresponding variable
52 * 4 bits symbol value (bits [4,7]) along with four bits to represent length
74 * If there is a 0x0000 value, it means that there is not corresponding VLC
324 #define BUFFER_INIT(value, bits) \
327 value = h264bsdShowBits32(pStrmData); \
332 #define BUFFER_SHOW(value, bits, outVal, numBits) \
338 value = h264bsdShowBits32(pStrmData); \
341 (outVal) = value >> (32 - (numBits)); \
345 #define BUFFER_FLUSH(value, bits, numBits) \
347 value <<
400 u32 value; local
543 u32 value = 0x0; local
665 u32 value = 0x0; local
[all...]
H A Dh264bsd_pic_param_set.c94 u32 tmp, i, value; local
139 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
142 pPicParamSet->numSliceGroups = value + 1;
170 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
173 pPicParamSet->runLength[i] = value+1;
188 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
191 pPicParamSet->topLeft[i] = value;
192 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
195 pPicParamSet->bottomRight[i] = value;
208 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
[all...]
/frameworks/base/obex/javax/obex/
H A DObexHelper.java73 * NOTE: This value must be larger than or equal to the L2CAP SDU
137 public static final byte OBEX_SRMP_WAIT = 0x01; // Only SRMP value used by BT
187 byte[] value = null;
214 value = new byte[length];
215 System.arraycopy(headerArray, index, value, 0, length);
216 if (length == 0 || (length > 0 && (value[length - 1] != 0))) {
224 headerImpl.setHeader(headerID, new String(value, 0,
225 value.length, "ISO8859_1"));
227 headerImpl.setHeader(headerID, new String(value, 0,
228 value
905 findTag(byte tag, byte[] value) argument
[all...]
/frameworks/av/include/media/
H A DCharacterEncodingDetector.h36 void addTag(const char *name, const char *value);
40 status_t getTag(int index, const char **name, const char**value);
50 // cached name and value strings, for native encoding support.
/frameworks/av/media/img_utils/src/
H A DTiffEntry.cpp37 const sp<TiffIfd>* TiffEntry::forceValidType<sp<TiffIfd> >(TagType type, const sp<TiffIfd>* value) { argument
39 return value;
47 const uint8_t* TiffEntry::forceValidType<uint8_t>(TagType type, const uint8_t* value) { argument
49 return value;
57 const int8_t* TiffEntry::forceValidType<int8_t>(TagType type, const int8_t* value) { argument
59 return value;
67 const uint16_t* TiffEntry::forceValidType<uint16_t>(TagType type, const uint16_t* value) { argument
69 return value;
77 const int16_t* TiffEntry::forceValidType<int16_t>(TagType type, const int16_t* value) { argument
79 return value;
87 forceValidType(TagType type, const uint32_t* value) argument
97 forceValidType(TagType type, const int32_t* value) argument
107 forceValidType(TagType type, const double* value) argument
117 forceValidType(TagType type, const float* value) argument
[all...]
/frameworks/av/media/libmedia/
H A DMediaResourcePolicy.cpp29 MediaResourcePolicy::MediaResourcePolicy(String8 type, String8 value) argument
31 mValue(value) {}
/frameworks/av/media/libstagefright/foundation/
H A Dbase64.cpp57 unsigned value; local
59 value = c - 'A';
61 value = 26 + c - 'a';
63 value = 52 + c - '0';
65 value = 62;
67 value = 63;
75 value = 0;
78 accum = (accum << 6) | value;

Completed in 5362 milliseconds

<<11121314151617181920>>