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

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiAbstractTextAttributeNode.java 27 * The XML attribute has no default value. When unset, the text field is blank.
40 /** Last value read from the XML model. Cannot be null. */
48 /** Returns the current value of the node. */
54 /** Sets the current value of the node. Cannot be null (use an empty string). */
55 public final void setCurrentValue(String value) {
56 mCurrentValue = value;
62 /** Returns the text value present in the UI. */
65 /** Sets the text value to be displayed in the UI. */
66 public abstract void setTextWidgetValue(String value);
70 * Updates the current text field's value when the XML has changed
104 String value = getTextWidgetValue(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/
unittest.xml 5 <!--The following properties should be passed into this script, set to some default value for now -->
6 <property name="eclipse.home" value="/opt/eclipse" />
7 <property name="eclipse_test" value="${eclipse.home}/plugins/org.eclipse.test_3.2.0" />
11 <property name="eclipse-home" value="${eclipse.home}" />
12 <property name="test-folder" value="${eclipse.home}/unittest_ws" />
15 <property name="plugin-name" value="com.android.ide.eclipse.tests" />
16 <property name="library-file" value="${eclipse_test}/library.xml" />
22 <property name="test-folder" value="${test-folder}" />
31 <property name="data-dir" value="${test-folder}" />
32 <property name="plugin-name" value="${plugin-name}" /
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 148 assertEquals("expected value doesn't equal actual",
151 assertEquals("expected value doesn't equal actual",
156 // assertEquals("expected value doesn't equal actual", BigDecimal
158 // assertEquals("expected value doesn't equal actual", BigDecimal
160 // assertEquals("expected value doesn't equal actual", id, result
162 assertEquals("expected value doesn't equal actual", BigDecimal
164 assertEquals("expected value doesn't equal actual", BigDecimal
166 assertEquals("expected value doesn't equal actual", BigDecimal
169 assertEquals("expected value doesn't equal actual",
171 assertEquals("expected value doesn't equal actual"
264 HashMap<Integer, String> value = new HashMap<Integer, String>(); local
306 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>(); local
344 HashMap<Integer, String> value = new HashMap<Integer, String>(); local
377 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>(); local
416 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>(); local
    [all...]
  /external/icu4c/common/
ucnv_ext.c 32 * @return lookup value for the byte, if found; else 0
127 uint32_t value, matchValue; local
164 value=*toUSection++;
165 length=UCNV_EXT_TO_U_GET_BYTE(value);
166 value=UCNV_EXT_TO_U_GET_VALUE(value);
167 if( value!=0 &&
168 (UCNV_EXT_TO_U_IS_ROUNDTRIP(value) ||
173 matchValue=value;
198 value=ucnv_extFindToU(toUSection, length, b)
282 uint32_t value = 0; \/* initialize output-only param to 0 to silence gcc *\/ local
332 uint32_t value = 0; \/* initialize output-only param to 0 to silence gcc *\/ local
370 uint32_t value = 0; \/* initialize output-only param to 0 to silence gcc *\/ local
530 uint32_t value, matchValue; local
751 uint32_t value = 0; \/* initialize output-only param to 0 to silence gcc *\/ local
810 uint32_t value; local
864 uint32_t value = 0; \/* initialize output-only param to 0 to silence gcc *\/ local
958 uint32_t value; local
1015 uint32_t value; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERInteger.java 54 int value)
56 bytes = BigInteger.valueOf(value).toByteArray();
60 BigInteger value)
62 bytes = value.toByteArray();
94 int value = 0; local
98 value ^= (bytes[i] & 0xff) << (i % 4);
101 return value;
  /external/astl/include/
algorithm 128 // fill the range [begin, end) with copies of value, return nothing.
129 // fill_n the range [begin, begin + n) with copies of value, return
138 const _T& value)
141 *begin = value;
148 const _T& value)
150 const _T tmp = value;
157 template<typename _T> void fill(_T *begin, _T *end, const _T& value)
159 const bool is_scalar = std::is_scalar<_T>::value;
160 __fill<is_scalar>::fill(begin, end, value);
165 const unsigned char& value)
    [all...]
  /external/iproute2/netem/
paretonormal.c 65 int normvalue, parvalue, value; local
70 value = (normvalue+3*parvalue)/4;
71 if (value < SHRT_MIN) value = SHRT_MIN;
72 if (value > SHRT_MAX) value = SHRT_MAX;
74 printf(" %d", value);
  /external/proguard/src/proguard/classfile/constant/
DoubleConstant.java 45 * Creates a new DoubleConstant with the given double value.
47 public DoubleConstant(double value)
49 f8value = value;
54 * Returns the double value of this DoubleConstant.
63 * Sets the double value of this DoubleConstant.
65 public void setValue(double value)
67 f8value = value;
FloatConstant.java 45 * Creates a new FloatConstant with the given float value.
47 public FloatConstant(float value)
49 f4value = value;
54 * Returns the float value of this FloatConstant.
63 * Sets the float value of this FloatConstant.
65 public void setValue(float value)
67 f4value = value;
IntegerConstant.java 45 * Creates a new IntegerConstant with the given integer value.
47 public IntegerConstant(int value)
49 u4value = value;
54 * Returns the integer value of this IntegerConstant.
63 * Sets the integer value of this IntegerConstant.
65 public void setValue(int value)
67 u4value = value;
LongConstant.java 45 * Creates a new LongConstant with the given long value.
47 public LongConstant(long value)
49 u8value = value;
54 * Returns the long value of this LongConstant.
63 * Sets the long value of this LongConstant.
65 public void setValue(long value)
67 u8value = value;
  /external/srec/srec/Semproc/src/
SymbolTable.c 79 ESR_ReturnCode ST_putKeyValue(SymbolTable* self, const LCHAR* key, const LCHAR* value)
85 if (self == NULL || key == NULL || value == NULL)
102 CHKLOG(rc, HashMapPut(self->hashmap, symbol->key, symbol->value));
105 buf = symbol->value;
110 if (LSTRLEN(value) >= MAX_SEMPROC_VALUE)
111 PLogError("Warning: chopping length of value len %d > %d (%s)\n", LSTRLEN(value), MAX_SEMPROC_VALUE, value);
112 LSTRNCPY(buf, value, MAX_SEMPROC_VALUE);
114 /* MEMCHK(rc, LSTRLEN(value), MAX_SEMPROC_VALUE)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-318.js 30 function test(value) {
31 if (typeof(value) == 'boolean') value = value + '';
32 if (typeof(value) == 'number') value = value + '';
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-002.js 22 function MyObject( value ) {
23 this.value = value;
24 this.valueOf = new Function ( "return this.value" );
25 this.toString = new Function ( "return this.value + \"\"" );
26 this.toNumber = new Function ( "return this.value + 0" );
27 this.toBoolean = new Function ( "return Boolean( this.value )" );
try-006.js 54 function TryObject( value, fun, exception ) {
55 this.value = value;
58 this.valueOf = new Function ( "return this.value" );
66 * property is true, we expect the result to be the exception value.
67 * If exception is false, then we expect the result to be the value of
81 "TryWith( " + object.value +" )",
  /external/webkit/WebCore/bindings/js/
JSExceptionBase.cpp 42 ExceptionBase* toExceptionBase(JSC::JSValue value)
44 if (DOMCoreException* domException = toDOMCoreException(value))
46 if (RangeException* rangeException = toRangeException(value))
48 if (EventException* eventException = toEventException(value))
50 if (XMLHttpRequestException* xmlHttpException = toXMLHttpRequestException(value))
53 if (SVGException* svgException = toSVGException(value))
57 if (XPathException* pathException = toXPathException(value))
  /external/webkit/WebCore/html/
HTMLDivElement.cpp 57 String v = attr->value();
58 if (equalIgnoringCase(attr->value(), "middle") || equalIgnoringCase(attr->value(), "center"))
60 else if (equalIgnoringCase(attr->value(), "left"))
62 else if (equalIgnoringCase(attr->value(), "right"))
75 void HTMLDivElement::setAlign(const String &value)
77 setAttribute(alignAttr, value);
  /packages/apps/Gallery3D/src/com/cooliris/media/
FloatAnim.java 27 public FloatAnim(float value) {
28 mValue = value;
52 public void animateValue(float value, float duration, long currentTime) {
53 mDelta = getValue(currentTime) - value;
54 mValue = value;
59 public void setValue(float value) {
60 mValue = value;
  /system/core/include/ctest/
ctest.h 36 #define assertTrue(value, message) assertTrueWithSource(value, __FILE__, __LINE__, message);
39 * Asserts that a condition is false. The test fails if the value is true.
41 #define assertFalse(value, message) assertTrueWithSource(!value, __FILE__, __LINE__, message);
49 #define assertSame(a, b) assertTrueWithSource(a == b, __FILE__, __LINE__, "Expected same value.");
64 void assertTrueWithSource(int value, const char* file, int line, char* message);
  /system/core/include/cutils/
properties.h 24 /* System properties are *small* name value pairs managed by the
34 /* property_get: returns the length of the value which will never be
38 ** If the property read fails or returns an empty value, the default
39 ** value is used (if nonnull).
41 int property_get(const char *key, char *value, const char *default_value);
45 int property_set(const char *key, const char *value);
47 int property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie);
  /frameworks/base/awt/javax/imageio/metadata/
IIOStandardMetadataFormatResources.properties 24 NumChannels/value=The number of channels in the raw image, including alpha
26 Gamma/value=The image gamma
28 BlackIsZero/value=True if smaller values represent darker shades
32 PaletteEntry/red=The red value for the palette entry
33 PaletteEntry/green=The green value for the palette entry
34 PaletteEntry/blue=The blue value for the palette entry
35 PaletteEntry/alpha=The alpha value for the palette entry
37 BackgroundIndex/value=A palette index to be used as a background
39 BackgroundColor/red=The red background value
40 BackgroundColor/green=The green background value
    [all...]
  /frameworks/base/core/java/android/content/
SharedPreferences.java 42 * may be called even if a preference is set to its existing value.
60 * Set a String value in the preferences editor, to be written back once
64 * @param value The new value for the preference.
69 Editor putString(String key, String value);
72 * Set an int value in the preferences editor, to be written back once
76 * @param value The new value for the preference.
81 Editor putInt(String key, int value);
84 * Set a long value in the preferences editor, to be written back onc
    [all...]
  /frameworks/base/core/java/android/util/
AttributeSet.java 73 * other method returns this attribute's value as a resource identifier.
82 * Return the index of the value of 'attribute' in the list 'options'.
86 * @param defaultValue Value returned if attribute doesn't exist or no
95 * Return the boolean value of 'attribute'.
100 * @return Resulting value.
106 * Return the value of 'attribute' as a resource identifier.
109 * in that it returns a the value contained in this attribute as a
110 * resource identifier (i.e., a value originally of the form
117 * @return Resulting value.
123 * Return the integer value of 'attribute'
    [all...]
  /frameworks/base/obex/javax/obex/
ResponseCodes.java 58 * The value of <code>OBEX_HTTP_CONTINUE</code> is 0x90 (144).
65 * The value of <code>OBEX_HTTP_OK</code> is 0xA0 (160).
72 * The value of <code>OBEX_HTTP_CREATED</code> is 0xA1 (161).
79 * The value of <code>OBEX_HTTP_ACCEPTED</code> is 0xA2 (162).
86 * The value of <code>OBEX_HTTP_NOT_AUTHORITATIVE</code> is 0xA3 (163).
93 * The value of <code>OBEX_HTTP_NO_CONTENT</code> is 0xA4 (164).
100 * The value of <code>OBEX_HTTP_RESET</code> is 0xA5 (165).
107 * The value of <code>OBEX_HTTP_PARTIAL</code> is 0xA6 (166).
114 * The value of <code>OBEX_HTTP_MULT_CHOICE</code> is 0xB0 (176).
121 * The value of <code>OBEX_HTTP_MOVED_PERM</code> is 0xB1 (177)
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
PtsPrimitiveParser.java 144 // FIXME: Should be refactored when we had concrete situation of the null value case
146 throw new ParserException("Parameter " + elemCode + " must have value.");
165 throw new ParserException("Element SessionID must have string value!");
204 for (ParamValue value : elemValue.mValueGroup) {
205 p.addElement(ImpsTags.ContactList, value.mStrValue);
212 throw new ParserException("Deafult Contact List must have string value!");
232 throw new ParserException("Null value found for NickName: " + nickname
255 String value = valueGroup.get(1).mStrValue; local
256 if (name == null || value == null) {
257 throw new ParserException("Null value found for property: " + name + "-" + value)
282 ParamValue value = elemValue.mValueGroup.get(0); local
295 ParamValue value = elemValue.mValueGroup.get(i); local
402 ParamValue value = v.mValueGroup.get(i); local
544 ParamValue value = new ParamValue(); local
    [all...]

Completed in 346 milliseconds

<<21222324252627282930>>