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

<<31323334353637383940>>

  /external/e2fsprogs/doc/
libblkid.txt 28 a specific NAME=value token, or you want to output token(s) from a
32 if ((devname = blkid_get_devname(cache, attribute_name, value))) {
39 before function call returns. The return value is an allocated string
40 which holds the resulting device name (if it is found). If the value
42 "<attribute_name>=<value>"; if it cannot be so parsed, then the
49 "LABEL", and value of "root", if that is more convenient.
51 Another common usage is to retrieve the value of a specific attribute
55 if ((value = blkid_get_tag_value(cache, attribute_name, devname))) {
56 /* do something with value */
57 string_free(value);
    [all...]
  /external/elfutils/libasm/
asm_align.c 27 asm_align (asmscn, value)
29 GElf_Word value;
35 /* The alignment value must be a power of two. */
36 if (unlikely (! powerof2 (value)))
47 if ((asmscn->offset & (value - 1)) != 0)
53 cnt = value - (asmscn->offset & (value - 1));
79 if (asmscn->max_align < value)
81 asmscn->max_align = value;
88 if (asmscn->data.up->max_align < value)
    [all...]
  /external/guava/src/com/google/common/collect/
BiMap.java 42 * @throws IllegalArgumentException if the given value is already bound to a
46 V put(@Nullable K key, @Nullable V value);
50 * with the value {@code value} before proceeding with the {@link #put}
51 * operation. If the bimap previously contained the provided key-value
57 * <p><b>Warning</b>: If an existing entry with this value is removed, the key
60 * @param key the key with which the specified value is to be associated
61 * @param value the value to be associated with the specified key
62 * @return the value which was previously associated with the key, which ma
    [all...]
  /external/openssl/crypto/asn1/
a_mbstr.c 65 int (*rfunc)(unsigned long value, void *in), void *arg);
66 static int in_utf8(unsigned long value, void *arg);
67 static int out_utf8(unsigned long value, void *arg);
68 static int type_str(unsigned long value, void *arg);
69 static int cpy_asc(unsigned long value, void *arg);
70 static int cpy_bmp(unsigned long value, void *arg);
71 static int cpy_univ(unsigned long value, void *arg);
72 static int cpy_utf8(unsigned long value, void *arg);
73 static int is_printable(unsigned long value);
246 /* This function traverses a string and passes the value of each characte
253 unsigned long value; local
    [all...]
  /external/quake/quake/src/QW/client/
cvar.h 34 Cvars must be registered before use, or they will have a 0 value instead of the float interpretation of the string. Generally, all cvar_t declarations should be registered in the apropriate init function before any console commands are executed:
39 if ( r_draworder.value )
41 It could optionally ask for the value to be looked up for a string name:
45 cvar_set (name, value) internal functions:
50 r_draworder prints the current value
51 r_draworder 0 sets the current value to 0
62 float value; member in struct:cvar_s
75 void Cvar_Set (char *var_name, char *value);
78 void Cvar_SetValue (char *var_name, float value);
79 // expands value to a string and calls Cvar_Se
    [all...]
  /external/quake/quake/src/WinQuake/
cvar.h 34 Cvars must be registered before use, or they will have a 0 value instead of the float interpretation of the string. Generally, all cvar_t declarations should be registered in the apropriate init function before any console commands are executed:
39 if ( r_draworder.value )
41 It could optionally ask for the value to be looked up for a string name:
45 cvar_set (name, value) internal functions:
50 r_draworder prints the current value
51 r_draworder 0 sets the current value to 0
62 float value; member in struct:cvar_s
75 void Cvar_Set (const char *var_name, const char *value);
78 void Cvar_SetValue (const char *var_name, float value);
79 // expands value to a string and calls Cvar_Se
    [all...]
  /external/v8/src/
checks.cc 65 v8::Handle<v8::Value> expected,
67 v8::Handle<v8::Value> value) {
68 if (!expected->Equals(value)) {
69 v8::String::Utf8Value value_str(value);
81 v8::Handle<v8::Value> unexpected,
83 v8::Handle<v8::Value> value) {
84 if (unexpected->Equals(value)) {
85 v8::String::Utf8Value value_str(value);
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.8-1.js 32 prototype object, the one that is the initial value of Object.prototype
36 The initial value of this property is the function object being executed.
40 The initial value of this property is the number of actual parameter values
43 For each non-negative integer, iarg, less than the value of the length
45 attributes { DontEnum }. The initial value of this property is the value
47 actual parameter value corresponds to iarg = 0, the second to iarg = 1 and
49 for the function object, this property shares its value with the
52 and vice versa. The value sharing mechanism depends on the implementation.
67 var ARG_STRING = "value of the argument property"
    [all...]
10.1.8-2.js 32 prototype object, the one that is the initial value of Object.prototype
36 The initial value of this property is the function object being executed.
40 The initial value of this property is the number of actual parameter values
43 For each non-negative integer, iarg, less than the value of the length
45 attributes { DontEnum }. The initial value of this property is the value
47 actual parameter value corresponds to iarg = 0, the second to iarg = 1 and
49 for the function object, this property shares its value with the
52 and vice versa. The value sharing mechanism depends on the implementation.
73 var ARG_STRING = "value of the argument property"
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/
menuhead.html 32 function setAllDirs (suite, value)
36 setAllTests (suite, dir, value);
40 function setAllTests (suite, testDir, value)
47 document.forms["testCases"].elements[radioName].checked = value;
65 elements["SUMMARY_" + suite].value + "\n");
66 win.document.write ("# TOTAL: " + elements["TOTAL"].value + "\n");
75 elements[radioName].value + "\n");
114 elements["SUMMARY_" + suite].value = selected + "/" + available +
122 elements["TOTAL"].value = totalSelected + "/" + totalAvailable + " (" +
136 <input type='button' value='Export Test List' onClick='createList();'
    [all...]
  /external/webkit/WebCore/svg/animation/
SMILTime.h 45 double value() const { return m_time; } function in class:WebCore::SMILTime
58 inline bool operator==(const SMILTime& a, const SMILTime& b) { return a.isFinite() && a.value() == b.value(); }
60 inline bool operator>(const SMILTime& a, const SMILTime& b) { return a.value() > b.value(); }
61 inline bool operator<(const SMILTime& a, const SMILTime& b) { return a.value() < b.value(); }
62 inline bool operator>=(const SMILTime& a, const SMILTime& b) { return a.value() > b.value() || operator==(a, b); }
63 inline bool operator<=(const SMILTime& a, const SMILTime& b) { return a.value() < b.value() || operator==(a, b);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentQueryMapTest.java 57 Settings.System.putString(r, "test", "Value");
62 Settings.System.VALUE,
72 Settings.System.putString(r, "test", "New Value");
74 String value = v.getAsString(Settings.System.VALUE);
75 assertEquals("Value", value);
82 String value = v.getAsString(Settings.System.VALUE);
83 assertEquals("New Value", value)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
VectorTest.java 177 int pos = 5, value = 0; local
179 vector.set(pos, value);
180 vector.set(pos, value);
181 vector.set(pos, value);
182 vector.set(pos, value);
183 vector.set(pos, value);
184 vector.set(pos, value);
185 vector.set(pos, value);
186 vector.set(pos, value);
187 vector.set(pos, value);
193 int index, value = 0; local
210 int index, value = 0; local
227 int index, value = 0; local
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/sys/
system_properties.h 41 /* Look up a system property by name, copying its value and a
44 ** the string length of the value. A property that is not
45 ** defined is identical to a property with a length 0 value.
47 int __system_property_get(const char *name, char *value);
51 ** __system_property_read() to obtain the string value from
60 /* Read the value of a system property. Returns the length
61 ** of the value. Copies the value and \0 terminator into
62 ** the provided value pointer. Total length (including
69 int __system_property_read(const prop_info *pi, char *name, char *value);
    [all...]
  /ndk/build/platforms/android-4/arch-arm/usr/include/sys/
system_properties.h 41 /* Look up a system property by name, copying its value and a
44 ** the string length of the value. A property that is not
45 ** defined is identical to a property with a length 0 value.
47 int __system_property_get(const char *name, char *value);
51 ** __system_property_read() to obtain the string value from
60 /* Read the value of a system property. Returns the length
61 ** of the value. Copies the value and \0 terminator into
62 ** the provided value pointer. Total length (including
69 int __system_property_read(const prop_info *pi, char *name, char *value);
    [all...]
  /ndk/build/platforms/android-5/arch-arm/usr/include/sys/
system_properties.h 41 /* Look up a system property by name, copying its value and a
44 ** the string length of the value. A property that is not
45 ** defined is identical to a property with a length 0 value.
47 int __system_property_get(const char *name, char *value);
51 ** __system_property_read() to obtain the string value from
60 /* Read the value of a system property. Returns the length
61 ** of the value. Copies the value and \0 terminator into
62 ** the provided value pointer. Total length (including
69 int __system_property_read(const prop_info *pi, char *name, char *value);
    [all...]
  /ndk/build/platforms/android-5/arch-x86/usr/include/sys/
system_properties.h 41 /* Look up a system property by name, copying its value and a
44 ** the string length of the value. A property that is not
45 ** defined is identical to a property with a length 0 value.
47 int __system_property_get(const char *name, char *value);
51 ** __system_property_read() to obtain the string value from
60 /* Read the value of a system property. Returns the length
61 ** of the value. Copies the value and \0 terminator into
62 ** the provided value pointer. Total length (including
69 int __system_property_read(const prop_info *pi, char *name, char *value);
    [all...]
  /ndk/build/platforms/android-8/arch-arm/usr/include/sys/
system_properties.h 41 /* Look up a system property by name, copying its value and a
44 ** the string length of the value. A property that is not
45 ** defined is identical to a property with a length 0 value.
47 int __system_property_get(const char *name, char *value);
51 ** __system_property_read() to obtain the string value from
60 /* Read the value of a system property. Returns the length
61 ** of the value. Copies the value and \0 terminator into
62 ** the provided value pointer. Total length (including
69 int __system_property_read(const prop_info *pi, char *name, char *value);
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/sys/
system_properties.h 41 /* Look up a system property by name, copying its value and a
44 ** the string length of the value. A property that is not
45 ** defined is identical to a property with a length 0 value.
47 int __system_property_get(const char *name, char *value);
51 ** __system_property_read() to obtain the string value from
60 /* Read the value of a system property. Returns the length
61 ** of the value. Copies the value and \0 terminator into
62 ** the provided value pointer. Total length (including
69 int __system_property_read(const prop_info *pi, char *name, char *value);
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
PrimitiveElement.java 54 public void setAttribute(String key, String value) {
55 if (key != null && value != null) {
59 mAttributes.put(key, value);
135 public void addChild(String tagName, boolean value) {
136 addChild(tagName).setContents(value ?
140 public void addPropertyChild(String name, String value)
144 ret.addChild(ImpsTags.Value, value);
147 public void addPropertyChild(String name, boolean value)
151 ret.addChild(ImpsTags.Value, value)
    [all...]
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILAnimation.java 27 * A code representing the value of the additive attribute, as defined
28 * above. Default value is <code>ADDITIVE_REPLACE</code> .
41 * A code representing the value of the accumulate attribute, as defined
42 * above. Default value is <code>ACCUMULATE_NONE</code> .
57 * A code representing the value of the calcMode attribute, as defined
67 * A <code>DOMString</code> representing the value of the keySplines
77 * A list of the time value of the keyTimes attribute.
86 * A <code>DOMString</code> representing the value of the values
96 * A <code>DOMString</code> representing the value of the from attribute.
106 * A <code>DOMString</code> representing the value of the to attribute.
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiTextValueNode.java 26 * Represents an XML element value in that can be modified using a simple text field
36 * Updates the current text field's value when the XML has changed.
38 * The caller doesn't really know if value of the element has changed,
39 * so it will call this to refresh the value anyway. The value
49 // null since this is not an attribute. What we want is the "text value" of
86 // Get (or create) the underlying XML element node that contains the value.
89 String value = getTextWidgetValue(); local
98 xml_child.setNodeValue(value);
108 Text text = doc.createTextNode(value);
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebsettings.cpp 212 static void webkit_web_settings_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec);
214 static void webkit_web_settings_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec);
411 * The value by which the zoom level is changed when zooming in or out.
419 _("Zoom Stepping Value"),
420 _("The value by which the zoom level is changed when zooming in or out."),
490 * If no value is specified then the value returned by
572 * provided by the application. Setting this property to a NULL value or
574 * default value.
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 291 Object value; field in class:RemoteViews.ReflectionAction
293 ReflectionAction(int viewId, String methodName, int type, Object value) {
297 this.value = value;
311 this.value = in.readInt() != 0;
314 this.value = in.readByte();
317 this.value = (short)in.readInt();
320 this.value = in.readInt();
323 this.value = in.readLong();
326 this.value = in.readFloat()
    [all...]
  /dalvik/libcore/prefs/src/main/java/java/util/prefs/
Preferences.java 68 * a default value. The default value is returned when the preferences cannot
109 * Maximum size in characters allowed for a preferences value.
340 * Gets the {@code String} value mapped to the given key or its default
341 * value if no value is mapped or no backing store is available.
344 * case, if there is no value mapped to the given key, the stored default
345 * value is returned.
351 * the default value, which will be returned if no value i
    [all...]

Completed in 280 milliseconds

<<31323334353637383940>>