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

<<61626364656667686970>>

  /packages/apps/Gallery3D/src/com/cooliris/media/
DirectLinkedList.java 25 Entry(E value) {
26 this.value = value;
29 public final E value; field in class:DirectLinkedList.Entry
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
FlagValueCellEditor.java 49 protected void doSetValue(Object value) {
50 if (value instanceof UiFlagAttributeNode) {
51 mUiFlagAttribute = (UiFlagAttributeNode)value;
56 super.doSetValue(value);
ResourceValueCellEditor.java 50 protected void doSetValue(Object value) {
51 if (value instanceof UiResourceAttributeNode) {
52 mUiResourceAttribute = (UiResourceAttributeNode)value;
57 super.doSetValue(value);
  /sdk/files/
ant_lib_rules_r2.xml 30 <property name="adb.device.arg" value="" />
38 <property name="source.dir" value="src" />
40 <property name="gen.dir" value="gen" />
42 <property name="resource.dir" value="res" />
44 <property name="asset.dir" value="assets" />
48 <property name="external.libs.dir" value="libs" />
52 <property name="native.libs.dir" value="libs" />
56 <property name="out.dir" value="bin" />
58 <property name="out.classes.dir" value="${out.absolute.dir}/classes" />
62 <property name="verbose" value="false" /
    [all...]
  /system/core/libcutils/
threads.c 31 void* value,
44 pthread_setspecific( store->tls, value );
59 void* value,
82 TlsSetValue( store->tls, value );
  /system/core/nexus/
WifiNetwork.h 78 virtual int set(int idx, int value) = 0;
90 virtual int set(int idx, const char *value) = 0;
99 int set(int idx, int value);
107 int set(int idx, int value);
115 int set(int idx, int value);
123 int set(int idx, const char *value);
131 int set(int idx, const char *value);
139 int set(int idx, const char *value);
147 int set(int idx, const char *value);
155 int set(int idx, const char *value);
    [all...]
  /external/opencore/pvmi/media_io/pvmiofileoutput/src/
pvmi_media_io_fileoutput.cpp     [all...]
  /dalvik/libcore/archive/src/main/java/java/util/jar/
Attributes.java 36 * The {@code Attributes} as name/value pairs. Maps the attribute names (as
44 * The name part of the name/value pairs constituting an attribute as
86 * The {@code Sealed} manifest attribute which may have the value
92 * The {@code Implementation-Title} attribute whose value is a string
248 * @return the hash value computed from the name.
298 * Removes all key/value pairs from this {@code Attributes}.
316 * Determines whether this {@code Attributes} contains the specified value.
318 * @param value
319 * the value to search for.
320 * @return {@code true} if the value is found, {@code false} otherwise
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicHeaderValueFormatter.java 40 * Basic implementation for formatting header value elements.
68 * a parameter value .
192 final String value = elem.getValue(); local
193 if (value != null) {
195 doFormatValue(buffer, value, quote);
222 final String value = elem.getValue(); local
223 if (value != null) {
225 result += 3 + value.length(); // ="value"
311 * Formats a name-value pair
348 final String value = nvp.getValue(); local
370 final String value = nvp.getValue(); local
    [all...]
  /external/clearsilver/util/
skiplist.c 32 UINT32 locks; /* count of locks on value */
34 void *value; /* item's value */ member in struct:skipItem
65 double randLimit; /* min random value to jump levels */
66 skipFreeValue freeValue; /* free value callback */
151 void *value)
160 (*item)->value = value;
169 list->freeValue(item->value, list->freeValueCtx); /* free value */
267 void *value; local
287 void *value; local
    [all...]
  /external/icu4c/tools/genprops/
genprops.c 88 options[DESTDIR].value=u_getDataDirectory();
89 options[SOURCEDIR].value="";
90 options[UNICODE_VERSION].value="";
91 options[ICUDATADIR].value=u_getDataDirectory();
134 srcDir=options[SOURCEDIR].value;
135 destDir=options[DESTDIR].value;
144 setUnicodeVersion(options[UNICODE_VERSION].value);
149 u_setDataDirectory(options[ICUDATADIR].value);
296 uint32_t value; local
349 /* decimal digit value, field 6 *
    [all...]
  /external/v8/src/
flags.cc 52 // to the actual flag, default value, comment, etc. This is designed to be POD
60 const void* defptr_; // Pointer to the default value.
62 bool owns_ptr_; // Does the flag own its string value?
90 void set_string_value(const char* value, bool owns_ptr) {
94 *ptr = value;
128 // Compare this flag's current value against the default.
151 // Set a flag back to it's default value.
269 // a flag name and flag value (or NULL if they are missing). is_bool is set
276 const char** value,
279 *value = NULL
535 SmartPointer<const char> value = ToString(f); local
    [all...]
  /external/webkit/WebCore/svg/
SVGAnimationElement.cpp 118 attr->value().string().split(';', m_values);
120 parseKeyTimes(attr->value(), m_keyTimes, true);
124 parseKeyTimes(attr->value(), m_keyPoints, false);
126 parseKeySplines(attr->value(), m_keySplines);
153 return narrowPrecisionToFloat(intervalBegin().value());
158 return narrowPrecisionToFloat(elapsed().value());
163 return narrowPrecisionToFloat(simpleDuration().value());
208 const AtomicString& value = getAttribute(SVGNames::calcModeAttr); local
209 if (value == discrete)
211 if (value == linear
224 const AtomicString& value = getAttribute(SVGNames::attributeTypeAttr); local
250 const AtomicString& value = getAttribute(SVGNames::additiveAttr); local
257 const AtomicString& value = getAttribute(SVGNames::accumulateAttr); local
    [all...]
  /frameworks/base/core/java/android/widget/
NumberPicker.java 48 * The callback interface used to indicate the number value has been adjusted.
53 * @param oldVal The previous value.
54 * @param newVal The new value.
63 String toString(int value);
77 public String toString(int value) {
78 mArgs[0] = value;
104 * Lower value of the range of numbers allowed for the NumberPicker
109 * Upper value of the range of numbers allowed for the NumberPicker
114 * Current value of this NumberPicker
119 * Previous value of this NumberPicker
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
NumberPicker.java 46 * The callback interface used to indicate the number value has been adjusted.
51 * @param oldVal The previous value.
52 * @param newVal The new value.
61 String toString(int value);
75 public String toString(int value) {
76 mArgs[0] = value;
102 * Lower value of the range of numbers allowed for the NumberPicker
107 * Upper value of the range of numbers allowed for the NumberPicker
112 * Current value of this NumberPicker
117 * Previous value of this NumberPicker
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
layout-devices.xsd 105 <xsd:minInclusive value="100" />
106 <xsd:maxInclusive value="999" />
119 <xsd:minExclusive value="0" />
120 <xsd:maxExclusive value="1000" />
133 <xsd:enumeration value="small" />
134 <xsd:enumeration value="normal" />
135 <xsd:enumeration value="large" />
151 <xsd:enumeration value="long" />
152 <xsd:enumeration value="notlong" />
166 <xsd:enumeration value="port" /
    [all...]
  /external/emma/
build.xml 10 <property name="app.short.name" value="${ant.project.name}" />
11 <property name="app.project.start.date" value="2001/02/01" />
35 <property name="build.debug" value="on" /> <!-- default for a release build is "on" -->
36 <property name="build.deprecation" value="off" />
37 <property name="build.compiler" value="modern" />
38 <property name="build.sysclasspath" value="ignore" />
39 <property name="build.target" value="1.2" /> <!-- all .class files are stamped as compatible with 1.2 JVMs: -->
61 <property name="build.is.official" value="yes" />
66 <property name="build.is.on.a.branch" value="yes" />
67 <property name="app.build.release.tag" value="" /> <!-- no tag means official release --
    [all...]
  /external/tinyxml/
tinyxml.cpp 171 target->SetValue (value.c_str() );
327 if ( strcmp( node->Value(), _value ) == 0 )
339 if ( strcmp( node->Value(), _value ) == 0 )
351 if ( strcmp( node->Value(), _value ) == 0 )
362 if ( strcmp( node->Value(), _value ) == 0 )
425 if ( strcmp( node->Value(), _value ) == 0 )
436 if ( strcmp( node->Value(), _value ) == 0 )
447 if ( strcmp( node->Value(), _value ) == 0 )
458 if ( strcmp( node->Value(), _value ) == 0 )
615 value = _value
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduParser.java 230 log("Set invalid Octet value: " + messageType +
239 /* Octect value */
262 * The following field has a different value when
268 int value = extractByteValue(pduDataStream); local
271 headers.setOctet(value, headerField);
273 log("Set invalid Octet value: " + value +
289 long value = parseLongInteger(pduDataStream); local
290 headers.setLongInteger(value, headerField);
298 /* Integer-Value */
304 long value = parseIntegerValue(pduDataStream); local
358 EncodedStringValue value = local
378 EncodedStringValue value = local
1536 int value = pduDataStream.read(); local
    [all...]
  /build/tools/droiddoc/src/
AnnotationInstanceInfo.java 48 AnnotationValueInfo value = values[i]; local
49 str.append(value.element().name());
51 str.append(value.valueString());
  /cts/tests/src/android/content/cts/
MockReceiver.java 33 public static final String RESULT_EXTRAS_INVARIABLE_VALUE = "invariable value";
35 public static final String RESULT_EXTRAS_REMOVE_VALUE = "remove value";
37 public static final String RESULT_EXTRAS_ADD_VALUE = "add value";
  /cts/tests/tests/content/src/android/content/res/cts/
PrimitiveTest.java 37 final int value = sa.getInt(R.styleable.EnumStyle_testEnum, -1); local
40 assertEquals("Expecting value " + expected + " got " + value
41 + ": in resource 0x" + Integer.toHexString(resid), expected, value);
54 final int value = sa.getInt(R.styleable.FlagStyle_testFlags, -1); local
57 assertEquals("Expecting value " + expected + " got " + value
58 + ": in resource 0x" + Integer.toHexString(resid), expected, value);
74 assertEquals("Expecting boolean value " + expected + " got " + v
77 assertEquals("Expecting boolean value " + expected + " got " +
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 132 * @param value string value.
134 static void addResult(final String key, final String value){
135 mResults.putString(key, value);
142 * @param value integer value.
144 private void addResult(final String key, final int value){
145 mResults.putInt(key, value);
152 * @param value float value
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexAnnotationAttributeImpl.java 27 DexEncodedValue value;// encoded_value field in class:DexAnnotationAttributeImpl
47 value = new DexEncodedValueImpl(buffer, annotation, typeIds,
56 return value;
  /cts/tools/signature-tools/src/signature/model/
IAnnotationField.java 22 * String and the default value "droid".
33 * Returns the default value. If no default value is set then null is

Completed in 1637 milliseconds

<<61626364656667686970>>