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

<<41424344454647484950>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
statement-003.js 21 for the property name and W for the value.
24 GetPropertyName(V) for the property name and W for the value.
27 9. If Result(8) is a value completion, change C to be "normal completion
28 after value V" where V is the value carried by Result(8).
74 this.value = 2;
  /external/webkit/WebCore/bindings/js/
JSHTMLFrameElementCustom.cpp 44 static inline bool allowSettingJavascriptURL(ExecState* exec, HTMLFrameElement* imp, const String& value)
46 if (protocolIsJavaScript(deprecatedParseURL(value))) {
54 void JSHTMLFrameElement::setSrc(ExecState* exec, JSValue value)
57 String srcValue = valueToStringWithNullCheck(exec, value);
65 void JSHTMLFrameElement::setLocation(ExecState* exec, JSValue value)
68 String locationValue = valueToStringWithNullCheck(exec, value);
  /external/webkit/WebCore/bindings/v8/
SharedPersistent.h 47 void set(v8::Persistent<T> value)
49 m_value = value;
62 static PassRefPtr<SharedPersistent<T> > create(v8::Persistent<T> value)
64 return adoptRef(new SharedPersistent<T>(value));
71 explicit SharedPersistent(v8::Persistent<T> value) : m_value(value) { }
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLFrameElementCustom.cpp 44 void V8HTMLFrameElement::srcAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
47 String srcValue = toWebCoreStringWithNullCheck(value);
55 void V8HTMLFrameElement::locationAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
58 String locationValue = toWebCoreStringWithNullCheck(value);
  /external/webkit/WebCore/svg/
SVGFEMorphologyElement.cpp 52 const String& value = attr->value(); local
54 if (value == "erode")
56 else if (value == "dilate")
59 setIn1BaseValue(value);
62 if (parseNumberOptionalNumber(value, x, y)) {
  /external/webkit/WebKit/gtk/webkit/
webkitwebwindowfeatures.cpp 91 static void webkit_web_window_features_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec);
93 static void webkit_web_window_features_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec);
282 static void webkit_web_window_features_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec)
289 priv->x = g_value_get_int(value);
292 priv->y = g_value_get_int(value);
295 priv->width = g_value_get_int(value);
298 priv->height = g_value_get_int(value);
301 priv->toolbar_visible = g_value_get_boolean(value);
304 priv->statusbar_visible = g_value_get_boolean(value);
307 priv->scrollbar_visible = g_value_get_boolean(value);
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSDictionaryExtras.h 34 - (NSString *)_webkit_stringForKey:(id)key; // Returns nil if the value is not an NSString.
35 - (NSArray *)_webkit_arrayForKey:(id)key; // Returns nil if the value is not an NSArray.
43 - (void)_webkit_setInt:(int)value forKey:(id)key;
44 - (void)_webkit_setFloat:(float)value forKey:(id)key;
45 - (void)_webkit_setBool:(BOOL)value forKey:(id)key;
46 - (void)_webkit_setUnsignedLongLong:(unsigned long long)value forKey:(id)key;
  /external/webkit/WebKit/qt/tests/qwebframe/resources/
testiframe.html 45 <div id="content1">You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
46 You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
47 You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
48 You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
49 You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
50 You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.</div>
  /frameworks/base/awt/org/apache/harmony/awt/gl/color/
ICC_ProfileHelper.java 33 * Gets integer value from the byte array
36 * @return integer value
47 * Gets big endian integer value from the byte array
50 * @return integer value
61 * Gets short value from the byte array
64 * @return short value
  /frameworks/base/core/java/android/database/
Cursor.java 39 * The value is zero-based. When the row set is first returned the cursor
53 * on whether the value is off the front or end of the set, respectively.
209 * Returns the value of the requested column as a byte array.
214 * @return the value of that column as a byte array.
219 * Returns the value of the requested column as a String.
222 * the result of passing the column value to String.valueOf(x).
225 * @return the value of that column as a String.
240 * Returns the value of the requested column as a short.
243 * the result of passing the column value to Short.valueOf(x).
246 * @return the value of that column as a short
    [all...]
CursorWindow.java 125 * @param value
130 public boolean putBlob(byte[] value, int row, int col) {
133 return putBlob_native(value, row - mStartPos, col);
139 private native boolean putBlob_native(byte[] value, int row, int col);
143 * @param value
148 public boolean putString(String value, int row, int col) {
151 return putString_native(value, row - mStartPos, col);
157 private native boolean putString_native(String value, int row, int col);
161 * @param value
166 public boolean putLong(long value, int row, int col)
    [all...]
  /frameworks/base/core/java/com/google/android/mms/util/
AbstractCache.java 38 public boolean put(K key, V value) {
54 cacheEntry.value = value;
77 return cacheEntry.value;
94 return v != null ? v.value : null;
111 V value; field in class:AbstractCache.CacheEntry
  /frameworks/base/media/libdrm/mobile2/include/rights/
Asset.h 68 * Set digest value of DCF.
69 * @param value the DCF digest value.
71 void setDCFDigest(const string &value);
74 * Get the DCF digest value.
75 * @return the digest value of DCF.
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/
limits.h 19 /* Maximum value an `unsigned char' can hold. (Minimum is 0). */
50 /* Maximum value an `unsigned short int' can hold. (Minimum is 0). */
64 /* Maximum value an `unsigned int' can hold. (Minimum is 0). */
75 /* Maximum value an `unsigned long int' can hold. (Minimum is 0). */
86 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
98 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
limits.h 19 /* Maximum value an `unsigned char' can hold. (Minimum is 0). */
50 /* Maximum value an `unsigned short int' can hold. (Minimum is 0). */
64 /* Maximum value an `unsigned int' can hold. (Minimum is 0). */
75 /* Maximum value an `unsigned long int' can hold. (Minimum is 0). */
86 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
98 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/
limits.h 19 /* Maximum value an `unsigned char' can hold. (Minimum is 0). */
50 /* Maximum value an `unsigned short int' can hold. (Minimum is 0). */
64 /* Maximum value an `unsigned int' can hold. (Minimum is 0). */
75 /* Maximum value an `unsigned long int' can hold. (Minimum is 0). */
86 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
98 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
limits.h 19 /* Maximum value an `unsigned char' can hold. (Minimum is 0). */
50 /* Maximum value an `unsigned short int' can hold. (Minimum is 0). */
64 /* Maximum value an `unsigned int' can hold. (Minimum is 0). */
75 /* Maximum value an `unsigned long int' can hold. (Minimum is 0). */
86 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
98 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include-fixed/
limits.h 19 /* Maximum value an `unsigned char' can hold. (Minimum is 0). */
50 /* Maximum value an `unsigned short int' can hold. (Minimum is 0). */
64 /* Maximum value an `unsigned int' can hold. (Minimum is 0). */
75 /* Maximum value an `unsigned long int' can hold. (Minimum is 0). */
86 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
98 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 61 * to the given updated value if the current value {@code ==} the
62 * expected value. This method is guaranteed to be atomic with respect to
67 * @param expect the expected value
68 * @param update the new value
77 * to the given updated value if the current value {@code ==} the
78 * expected value. This method is guaranteed to be atomic with respect to
87 * @param expect the expected value
88 * @param update the new value
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java 130 return null != e ? e.value : null;
134 * Associates the specified value with the specified keys in this map
138 * @param value
141 public V put(E key1, K key2, V value) {
145 arr[index] = createEntry(0, null, null, value, null);
150 V oldValue = arr[index].value;
151 arr[index].value = value;
163 V oldValue = e.value;
164 e.value = value
298 V value; field in class:TwoKeyHashMap.Entry
381 Object value = entry.getValue(); local
    [all...]
  /external/bison/tests/
input.at 118 [[input.y:11.10-32: warning: unset value: $$
119 input.y:11.10-32: warning: unused value: $1
120 input.y:11.10-32: warning: unused value: $3
121 input.y:11.10-32: warning: unused value: $5
123 input.y:13.10-35: warning: unset value: $$
124 input.y:13.10-35: warning: unused value: $3
125 input.y:13.10-35: warning: unused value: $5
126 input.y:14.10-35: warning: unset value: $$
127 input.y:14.10-35: warning: unused value: $3
128 input.y:14.10-35: warning: unused value: $
    [all...]
  /external/icu4c/i18n/unicode/
utmscale.h 204 * Used in the JDK. Data is a Java <code>long</code> (<code>int64_t</code>). Value
212 * Used on Unix systems. Data is <code>int32_t</code> or <code>int64_t</code>. Value
220 * Used in IUC4C. Data is a <code>double</code>. Value
228 * Used in Windows for file times. Data is an <code>int64_t</code>. Value
236 * Used in the .NET framework's <code>System.DateTime</code> structure. Data is an <code>int64_t</code>. Value
244 * Used in older Macintosh systems. Data is <code>int32_t</code> or <code>int64_t</code>. Value
252 * Used in newer Macintosh systems. Data is a <code>double</code>. Value
260 * Used in Excel. Data is an <code>?unknown?</code>. Value
268 * Used in DB2. Data is an <code>?unknown?</code>. Value
276 * Data is a <code>long</code>. Value is microseconds since January 1, 1970
    [all...]
  /packages/experimental/procstatlog/
procstatlog.c 59 char *value; // text to be reported when it changes member in struct:data
70 // Set data->name and data->value to malloc'd strings with the
77 data->value = NULL;
85 data->value = NULL;
91 data->value = malloc(len + 1);
92 memcpy(data->value, buf, len);
93 data->value[len] = '\0';
96 // Read a name/value file and write data entries for each line.
99 // delimiter: used to split each line into name and value
130 // Line format: <sp>name<delim><sp>value
150 char *value = name_end + 1; local
201 char *value = name_end; local
    [all...]
  /frameworks/base/core/java/android/webkit/
CookieManager.java 131 String value; field in class:CookieManager.Cookie
155 // non-null, the cookies match. If one value is null and the other
157 boolean valuesMatch = !((value == null) ^ (in.value == null));
199 + "; value: " + value;
212 // assign different value for each cookie.
219 // If cookie2 has a null value, it should come later in
221 if (cookie2.value == null) {
224 if (cookie1.value != null)
930 String value = local
    [all...]
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
ByteBufferTest.java 1015 char value; local
1025 value = charBuffer.get();
1026 assertEquals(bytes2char(bytes, buf.order()), value); local
1036 value = charBuffer.get();
1037 assertEquals(bytes2char(bytes, buf.order()), value); local
1078 double value; local
1091 assertEquals(bytes2double(bytes, buf.order()), value, 0.00); local
1105 assertEquals(bytes2double(bytes, buf.order()), value, 0.00); local
1148 float value; local
1161 assertEquals(bytes2float(bytes, buf.order()), value, 0.00); local
1175 assertEquals(bytes2float(bytes, buf.order()), value, 0.00); local
1218 int value; local
1229 assertEquals(bytes2int(bytes, buf.order()), value); local
1240 assertEquals(bytes2int(bytes, buf.order()), value); local
1282 long value; local
1293 assertEquals(bytes2long(bytes, buf.order()), value); local
1304 assertEquals(bytes2long(bytes, buf.order()), value); local
1346 short value; local
1357 assertEquals(bytes2short(bytes, buf.order()), value); local
1368 assertEquals(bytes2short(bytes, buf.order()), value); local
1410 char value; local
1422 assertEquals(bytes2char(bytes, buf.order()), value); local
1444 char value; local
1455 assertEquals(bytes2char(bytes, buf.order()), value); local
1494 char value = 0; local
1545 char value = 0; local
1566 buf.putChar(buf.limit() - nbytes + 1, value); local
1595 double value; local
1609 assertEquals(bytes2double(bytes, buf.order()), value, 0.00); local
1632 double value; local
1645 assertEquals(bytes2double(bytes, buf.order()), value, 0.00); local
1691 double value = 0; local
1751 double value = 0; local
1772 buf.putDouble(buf.limit() - nbytes + 1, value); local
1801 float value; local
1815 assertEquals(bytes2float(bytes, buf.order()), value, 0.00); local
1838 float value; local
1851 assertEquals(bytes2float(bytes, buf.order()), value, 0.00); local
1891 float value = 0; local
1951 float value = 0; local
1972 buf.putFloat(buf.limit() - nbytes + 1, value); local
2001 int value; local
2013 assertEquals(bytes2int(bytes, buf.order()), value); local
2035 int value; local
2046 assertEquals(bytes2int(bytes, buf.order()), value); local
2090 int value = 0; local
2141 int value = 0; local
2162 buf.putInt(buf.limit() - nbytes + 1, value); local
2185 long value; local
2197 assertEquals(bytes2long(bytes, buf.order()), value); local
2219 long value; local
2230 assertEquals(bytes2long(bytes, buf.order()), value); local
2269 long value = 0; local
2320 long value = 0; local
2341 buf.putLong(buf.limit() - nbytes + 1, value); local
2364 short value; local
2376 assertEquals(bytes2short(bytes, buf.order()), value); local
2398 short value; local
2409 assertEquals(bytes2short(bytes, buf.order()), value); local
2448 short value = 0; local
2499 short value = 0; local
2520 buf.putShort(buf.limit() - nbytes + 1, value); local
    [all...]

Completed in 1492 milliseconds

<<41424344454647484950>>