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

<<41424344454647484950>>

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventContainer.java 82 * Returns a {@link EventValueType} from an integer value, or <code>null</code> if no match
84 * @param value the integer value.
86 static EventValueType getEventValueType(int value) {
88 if (type.mValue == value) {
122 * @param value the storage string
125 public static Object getObjectFromStorageString(String value) {
126 Matcher m = STORAGE_PATTERN.matcher(value);
153 * Returns the integer value of the enum.
164 private EventValueType(int value) {
    [all...]
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 87 * return new InternalEntry<K, V>(key, original.hash, original.value, next);
89 * public void setValue(InternalEntry<K, V> entry, V value) {
90 * entry.value = value;
92 * public V getValue(InternalEntry<K, V> entry) { return entry.value; }
108 * volatile V value;
110 * InternalEntry(K key, int hash, V value, InternalEntry<K, V> next) {
113 * this.value = value;
173 * concurrency will vary. Ideally, you should choose a value to accommodat
1697 V value = s.getValue(entry); local
1749 V value; field in class:CustomConcurrentHashMap.Impl.WriteThroughEntry
1968 V value = (V) in.readObject(); local
2045 V value = computingStrategy.compute(key, entry, computer); local
2065 V value = computingStrategy.waitForValue(entry); local
2152 volatile V value; field in class:CustomConcurrentHashMap.SimpleInternalEntry
    [all...]
  /external/clearsilver/util/
neo_hdf.h 43 char *value; member in struct:_attr
53 char *value; member in struct:_hdf
100 * Function: hdf_get_int_value - Return the integer value of a point in
103 * hdf to name, and returns the value of that node
108 * defval -> value to return in case of error or if the node
111 * Returns: The integer value of the node, or the defval
116 * Function: hdf_get_value - Return the value of a node in the data set
118 * name and returns the string value located there, or
122 * defval -> the default value to return if the node doesn't
133 * Function: hdf_get_valuevf - Return the value of a node in the data se
    [all...]
  /external/wpa_supplicant/
config_file.c 36 * %NULL if not needed (returned value used instead)
427 char *value = wpa_config_get(ssid, field); local
428 if (value == NULL)
430 fprintf(f, "\t%s=%s\n", field, value);
431 os_free(value);
435 static void write_int(FILE *f, const char *field, int value, int def)
437 if (value == def)
439 fprintf(f, "\t%s=%d\n", field, value);
445 char *value = wpa_config_get(ssid, "bssid"); local
446 if (value == NULL
455 char *value = wpa_config_get(ssid, "psk"); local
465 char *value; local
481 char *value; local
497 char *value; local
513 char *value; local
529 char *value; local
546 char *value; local
561 char field[20], *value; local
    [all...]
  /dalvik/dx/tests/014-field-attrib-ConstantValue/
expected.txt 53 value: int{0x8191a1b1 / -2121162319}
66 value: int{0x8191a1b1 / -2121162319}
79 value: double{0xbfffd70a3d70a3d7 / -1.99}
92 value: float{0xbffeb852 / -1.99}
105 value: int{0x8191a1b1 / -2121162319}
118 value: long{0x80818283f0f1f2f3 / -9186918261664386317}
131 value: int{0x8191a1b1 / -2121162319}
144 value: int{0x8191a1b1 / -2121162319}
157 value: string{"Small"}
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
AtomicBooleanTest.java 24 * constructor initializes to given value
40 * get returns the last value set
53 * compareAndSet succeeds in changing value if equal to expected else fails
68 * compareAndSet in one thread enables another waiting for value
89 * repeated weakCompareAndSet succeeds in changing value when equal
103 * getAndSet returns previous value and sets to given value
114 * a deserialized serialized atomic holds same value
137 * toString returns current value.
AtomicReferenceTest.java 24 * constructor initializes to given value
40 * get returns the last value set
52 * compareAndSet succeeds in changing value if equal to expected else fails
66 * compareAndSet in one thread enables another waiting for value
88 * repeated weakCompareAndSet succeeds in changing value when equal
101 * getAndSet returns previous value and sets to given value
111 * a deserialized serialized atomic holds same value
133 * toString returns current value.
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrappendchild6.java 63 String value; local
71 value = titleAttr.getValue();
72 assertEquals("attrValue", "Yesterday", value);
73 value = titleAttr.getNodeValue();
74 assertEquals("attrNodeValue", "Yesterday", value);
75 value = retval.getNodeValue();
76 assertEquals("retvalValue", "Yesterday", value);
78 value = lastChild.getNodeValue();
79 assertEquals("lastChildValue", "Yesterday", value);
hc_attrsetvalue1.java 31 * Sets Attr.value on an attribute that only has a simple value.
62 String value; local
75 value = titleAttr.getValue();
76 assertEquals("attrValue", "Tomorrow", value);
77 value = titleAttr.getNodeValue();
78 assertEquals("attrNodeValue", "Tomorrow", value);
80 value = firstChild.getNodeValue();
81 assertEquals("firstChildValue", "Tomorrow", value);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
ASN1Integer.java 108 * Converts decoded ASN.1 Integer to int value.
109 * If the object represents an integer value
113 * @return decoded int value.
123 * @return decoded BigInteger value.
131 * Converts primitive int value to a form most suitable for encoding.
133 * @param value primitive value to be encoded
136 public static Object fromIntValue(int value) {
138 return BigInteger.valueOf(value).toByteArray();
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemMessage.java 46 * If the terminate attribute has the value yes, then the
48 * the message. The default value is no.
51 private boolean m_terminate = Constants.ATTRVAL_NO; // default value
55 * If the terminate attribute has the value yes, then the
57 * the message. The default value is no.
59 * @param v Value to set for "terminate" attribute.
68 * If the terminate attribute has the value yes, then the
70 * the message. The default value is no.
72 * @return value of "terminate" attribute.
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyPowerEvent.java 68 private void bufferLogEvent(String tag, String value) {
74 long lagTime = Long.parseLong(value);
83 if (value != null) {
84 event.put("value", value);
104 if (event.containsKey("value")) {
105 String value = event.getAsString("value"); local
107 buffer.append(value.replace('\n', '/'));
  /external/bluetooth/glib/gobject/
gboxed.h 34 * @value: a valid #GValue structure
40 #define G_VALUE_HOLDS_BOXED(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_BOXED))
70 void g_value_set_boxed (GValue *value,
72 void g_value_set_static_boxed (GValue *value,
74 gpointer g_value_get_boxed (const GValue *value);
75 gpointer g_value_dup_boxed (const GValue *value);
167 void g_value_take_boxed (GValue *value,
170 void g_value_set_boxed_take_ownership (GValue *value,
  /external/dbus/doc/
introspect.xsl 48 <span class="symbol"><xsl:value-of select="@name"/></span>
57 <span class="keyword"><xsl:value-of select="name()"/></span>
59 <span class="symbol"><xsl:value-of select="@name"/></span>
68 <xsl:value-of select="@direction"/>
81 <span class="type"><xsl:value-of select="@type"/></span><xsl:text> </xsl:text>
82 <span class="symbol"><xsl:value-of select="@name"/></span><xsl:text> </xsl:text>
101 <code><xsl:value-of select="@name"/></code><xsl:text> = </xsl:text>
102 <code><xsl:value-of select="@value"/></code>
  /external/ppp/pppd/
ipcp.h 52 #define CI_MS_DNS1 129 /* Primary DNS value */
53 #define CI_MS_WINS1 130 /* Primary WINS value */
54 #define CI_MS_DNS2 131 /* Secondary DNS value */
55 #define CI_MS_WINS2 132 /* Secondary WINS value */
64 #define IPCP_VJ_COMP 0x002d /* current value for VJ compression option*/
65 #define IPCP_VJ_COMP_OLD 0x0037 /* "old" (i.e, broken) value for VJ */
76 bool accept_local; /* accept peer's value for ouraddr */
77 bool accept_remote; /* accept peer's value for hisaddr */
80 int vj_protocol; /* protocol value to use in VJ option */
  /external/skia/src/animator/
SkDrawRectangle.cpp 75 bool SkDrawRect::getProperty(int index, SkScriptValue* value) const {
82 value->fType = SkType_Boolean;
83 value->fOperand.fS32 = fBounds.isEmpty() == false;
92 value->fType = SkType_Float;
93 value->fOperand.fScalar = result;
103 bool SkDrawRect::setProperty(int index, SkScriptValue& value) {
104 SkScalar scalar = value.fOperand.fScalar;
107 SkASSERT(value.fType == SkType_Float);
113 SkASSERT(value.fType == SkType_Float);
  /external/srec/srec/Nametag/include/
SR_Nametag.h 36 * value pointed to by value are null; ESR_INVALID_STATE if the nametag value is invalid
46 * @param value Transcription content (opaque)
47 * @param len length of the value (number of opaque bytes)
50 * value pointed to by value are null; ESR_INVALID_STATE if the nametag value is invalid
52 SREC_NAMETAG_API ESR_ReturnCode SR_NametagCreateFromValue(const LCHAR* id, const char* value, size_t len, SR_Nametag** self);
  /external/webkit/JavaScriptCore/bytecode/
JumpTable.h 54 inline int32_t offsetForValue(UString::Rep* value, int32_t defaultOffset)
57 StringOffsetTable::const_iterator loc = offsetTable.find(value);
64 inline CodeLocationLabel ctiForValue(UString::Rep* value)
67 StringOffsetTable::const_iterator loc = offsetTable.find(value);
84 int32_t offsetForValue(int32_t value, int32_t defaultOffset);
92 inline CodeLocationLabel ctiForValue(int32_t value)
94 if (value >= min && static_cast<uint32_t>(value - min) < ctiOffsets.size())
95 return ctiOffsets[value - min];
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.js 29 "Number") whose value is +0.
31 The value of the internal [[Prototype]] property of the Number prototype
36 that is the this value for the invocation of the function; it is an error
37 if this does not refer to an object for which the value of the internal
38 [[Class]] property is "Number". Also, the phrase "this number value" refers
39 to the number value represented by this Number object, that is, the value
40 of the internal [[Value]] property of this Number object.
80 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/Objects/
toString-001.js 27 This checks the ToString value of Object objects under JavaScript 1.2.
58 o = { name:"object", length:0, value:"hello" }
61 "o = { name:\"object\", length:0, value:\"hello\" }; o.toString()",
64 'value:"hello"']));
66 o = { name:"object", length:0, value:"hello",
67 toString:new Function( "return this.value+''" ) }
70 "o = { name:\"object\", length:0, value:\"hello\", "+
71 "toString:new Function( \"return this.value+''\" ) }; o.toString()",
87 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/webkit/WebCore/html/
HTMLFontElement.cpp 137 if (cssValueFromFontSizeNumber(attr->value(), size))
140 addCSSColor(attr, CSSPropertyColor, attr->value());
142 addCSSProperty(attr, CSSPropertyFontFamily, attr->value());
152 void HTMLFontElement::setColor(const String& value)
154 setAttribute(colorAttr, value);
162 void HTMLFontElement::setFace(const String& value)
164 setAttribute(faceAttr, value);
172 void HTMLFontElement::setSize(const String& value)
174 setAttribute(sizeAttr, value);
HTMLTablePartElement.cpp 65 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value());
67 String url = deprecatedParseURL(attr->value());
71 if (!attr->value().isEmpty()) {
72 addCSSColor(attr, CSSPropertyBorderColor, attr->value());
79 if (!attr->value().isEmpty())
80 addCSSProperty(attr, CSSPropertyVerticalAlign, attr->value());
82 const AtomicString& v = attr->value();
94 if (!attr->value().isEmpty())
95 addCSSLength(attr, CSSPropertyHeight, attr->value());
  /external/webkit/WebCore/wml/
WMLPElement.cpp 59 const AtomicString& value = attr->value(); local
60 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
62 else if (equalIgnoringCase(value, "left"))
64 else if (equalIgnoringCase(value, "right"))
67 addCSSProperty(attr, CSSPropertyTextAlign, value);
69 m_mode = attr->value();
105 if (lastMode.isEmpty() || lastMode == "wrap") // Default value, do nothing.
WMLTimerElement.cpp 48 m_name = parseValueForbiddingVariableReferences(attr->value());
57 // If the value of timeout is not a positive integer, ignore it
58 if (value().toInt() <= 0)
91 String value = this->value();
95 value = "0";
96 pageState->storeVariable(m_name, value);
126 interval = value().toInt();
149 String WMLTimerElement::value() const function in class:WebCore::WMLTimerElement
  /frameworks/base/awt/java/awt/event/
AdjustmentEvent.java 53 private int value; field in class:AdjustmentEvent
56 public AdjustmentEvent(Adjustable source, int id, int type, int value) {
57 this(source, id, type, value, false);
60 public AdjustmentEvent(Adjustable source, int id, int type, int value,
64 this.value = value;
69 return value;
119 return (idString + ",adjType=" + adjType + ",value=" + value + //$NON-NLS-1$ //$NON-NLS-2$

Completed in 816 milliseconds

<<41424344454647484950>>