Searched refs:value (Results 226 - 250 of 1198) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/net/
H A DUrlQuerySanitizer.java57 * <li>Subclass UrlQuerySanitizer.ValueSanitizer to define your own value
65 * A simple tuple that holds parameter-value pairs.
70 * Construct a parameter-value tuple.
72 * @param value an unencoded value
75 String value) {
77 mValue = value;
84 * The unencoded value
101 * A functor used to sanitize a single query value.
106 * Sanitize an unencoded value
74 ParameterValuePair(String parameter, String value) argument
110 sanitize(String value) argument
302 sanitize(String value) argument
350 trimWhitespace(String value) argument
771 parseEntry(String parameter, String value) argument
790 addSanitizedEntry(String parameter, String value) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES31.java514 // C function void glProgramUniform1iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
520 int[] value,
524 // C function void glProgramUniform1iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
530 java.nio.IntBuffer value
533 // C function void glProgramUniform2iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
539 int[] value,
543 // C function void glProgramUniform2iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
549 java.nio.IntBuffer value
552 // C function void glProgramUniform3iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
558 int[] value,
516 glProgramUniform1iv( int program, int location, int count, int[] value, int offset ) argument
535 glProgramUniform2iv( int program, int location, int count, int[] value, int offset ) argument
554 glProgramUniform3iv( int program, int location, int count, int[] value, int offset ) argument
573 glProgramUniform4iv( int program, int location, int count, int[] value, int offset ) argument
592 glProgramUniform1uiv( int program, int location, int count, int[] value, int offset ) argument
611 glProgramUniform2uiv( int program, int location, int count, int[] value, int offset ) argument
630 glProgramUniform3uiv( int program, int location, int count, int[] value, int offset ) argument
649 glProgramUniform4uiv( int program, int location, int count, int[] value, int offset ) argument
668 glProgramUniform1fv( int program, int location, int count, float[] value, int offset ) argument
687 glProgramUniform2fv( int program, int location, int count, float[] value, int offset ) argument
706 glProgramUniform3fv( int program, int location, int count, float[] value, int offset ) argument
725 glProgramUniform4fv( int program, int location, int count, float[] value, int offset ) argument
744 glProgramUniformMatrix2fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
765 glProgramUniformMatrix3fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
786 glProgramUniformMatrix4fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
807 glProgramUniformMatrix2x3fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
828 glProgramUniformMatrix3x2fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
849 glProgramUniformMatrix2x4fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
870 glProgramUniformMatrix4x2fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
891 glProgramUniformMatrix3x4fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
912 glProgramUniformMatrix4x3fv( int program, int location, int count, boolean transpose, float[] value, int offset ) argument
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31.spec32 void glProgramUniform1iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
33 void glProgramUniform2iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
34 void glProgramUniform3iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
35 void glProgramUniform4iv ( GLuint program, GLint location, GLsizei count, const GLint *value )
36 void glProgramUniform1uiv ( GLuint program, GLint location, GLsizei count, const GLuint *value )
37 void glProgramUniform2uiv ( GLuint program, GLint location, GLsizei count, const GLuint *value )
38 void glProgramUniform3uiv ( GLuint program, GLint location, GLsizei count, const GLuint *value )
39 void glProgramUniform4uiv ( GLuint program, GLint location, GLsizei count, const GLuint *value )
40 void glProgramUniform1fv ( GLuint program, GLint location, GLsizei count, const GLfloat *value )
41 void glProgramUniform2fv ( GLuint program, GLint location, GLsizei count, const GLfloat *value )
[all...]
/frameworks/av/include/ndk/
H A DNdkMediaFormat.h21 * Do not change the value of constants.
65 void AMediaFormat_setInt32(AMediaFormat*, const char* name, int32_t value);
66 void AMediaFormat_setInt64(AMediaFormat*, const char* name, int64_t value);
67 void AMediaFormat_setFloat(AMediaFormat*, const char* name, float value);
71 void AMediaFormat_setString(AMediaFormat*, const char* name, const char* value);
/frameworks/base/core/java/android/annotation/
H A DIntDef.java26 * a logical type and that its value should be one of the explicitly
47 * value = &#123;NAVIGATION_MODE_STANDARD, NAVIGATION_MODE_LIST, NAVIGATION_MODE_TABS&#125;)
56 long[] value() default {};
H A DStringDef.java26 * type and that its value should be one of the explicitly named constants.
50 String[] value() default {};
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteGlobal.java110 int value = SystemProperties.getInt("debug.sqlite.wal.autocheckpoint",
113 return Math.max(1, value);
120 int value = SystemProperties.getInt("debug.sqlite.wal.poolsize",
123 return Math.max(2, value);
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java35 * is an attribute-value pair.
65 * Set a key/value pair. Setting an existing key will replace its value.
67 * @param value matching value to key
69 public void set(String key, String value) { argument
74 if (value != null) {
75 valBytes = value.getBytes();
107 * Get a value for a key
110 * @return The value associate
168 insert(byte[] keyBytes, byte[] value, int index) argument
[all...]
/frameworks/base/core/java/com/android/internal/annotations/
H A DGuardedBy.java31 String value(); method in interface:GuardedBy
/frameworks/base/core/java/com/android/internal/os/
H A DBatterySipper.java26 public double value; field in class:BatterySipper
67 if (values != null) value = values[0];
92 // Return the flipped value because we want the items in descending order
93 return Double.compare(other.value, value);
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetEventsTest.java76 public void setTranslationX(float value) { argument
77 button.setTranslationX(value);
81 public void setTranslationY(float value) { argument
82 button.setTranslationY(value);
/frameworks/base/libs/hwui/utils/
H A DPair.h45 { enum { value = aggregate_traits<F, S>::has_trivial_ctor }; }; enumerator in enum:android::trait_trivial_ctor::__anon968
48 { enum { value = aggregate_traits<F, S>::has_trivial_dtor }; }; enumerator in enum:android::trait_trivial_dtor::__anon969
51 { enum { value = aggregate_traits<F, S>::has_trivial_copy }; }; enumerator in enum:android::trait_trivial_copy::__anon970
54 { enum { value = aggregate_traits<F, S>::has_trivial_move }; }; enumerator in enum:android::trait_trivial_move::__anon971
/frameworks/base/location/java/android/location/
H A DFusedBatchOptions.java31 // the default value is set to request fixes at no cost
37 public void setMaxPowerAllocationInMW(double value) { argument
38 mMaxPowerAllocationInMW = value;
45 public void setPeriodInNS(long value) { argument
46 mPeriodInNS = value;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFieldPort.java101 // Store the object value
102 Object value = frame.getObjectValue();
103 if ((value == null && mValue != null) || !value.equals(mValue)) {
104 mValue = value;
/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dbrightness.c29 int value; member in union:__anon994
41 void brightness_setvalue(const char* key, const char* value, void* user_data) { argument
43 ((BrightnessParameters*)user_data)->brightness = atof(value);
83 pixel.value = *(input_ptr++);
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DFakeAnimator.java44 public void setInterpolator(TimeInterpolator value) { argument
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DPooledCache.java22 V put(K key, V value); argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTone.java150 Tone(int value) { argument
151 mValue = value;
156 * @param value Integer value to be converted to a Tone object.
157 * @return Tone object whose value is {@code value}. If no Tone object has
158 * that value, null is returned.
160 public static Tone fromInt(int value) { argument
162 if (e.mValue == value) {
/frameworks/base/core/java/android/os/
H A DTokenWatcher.java150 int value;
152 value = mNotificationQueue;
155 if (value == 1) {
158 else if (value == 0) {
166 int value = on ? 1 : 0;
169 mNotificationQueue = value;
172 else if (mNotificationQueue != value) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DAirplaneModeTile.java45 protected void handleValueChanged(int value) {
46 handleRefreshState(value);
58 setEnabled(!mState.value);
71 final int value = arg instanceof Integer ? (Integer)arg : mSetting.getValue();
72 final boolean airplaneMode = value != 0;
73 state.value = airplaneMode;
89 if (mState.value) {
/frameworks/av/include/media/stagefright/
H A DMetaData.h203 bool setCString(uint32_t key, const char *value);
204 bool setInt32(uint32_t key, int32_t value);
205 bool setInt64(uint32_t key, int64_t value);
206 bool setFloat(uint32_t key, float value);
207 bool setPointer(uint32_t key, void *value);
214 bool findCString(uint32_t key, const char **value);
215 bool findInt32(uint32_t key, int32_t *value);
216 bool findInt64(uint32_t key, int64_t *value);
217 bool findFloat(uint32_t key, float *value);
218 bool findPointer(uint32_t key, void **value);
[all...]
/frameworks/av/media/mtp/
H A DMtpPacket.cpp103 void MtpPacket::putUInt16(int offset, uint16_t value) { argument
104 mBuffer[offset++] = (uint8_t)(value & 0xFF);
105 mBuffer[offset++] = (uint8_t)((value >> 8) & 0xFF);
108 void MtpPacket::putUInt32(int offset, uint32_t value) { argument
109 mBuffer[offset++] = (uint8_t)(value & 0xFF);
110 mBuffer[offset++] = (uint8_t)((value >> 8) & 0xFF);
111 mBuffer[offset++] = (uint8_t)((value >> 16) & 0xFF);
112 mBuffer[offset++] = (uint8_t)((value >> 24) & 0xFF);
143 void MtpPacket::setParameter(int index, uint32_t value) { argument
151 putUInt32(offset, value);
[all...]
/frameworks/base/core/java/android/util/
H A DMathUtils.java127 public static float acos(float value) { argument
128 return (float) Math.acos(value);
131 public static float asin(float value) { argument
132 return (float) Math.asin(value);
135 public static float atan(float value) { argument
136 return (float) Math.atan(value);
151 public static float norm(float start, float stop, float value) { argument
152 return (value - start) / (stop - start);
155 public static float map(float minStart, float minStop, float maxStart, float maxStop, float value) { argument
156 return maxStart + (maxStart - maxStop) * ((value
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsConfig.java96 * SIP Session Timer value (seconds).
108 * SIP_INVITE cancellation time out value (in milliseconds). Integer format.
126 * SIP T1 timer value in milliseconds. See RFC 3261 for define.
132 * SIP T2 timer value in milliseconds. See RFC 3261 for define.
138 * SIP TF timer value in milliseconds. See RFC 3261 for define.
239 * Defines IMS feature value.
253 * Gets the provisioned value for IMS service/capabilities parameters used by IMS stack.
258 * @return the value in Integer format.
276 * Gets the provisioned value for IMS service/capabilities parameters used by IMS stack.
281 * @return value i
310 setProvisionedValue(int item, int value) argument
343 setProvisionedStringValue(int item, String value) argument
395 setFeatureValue(int feature, int network, int value, ImsConfigListener listener) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DDrmPlugin.cpp75 const String8& name, String8& value) const {
77 value = "Google";
79 value = "1.0";
81 value = "ClearKey CDM";
83 value = "";

Completed in 760 milliseconds

1234567891011>>