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

<<41424344454647484950>>

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 63 * Default Constructor taking a name and a value. The value may be null.
66 * @param value The value.
68 public BasicClientCookie(final String name, final String value) {
75 this.value = value;
88 * Returns the value.
90 * @return String value The current value
355 private String value; field in class:BasicClientCookie
    [all...]
  /external/e2fsprogs/lib/blkid/
read.c 48 * <device [<NAME="value"> ...]>device_name</device>
237 * Extract a tag of the form NAME="value" from the line.
239 static int parse_token(char **name, char **value, char **cp)
243 if (!name || !value || !cp)
246 if (!(*value = strchr(*cp, '=')))
249 **value = '\0';
251 *value = skip_over_blank(*value + 1);
253 if (**value == '"') {
254 end = strchr(*value + 1, '"')
306 char *value; local
    [all...]
  /external/guava/src/com/google/common/collect/
AbstractBiMap.java 87 @Override public boolean containsValue(Object value) {
88 return inverse.containsKey(value);
93 @Override public V put(K key, V value) {
94 return putInBothMaps(key, value, false);
97 public V forcePut(K key, V value) {
98 return putInBothMaps(key, value, true);
101 private V putInBothMaps(@Nullable K key, @Nullable V value, boolean force) {
103 if (containedKey && Objects.equal(value, get(key))) {
104 return value;
107 inverse().remove(value);
203 V value = entry.getValue(); local
    [all...]
ClassToInstanceMap.java 44 * Returns the value the specified class is mapped to, or {@code null} if no
45 * entry for this class is present. This will only return a value that was
46 * bound to this specific class, not a value that may have been bound to a
52 * Maps the specified class to the specified value. Does <i>not</i> associate
53 * this value with any of the class's supertypes.
55 * @return the value previously associated with this class (possibly {@code
58 <T extends B> T putInstance(Class<T> type, @Nullable T value);
  /external/skia/src/ports/
SkXMLParser_tinyxml.cpp 25 //printf("walk_elem(%s) ", elem->Value());
27 parser->startElement(elem->Value());
32 //printf("walk_elem_attr(%s=\"%s\") ", attr->Name(), attr->Value());
34 parser->addAttribute(attr->Name(), attr->Value());
45 parser->text(node->Value(), strlen(node->Value()));
49 parser->endElement(elem->Value());
  /external/srec/portable/include/
phashtable.h 125 * NULL, all arguments are assumed to be the default value. This value is
162 * Retrieves the value associated with a key.
165 * @param key The key for which to retrieve the value.
166 * @param value The value associated with the key.
170 const void *key, void **value);
176 * @param key The key for which to retrieve the value.
183 * Associates a value with a key.
187 * @param key The key to associate a value with
    [all...]
  /external/srec/shared/include/
ESR_CommandLine.h 37 * Returns value of command-line argument.
40 * @param argv Value of arguments
42 * @param value [out] Value of the argument
43 * @param len [in/out] Length of value argument. If the return code is ESR_BUFFER_OVERFLOW,
45 * @return ESR_BUFFER_OVERFLOW if value buffer is not large enough to contain result;
49 LCHAR* key, LCHAR* value,
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.2-2-n.js 26 This function returns a string value. The contents of the string are
31 this value is not a Date object. Therefore it cannot be transferred to
59 function MyObject( value ) {
60 this.value = value;
61 this.valueOf = new Function( "return this.value" );
73 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.2.2.js 37 The newly constructed object has no [[Value]] property.
71 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
77 function MyObject( value ) {
78 this.value = value;
79 this.valueOf = new Function( "return this.value" );
80 this.toString = new Function( "return this.value+''" );
  /external/webkit/JavaScriptCore/wtf/
TCPackedCache.h 33 // This file provides a minimal cache that can hold a <key, value> pair
34 // with little if any wasted space. The types of the key and value
42 // must be large enough to hold a partial key and a value packed
47 // some <key, value> pair; the class provides no way to mark a cache
50 // tcmalloc's PageID-to-sizeclass cache, a value of 0 is used as
56 // kHashbits controls the size of the cache. The best value for
58 // tuning the value of kHashbits by measuring different values on your
73 // void Put(K key, V value) { a_[H(key)] = pair<K, V>(key, value); }
82 // (c.Put(key, value), c.GetOrDefault(key, 0)) == valu
    [all...]
  /external/webkit/WebCore/html/
HTMLParagraphElement.cpp 59 String v = attr->value();
60 if (equalIgnoringCase(attr->value(), "middle") || equalIgnoringCase(attr->value(), "center"))
62 else if (equalIgnoringCase(attr->value(), "left"))
64 else if (equalIgnoringCase(attr->value(), "right"))
77 void HTMLParagraphElement::setAlign(const String &value)
79 setAttribute(alignAttr, value);
  /external/webkit/WebCore/inspector/front-end/
ObjectProxy.js 41 WebInspector.ObjectProxy.wrapPrimitiveValue = function(value)
44 proxy.type = typeof value;
45 proxy.description = value;
61 result[propertiesPayload[i].name] = propertiesPayload[i].value.description;
67 WebInspector.ObjectPropertyProxy = function(name, value)
70 this.value = value;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 232 * <value>, it returns the <value>. Otherwise, it returns NULL
255 /* skip leading spaces before value */
258 /* if reached the end of line, return NULL; otherwise, return value */
266 * Arg2 configuration value
268 * Effects Assigns the value to the configuration member.
274 /* delete any prior value */
281 /* set new value unless it is NULL */
294 * Arg2 configuration value (string)
296 * Effects Assigns the integer value of the string to th
345 char const *value = get_value_if_matches(line, argument); local
375 char const *value = get_value_if_matches(line, argument); local
    [all...]
  /packages/apps/IM/plugin/com/android/im/plugin/
PresenceMapping.java 22 * The methods used to map presence value sent in protocol to predefined
39 * @param onlineStatus The value of presence &lt;OnlineStatus&gt; received
41 * @param userAvailability The value of presence &lt;UserAvailibility&gt;
51 * Gets the value of &lt;OnlineStatus&gt; will be sent to the server when
55 * @return The value of &lt;OnlineStatus&gt; will be sent to the server
60 * Gets the value of &lt;UserAvaibility&gt; will be sent to the server when
64 * @return The value of &lt;UserAvaibility&gt; will be sent to the server
  /frameworks/base/obex/javax/obex/
ObexHelper.java 124 * <TH>Value</TH>
163 byte[] value = null;
190 value = new byte[length];
191 System.arraycopy(headerArray, index, value, 0, length);
192 if (length == 0 || (length > 0 && (value[length - 1] != 0))) {
200 headerImpl.setHeader(headerID, new String(value, 0,
201 value.length, "ISO8859_1"));
203 headerImpl.setHeader(headerID, new String(value, 0,
204 value.length - 1, "ISO8859_1"));
233 String dateString = new String(value, "ISO8859_1")
760 long value = 0; local
    [all...]
  /dalvik/libcore/awt-kernel/src/main/java/java/beans/
PropertyChangeEvent.java 49 * the previous value of the property, or <code>null</code> if
51 * previous value is unknown.
53 * the new value of the property, or <code>null</code> if the
55 * value is unknown.
98 * Returns the old value that the property had. If the old value is unknown
101 * @return the old property value or null.
108 * Returns the new value that the property now has. If the new value is
111 * @return the old property value or null
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrdefaultvalue.java 31 * If there is not an explicit value assigned to an attribute
33 * declaration includes a default value, then that default
34 * value is the attributes default value.
37 * value. That value should be the value given the
80 String value; local
86 value = streetAttr.getNodeValue();
87 assertEquals("attrDefaultValueAssert", "Yes", value);
    [all...]
hc_attrappendchild1.java 31 * Appends a text node to an attribute and checks if the value of
64 String value; local
75 value = titleAttr.getValue();
76 assertEquals("attrValue", "Yesterday", value);
77 value = titleAttr.getNodeValue();
78 assertEquals("attrNodeValue", "Yesterday", value);
79 value = retval.getNodeValue();
80 assertEquals("retvalValue", "terday", value);
82 value = lastChild.getNodeValue();
83 assertEquals("lastChildValue", "terday", value);
    [all...]
hc_attrappendchild3.java 31 * Appends a document fragment to an attribute and checks if the value of
64 String value; local
81 value = titleAttr.getValue();
82 assertEquals("attrValue", "Yesterday", value);
83 value = titleAttr.getNodeValue();
84 assertEquals("attrNodeValue", "Yesterday", value);
85 value = retval.getNodeValue();
86 assertNull("retvalValue", value);
88 value = lastChild.getNodeValue();
89 assertEquals("lastChildValue", "day", value);
    [all...]
hc_attrreplacechild1.java 31 * Replaces a text node of an attribute and checks if the value of
64 String value; local
77 value = titleAttr.getValue();
78 assertEquals("attrValue", "terday", value);
79 value = titleAttr.getNodeValue();
80 assertEquals("attrNodeValue", "terday", value);
81 value = retval.getNodeValue();
82 assertEquals("retvalValue", "Yes", value);
84 value = firstChild.getNodeValue();
85 assertEquals("firstChildValue", "terday", value);
    [all...]
hc_attrreplacechild2.java 31 * Replaces a text node of an attribute with a document fragment and checks if the value of
64 String value; local
83 value = titleAttr.getValue();
84 assertEquals("attrValue", "terday", value);
85 value = titleAttr.getNodeValue();
86 assertEquals("attrNodeValue", "terday", value);
87 value = retval.getNodeValue();
88 assertEquals("retvalValue", "Yes", value);
90 value = firstChild.getNodeValue();
91 assertEquals("firstChildValue", "ter", value);
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
ReadOnlyHeapByteBuffer.java 99 public ByteBuffer putDouble(double value) {
104 public ByteBuffer putDouble(int index, double value) {
109 public ByteBuffer putFloat(float value) {
114 public ByteBuffer putFloat(int index, float value) {
119 public ByteBuffer putInt(int value) {
124 public ByteBuffer putInt(int index, int value) {
129 public ByteBuffer putLong(int index, long value) {
134 public ByteBuffer putLong(long value) {
139 public ByteBuffer putShort(int index, short value) {
144 public ByteBuffer putShort(short value) {
    [all...]
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
Attr.java 24 * <code>null</code> value for <code>Attr</code> objects. The DOM takes the
36 * <p>The attribute's effective value is determined as follows: if this
37 * attribute has been explicitly assigned any value, that value is the
38 * attribute's effective value; otherwise, if there is a declaration for
39 * this attribute, and that declaration includes a default value, then that
40 * default value is the attribute's effective value; otherwise, the
44 * the string version of the attribute's value(s).
45 * <p> If the attribute was not explicitly given a value in the instance
    [all...]
  /external/junit/src/junit/swingui/
CounterPanel.java 99 public void setTotal(int value) {
100 fTotal= value;
103 public void setRunValue(int value) {
104 fNumberOfRuns.setText(Integer.toString(value) + "/" + fTotal);
107 public void setErrorValue(int value) {
108 setLabelValue(fNumberOfErrors, value);
111 public void setFailureValue(int value) {
112 setLabelValue(fNumberOfFailures, value);
115 private void setLabelValue(JTextField label, int value) {
116 label.setText(Integer.toString(value));
    [all...]
  /external/oprofile/libutil/
op_fileio.h 44 * op_read_int_from_file - parse an ASCII value from a file into an integer
45 * @param filename name of file to parse integer value from
49 * zero (u32)-1 is returned else the value read in is returned.
77 * @param val value to write
79 * Write an unsigned four-byte value val to a file.
89 * @param val value to write
91 * Write an unsigned eight-byte value val to a file.
101 * @param val value to write
103 * Write an unsigned byte value val to a file.
127 * @param crc current value
    [all...]

Completed in 296 milliseconds

<<41424344454647484950>>