HomeSort by relevance Sort by last modified time
    Searched full:value (Results 551 - 575 of 15709) sorted by null

<<21222324252627282930>>

  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeTypedArray.java 61 /** A bridge-specific method that sets a value in the type array */
62 public void bridgeSetValue(int index, String name, IResourceValue value) {
63 mData[index] = value;
71 * {@link #getIndexCount()} to return the proper value.
113 * Retrieve the styled string value for the attribute at <var>index</var>.
131 * Retrieve the string value for the attribute at <var>index</var>.
148 * Retrieve the boolean value for the attribute at <var>index</var>.
151 * @param defValue Value to return if the attribute is not defined.
153 * @return Attribute boolean value, or defValue if not defined.
170 * Retrieve the integer value for the attribute at <var>index</var>
294 String value = mData[index].getValue(); local
526 String value = mData[index].getValue(); local
589 String value = resValue.getValue(); local
664 IResourceValue value = mData[index]; local
701 String value = mData[index].getValue(); local
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElement.java 40 * One element of an HTTP header's value.
48 * element = name [ "=" [ value ] ] *( ";" [ param ] )
49 * param = name [ "=" [ value ] ]
52 * value = ( token | quoted-string )
62 * header, element or param and is ignored. A missing value in any
68 * both a name/value pair (value may be <tt>null</tt>) and optionally
86 private final String value; field in class:BasicHeaderElement
90 * Constructor with name, value and parameters.
93 * @param value header element value. May be <tt>null</tt
    [all...]
  /external/guava/src/com/google/common/primitives/
SignedBytes.java 40 * Returns the {@code byte} value that is equal to {@code value}, if possible.
42 * @param value any value in the range of the {@code byte} type
43 * @return the {@code byte} value that equals {@code value}
44 * @throws IllegalArgumentException if {@code value} is greater than {@link
47 public static byte checkedCast(long value) {
48 byte result = (byte) value;
49 checkArgument(result == value, "Out of range: %s", value)
    [all...]
  /external/icu4c/tools/toolutil/
ucbuf.h 30 * End of file value
34 * Error value if a sequence cannot be unescaped
54 * @param err is a pointer to a valid <code>UErrorCode</code> value. If this value
56 * On exit the value will indicate the success of the operation.
66 * @param err is a pointer to a valid <code>UErrorCode</code> value. If this value
68 * On exit the value will indicate the success of the operation.
77 * @param err is a pointer to a valid <code>UErrorCode</code> value. If this value
    [all...]
  /external/proguard/src/proguard/evaluation/
Variables.java 23 import proguard.evaluation.value.*;
26 * This class represents a local variable frame that contains <code>Value</code>
37 protected Value[] values;
46 this.values = new Value[size];
73 values = new Value[size];
125 Value thisValue = this.values[index];
126 Value otherValue = other.values[index];
137 Value newValue = thisValue.generalize(otherValue);
170 * Gets the Value of the variable with the given index, without disturbing it.
172 public Value getValue(int index
323 Value value = values[index]; local
340 Value value = values[index]; local
    [all...]
  /frameworks/base/core/java/android/preference/
ListPreference.java 32 * This preference will store a string into the SharedPreferences. This string will be the value
90 * The array to find the value to save for a preference when an entry from
118 * Sets the value of the key. This should be one of the entries in
121 * @param value The value to set for the key.
123 public void setValue(String value) {
124 mValue = value;
126 persistString(value);
130 * Sets the value to the given index from the entry values.
132 * @param index The index of the value to set
218 String value = mEntryValues[mClickedDialogEntryIndex].toString(); local
262 String value; field in class:ListPreference.SavedState
    [all...]
  /bionic/libc/include/sys/
limits.h 51 #define SCHAR_MAX 0x7f /* max value for a signed char */
52 #define SCHAR_MIN (-0x7f-1) /* min value for a signed char */
54 #define UCHAR_MAX 0xffU /* max value for an unsigned char */
56 # define CHAR_MIN 0 /* min value for a char */
57 # define CHAR_MAX 0xff /* max value for a char */
63 #define USHRT_MAX 0xffffU /* max value for an unsigned short */
64 #define SHRT_MAX 0x7fff /* max value for a short */
65 #define SHRT_MIN (-0x7fff-1) /* min value for a short */
67 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */
68 #define INT_MAX 0x7fffffff /* max value for an int *
    [all...]
  /external/v8/test/mjsunit/compiler/
short-circuit.js 34 // Literals in value/test context.
38 // Literals in test/value context.
42 // A value on top of the stack in value/test context.
46 // A value on top of the stack in a test/value context.
50 // An object literal in value context.
53 // An object literal in value/test context.
56 // An object literal in test/value context.
59 // An array literal in value/test context
    [all...]
  /external/v8/test/mjsunit/
debug-evaluate-locals.js 36 function checkFrame0(name, value) {
39 assertEquals(1, value);
42 assertEquals(2, value);
47 function checkFrame1(name, value) {
50 assertEquals(3, value);
55 function checkFrame2(name, value) {
59 assertEquals(5, value);
62 assertEquals(0, value);
73 checkFrame0(frame0.localName(0), frame0.localValue(0).value());
74 checkFrame0(frame0.localName(1), frame0.localValue(1).value());
    [all...]
  /external/webkit/WebCore/dom/
SelectElement.h 112 void setMultiple(bool value) { m_multiple = value; }
115 void setSize(int value) { m_size = value; }
120 void setLastOnChangeIndex(int value) { m_lastOnChangeIndex = value; }
123 void setUserDrivenChange(bool value) { m_userDrivenChange = value; }
128 void setActiveSelectionState(bool value) { m_activeSelectionState = value; }
    [all...]
  /external/webkit/WebCore/svg/
SVGRectElement.cpp 54 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
56 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
58 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
59 if (rxBaseValue().value(this) < 0.0)
60 document()->accessSVGExtensions()->reportError("A negative value for rect <rx> is not allowed");
62 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
63 if (ryBaseValue().value(this) < 0.0)
64 document()->accessSVGExtensions()->reportError("A negative value for rect <ry> is not allowed");
66 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value()));
67 if (widthBaseValue().value(this) < 0.0
    [all...]
SVGFECompositeElement.cpp 44 const String& value = attr->value(); local
46 if (value == "over")
48 else if (value == "in")
50 else if (value == "out")
52 else if (value == "atop")
54 else if (value == "xor")
56 else if (value == "arithmetic")
59 setIn1BaseValue(value);
61 setIn2BaseValue(value);
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/sys/
limits.h 51 #define SCHAR_MAX 0x7f /* max value for a signed char */
52 #define SCHAR_MIN (-0x7f-1) /* min value for a signed char */
54 #define UCHAR_MAX 0xffU /* max value for an unsigned char */
56 # define CHAR_MIN 0 /* min value for a char */
57 # define CHAR_MAX 0xff /* max value for a char */
63 #define USHRT_MAX 0xffffU /* max value for an unsigned short */
64 #define SHRT_MAX 0x7fff /* max value for a short */
65 #define SHRT_MIN (-0x7fff-1) /* min value for a short */
67 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */
68 #define INT_MAX 0x7fffffff /* max value for an int *
    [all...]
  /ndk/build/platforms/android-4/arch-arm/usr/include/sys/
limits.h 51 #define SCHAR_MAX 0x7f /* max value for a signed char */
52 #define SCHAR_MIN (-0x7f-1) /* min value for a signed char */
54 #define UCHAR_MAX 0xffU /* max value for an unsigned char */
56 # define CHAR_MIN 0 /* min value for a char */
57 # define CHAR_MAX 0xff /* max value for a char */
63 #define USHRT_MAX 0xffffU /* max value for an unsigned short */
64 #define SHRT_MAX 0x7fff /* max value for a short */
65 #define SHRT_MIN (-0x7fff-1) /* min value for a short */
67 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */
68 #define INT_MAX 0x7fffffff /* max value for an int *
    [all...]
  /ndk/build/platforms/android-5/arch-arm/usr/include/sys/
limits.h 51 #define SCHAR_MAX 0x7f /* max value for a signed char */
52 #define SCHAR_MIN (-0x7f-1) /* min value for a signed char */
54 #define UCHAR_MAX 0xffU /* max value for an unsigned char */
56 # define CHAR_MIN 0 /* min value for a char */
57 # define CHAR_MAX 0xff /* max value for a char */
63 #define USHRT_MAX 0xffffU /* max value for an unsigned short */
64 #define SHRT_MAX 0x7fff /* max value for a short */
65 #define SHRT_MIN (-0x7fff-1) /* min value for a short */
67 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */
68 #define INT_MAX 0x7fffffff /* max value for an int *
    [all...]
  /ndk/build/platforms/android-5/arch-x86/usr/include/sys/
limits.h 51 #define SCHAR_MAX 0x7f /* max value for a signed char */
52 #define SCHAR_MIN (-0x7f-1) /* min value for a signed char */
54 #define UCHAR_MAX 0xffU /* max value for an unsigned char */
56 # define CHAR_MIN 0 /* min value for a char */
57 # define CHAR_MAX 0xff /* max value for a char */
63 #define USHRT_MAX 0xffffU /* max value for an unsigned short */
64 #define SHRT_MAX 0x7fff /* max value for a short */
65 #define SHRT_MIN (-0x7fff-1) /* min value for a short */
67 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */
68 #define INT_MAX 0x7fffffff /* max value for an int *
    [all...]
  /ndk/build/platforms/android-8/arch-arm/usr/include/sys/
limits.h 51 #define SCHAR_MAX 0x7f /* max value for a signed char */
52 #define SCHAR_MIN (-0x7f-1) /* min value for a signed char */
54 #define UCHAR_MAX 0xffU /* max value for an unsigned char */
56 # define CHAR_MIN 0 /* min value for a char */
57 # define CHAR_MAX 0xff /* max value for a char */
63 #define USHRT_MAX 0xffffU /* max value for an unsigned short */
64 #define SHRT_MAX 0x7fff /* max value for a short */
65 #define SHRT_MIN (-0x7fff-1) /* min value for a short */
67 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */
68 #define INT_MAX 0x7fffffff /* max value for an int *
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/sys/
limits.h 51 #define SCHAR_MAX 0x7f /* max value for a signed char */
52 #define SCHAR_MIN (-0x7f-1) /* min value for a signed char */
54 #define UCHAR_MAX 0xffU /* max value for an unsigned char */
56 # define CHAR_MIN 0 /* min value for a char */
57 # define CHAR_MAX 0xff /* max value for a char */
63 #define USHRT_MAX 0xffffU /* max value for an unsigned short */
64 #define SHRT_MAX 0x7fff /* max value for a short */
65 #define SHRT_MIN (-0x7fff-1) /* min value for a short */
67 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */
68 #define INT_MAX 0x7fffffff /* max value for an int *
    [all...]
  /cts/tools/host/src/com/android/cts/
XMLResourceHandler.java 48 * @return string value of the attribute name from the DOM node.
59 * Get integer attribute value.
63 * @return The attribute value in integer.
74 * @param attrValue The attribute value.
95 * Set the attribute value.
100 * @param value The attribute value in integer.
102 protected void setAttribute(Document doc, Node elem, String name, int value) {
103 setAttribute(doc, elem, name, Integer.toString(value));
107 * Set the attribute value
    [all...]
  /external/openssl/crypto/x509v3/
v3_conf.c 69 static int v3_check_critical(char **value);
70 static int v3_check_generic(char **value);
71 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
72 static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type, X509V3_CTX *ctx);
73 static char *conf_lhash_get_string(void *db, char *section, char *value);
77 static unsigned char *generic_asn1(char *value, X509V3_CTX *ctx, long *ext_len);
80 /* char *value: Value */
82 char *value)
87 crit = v3_check_critical(&value);
    [all...]
  /external/proguard/src/proguard/optimize/info/
FieldOptimizationInfo.java 25 import proguard.evaluation.value.*;
41 private Value value; field in class:FieldOptimizationInfo
48 value = initialValue(field.getDescriptor(clazz));
102 public void generalizeValue(Value value)
104 this.value = this.value != null ?
105 this.value.generalize(value)
    [all...]
  /external/qemu/android/utils/
ini.h 43 /* returns the number of (key.value) pairs in an IniFile */
46 /* return a specific (key,value) pair from an IniFile.
57 /* returns the value of a given key from an IniFile.
62 /* returns a copy of the value of a given key, or NULL
66 /* returns an integer value, or a default in case the value string is
71 /* returns a 64-bit integer value, or a default in case the value string is
76 /* returns a double value, or a default in case the value string i
    [all...]
  /external/webkit/JavaScriptCore/assembler/
AssemblerBuffer.h 68 void putByteUnchecked(int value)
71 m_buffer[m_size] = value;
75 void putByte(int value)
79 putByteUnchecked(value);
82 void putShortUnchecked(int value)
85 *reinterpret_cast<short*>(&m_buffer[m_size]) = value;
89 void putShort(int value)
93 putShortUnchecked(value);
96 void putIntUnchecked(int value)
99 *reinterpret_cast<int*>(&m_buffer[m_size]) = value;
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/function/
tostring-1.js 48 t1 = new TestFunction( "stub", "value", tab + "return value;" );
55 t4 = new TestFunction( "noop", "value" );
87 function noop( value ) {
93 function stub( value ) {
94 return value;
100 function ToBoolean( value ) {
101 if ( value == 0 || value == NaN || value == false )
    [all...]
  /external/webkit/WebCore/bridge/
npruntime.cpp 84 void NPN_InitializeVariantWithStringCopy(NPVariant* variant, const NPString* value)
87 variant->value.stringValue.UTF8Length = value->UTF8Length;
88 variant->value.stringValue.UTF8Characters = (NPUTF8 *)malloc(sizeof(NPUTF8) * value->UTF8Length);
89 if (!variant->value.stringValue.UTF8Characters)
91 memcpy((void*)variant->value.stringValue.UTF8Characters, value->UTF8Characters, sizeof(NPUTF8) * value->UTF8Length);
99 _NPN_ReleaseObject(variant->value.objectValue)
    [all...]

Completed in 241 milliseconds

<<21222324252627282930>>