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

<<41424344454647484950>>

  /external/webkit/JavaScriptCore/runtime/
JSWrapperObject.h 59 inline void JSWrapperObject::setInternalValue(JSValue value)
61 ASSERT(value);
62 ASSERT(!value.isObject());
63 m_internalValue = value;
64 putAnonymousValue(0, value);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.7.2.js 30 The value of the Boolean literal true is a value of the
33 The value of the Boolean literal false is a value of the
70 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/webkit/WebCore/bindings/js/
JSHTMLSelectElementCustom.cpp 49 void selectIndexSetter(HTMLSelectElement* select, JSC::ExecState* exec, unsigned index, JSC::JSValue value)
51 if (value.isUndefinedOrNull())
55 HTMLOptionElement* option = toHTMLOptionElement(value);
64 void JSHTMLSelectElement::indexSetter(JSC::ExecState* exec, unsigned index, JSC::JSValue value)
66 selectIndexSetter(static_cast<HTMLSelectElement*>(impl()), exec, index, value);
  /external/webkit/WebCore/css/
CSSQuirkPrimitiveValue.h 28 // This value is used to handle quirky margins in reflow roots (body, td, and th) like WinIE.
29 // The basic idea is that a stylesheet can use the value __qem (for quirky em) instead of em.
30 // When the quirky value is used, if you're in quirks mode, the margin will collapse away
34 static PassRefPtr<CSSQuirkPrimitiveValue> create(double value, UnitTypes type)
36 return adoptRef(new CSSQuirkPrimitiveValue(value, type));
CSSParser.cpp 280 setupParser("@-webkit-value{", string, "} ");
317 CSSValue* value = parser.m_parsedProperties[0]->value(); local
318 if (value->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) {
319 CSSPrimitiveValue* primitiveValue = static_cast<CSSPrimitiveValue*>(value);
422 void CSSParser::addProperty(int propId, PassRefPtr<CSSValue> value, bool important)
424 auto_ptr<CSSProperty> prop(new CSSProperty(propId, value, important, m_currentShorthand, m_implicitShorthand));
463 bool CSSParser::validUnit(CSSParserValue* value, Units unitflags, bool strict)
466 switch (value->unit) {
469 if (!b && ((unitflags & (FLength | FAngle | FTime)) && (value->fValue == 0 || !strict)))
566 CSSParserValue* value = m_valueList->valueAt(i); local
2315 CSSParserValue* value = m_valueList->current(); local
2358 CSSParserValue* value = m_valueList->current(); local
2404 CSSParserValue* value = m_valueList->current(); local
2448 RefPtr<CSSValue> value; local
2612 CSSParserValue* value = m_valueList->current(); local
2620 CSSParserValue* value = m_valueList->current(); local
2628 CSSParserValue* value = m_valueList->current(); local
2636 CSSParserValue* value = m_valueList->current(); local
2646 CSSParserValue* value = m_valueList->current(); local
2659 CSSParserValue* value = m_valueList->current(); local
2667 CSSParserValue* value = m_valueList->current(); local
2712 CSSParserValue* value = m_valueList->current(); local
2744 RefPtr<CSSValue> value; local
2859 CSSParserValue* value = m_valueList->current(); local
3036 CSSParserValue* value = m_valueList->current(); local
3087 CSSParserValue *value = m_valueList->current(); local
3196 CSSParserValue* value = m_valueList->current(); local
4082 RefPtr<CSSValue> value; local
4145 CSSParserValue* value = m_valueList->valueAt(i); local
5110 RefPtr<CSSValue> value = property->m_value.release(); local
    [all...]
  /external/webkit/WebCore/rendering/style/
LineClampValue.h 40 LineClampValue(int value, ELineClampType type)
42 , m_value(value)
46 int value() const { return m_value; } function in class:WebCore::LineClampValue
54 return value() == o.value() && isPercentage() == o.isPercentage();
  /external/webkit/WebCore/svg/
SVGLength.cpp 126 float SVGLength::value(const SVGElement* context) const function in class:WebCore::SVGLength
177 void SVGLength::setValue(float value)
184 m_valueInSpecifiedUnits = value;
192 m_valueInSpecifiedUnits = value;
195 m_valueInSpecifiedUnits = value * 2.54f / cssPixelsPerInch;
198 m_valueInSpecifiedUnits = value * 25.4f / cssPixelsPerInch;
201 m_valueInSpecifiedUnits = value / cssPixelsPerInch;
204 m_valueInSpecifiedUnits = value * 72.0f / cssPixelsPerInch;
207 m_valueInSpecifiedUnits = value / 6.0f * cssPixelsPerInch;
214 void SVGLength::setValueInSpecifiedUnits(float value)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ReverseGeocoderTask.java 50 String value = MenuHelper.EMPTY_STRING; local
59 value = sb.toString();
61 value = MenuHelper.EMPTY_STRING;
64 value = MenuHelper.EMPTY_STRING;
67 return value;
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTest.java 23 * The systemBitrate value.
32 * The systemCaptions value.
41 * The systemLanguage value.
65 * The value of the systemOverdubOrSubtitle attribute.
74 * The value of the systemAudioDesc attribute.
  /external/dbus/dbus/
dbus-address.c 232 * Returns a value from a key of an entry. For example,
234 * for the key "host" you would get the value "example.com"
236 * The returned value is already unescaped.
240 * @returns the key value. This string must not be freed.
348 * method:key=value,key=value;method:key=value
432 "'=' character not found or has no value following it");
438 DBusString *value; local
448 value = dbus_new0 (DBusString, 1)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentQueryMapTest.java 55 DummyProvider.NAME, DummyProvider.VALUE};
69 values0.put(DummyProvider.VALUE, VALUE0);
74 values1.put(DummyProvider.VALUE, VALUE1);
108 new ContentQueryMap(mCursor, DummyProvider.VALUE, false, new Handler());
141 assertEquals(VALUE0, rows.get(NAME0).getAsString(DummyProvider.VALUE));
143 assertEquals(VALUE1, rows.get(NAME1).getAsString(DummyProvider.VALUE));
173 assertEquals(VALUE0, contentValues.getAsString(DummyProvider.VALUE));
177 assertEquals(VALUE1, contentValues.getAsString(DummyProvider.VALUE));
185 values.put(DummyProvider.VALUE, VALUE2);
195 assertEquals(VALUE1, contentValues.getAsString(DummyProvider.VALUE));
    [all...]
  /external/bluetooth/bluez/common/
textfile.c 141 static inline int write_key_value(int fd, const char *key, const char *value)
147 size = strlen(key) + strlen(value) + 2;
153 sprintf(str, "%s %s\n", key, value);
163 static int write_key(const char *pathname, const char *key, const char *value, int icase)
187 if (value) {
189 err = write_key_value(fd, key, value);
204 if (value) {
207 err = write_key_value(fd, key, value);
220 if (value && ((ssize_t) strlen(value) == end - off - len - 1) &
384 char *map, *off, *end, *key, *value; local
    [all...]
  /frameworks/base/core/java/android/net/http/
Headers.java 377 public void setContentLength(long value) {
378 this.contentLength = value;
381 public void setContentType(String value) {
382 mHeaders[IDX_CONTENT_TYPE] = value;
385 public void setContentEncoding(String value) {
386 mHeaders[IDX_CONTENT_ENCODING] = value;
389 public void setLocation(String value) {
390 mHeaders[IDX_LOCATION] = value;
393 public void setWwwAuthenticate(String value) {
394 mHeaders[IDX_WWW_AUTHENTICATE] = value;
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
GcEventContainer.java 81 public boolean testValue(int index, Object value, CompareMethod compareMethod)
85 if ((value instanceof String) == false) {
88 } else if ((value instanceof Long) == false) {
95 return processId.equals(value);
97 return getValueAsLong(index) == ((Long)value).longValue();
100 return getValueAsLong(index) <= ((Long)value).longValue();
102 return getValueAsLong(index) < ((Long)value).longValue();
104 return getValueAsLong(index) >= ((Long)value).longValue();
106 return getValueAsLong(index) > ((Long)value).longValue();
108 return (getValueAsLong(index) & ((Long)value).longValue()) != 0
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
HashMap.java 43 * the value of an entry are not structural changes.
113 * The value of this field is generally .75 * capacity, except when
216 * The returned value will be between 0 and MAXIMUM_CAPACITY (inclusive).
287 * Returns the value of the mapping with the specified key.
291 * @return the value of the mapping with the specified key, or {@code null}
297 return e == null ? null : e.value;
310 return e.value;
346 * Returns whether this map contains the specified value.
348 * @param value
349 * the value to search for
728 V value; field in class:HashMap.HashMapEntry
    [all...]
Hashtable.java 93 * The value of this field is generally .75 * capacity, except when
193 * The returned value will be between 0 and MAXIMUM_CAPACITY (inclusive).
203 * Returns a new {@code Hashtable} with the same key/value pairs, capacity
234 * Returns true if this {@code Hashtable} has no key/value pairs.
236 * @return {@code true} if this {@code Hashtable} has no key/value pairs,
245 * Returns the number of key/value pairs in this {@code Hashtable}.
247 * @return the number of key/value pairs in this {@code Hashtable}.
256 * Returns the value associated with the specified key in this
260 * the key of the value returned.
261 * @return the value associated with the specified key, or {@code null} i
666 V value; field in class:Hashtable.HashtableEntry
860 V value = e.getValue(); local
894 V value = entry.getValue(); local
    [all...]
  /dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
BigDecimalConvertTest.java 43 * Double value of a negative BigDecimal
55 assertEquals("incorrect value", result, aNumber.doubleValue(), 0);
59 * Double value of a positive BigDecimal
71 assertEquals("incorrect value", result, aNumber.doubleValue(), 0);
75 * Double value of a large positive BigDecimal
87 assertEquals("incorrect value", result, aNumber.doubleValue(), 0);
91 * Double value of a large negative BigDecimal
103 assertEquals("incorrect value", result, aNumber.doubleValue(), 0);
107 * Double value of a small negative BigDecimal
120 assertTrue("incorrect value", Double.doubleToLongBits(result) == minusZero)
    [all...]
  /external/icu4c/test/cintltst/
trie2test.c 33 uint32_t value; member in struct:SetRange
39 * value is set from the previous boundary's limit to before
47 uint32_t value; member in struct:CheckRange
62 *pErrorValue=checkRanges[i++].value;
67 *pInitialValue=checkRanges[i++].value;
74 /* utrie2_enum() callback, modifies a value */
76 testEnumValue(const void *context, uint32_t value) {
77 return value^0x5555;
82 testEnumRange(const void *context, UChar32 start, UChar32 end, uint32_t value) {
87 value^=0x5555
114 uint32_t value, value2; local
277 uint32_t value; local
376 uint32_t value, bytes; local
489 uint32_t value, value2; local
733 uint32_t value, value2; local
802 uint32_t value; local
1289 uint32_t value; local
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
DocumentBuilderSetting.java 28 * property value.
30 private final boolean value; field in class:DocumentBuilderSetting
33 * strategy used to set or get property value.
203 * @param value property value
208 boolean value,
214 this.value = value;
236 * Determines current value of setting.
241 return strategy.hasSetting(factory) == value;
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
CaseMapper.java 36 * this class should be changed so that you instantiate it with the String and its value,
44 * if nothing changes. We need 'value', 'offset', and 'count' because they're not otherwise
47 public static String toLowerCase(Locale locale, String s, char[] value, int offset, int count) {
54 char ch = value[i];
58 } else if (turkishOrAzeri && ch == LATIN_CAPITAL_I && !followedBy(value, offset, count, i, COMBINING_DOT_ABOVE)) {
60 } else if (turkishOrAzeri && ch == COMBINING_DOT_ABOVE && precededBy(value, offset, count, i, LATIN_CAPITAL_I)) {
62 } else if (ch == GREEK_CAPITAL_SIGMA && isFinalSigma(value, offset, count, i)) {
70 System.arraycopy(value, offset, newValue, 0, newCount);
79 private static boolean followedBy(char[] value, int offset, int count, int index, char ch) {
80 return index + 1 < offset + count && value[index + 1] == ch
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
PlatformAddressFactory.java 66 private static PlatformAddress make(int value, long size) {
67 if (value == 0) {
71 return new PlatformAddress(value, size);
76 public synchronized static PlatformAddress on(int value, long size) {
77 if (value == 0) {
80 int idx = value >> 5;
85 new PlatformAddress(value, size);
87 if (cachedObj.osaddr == value && cachedObj.size == size) {
93 new PlatformAddress(value, size);
97 public static PlatformAddress on(int value) {
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
DocumentBuilderSetting.java 28 * property value.
30 private final boolean value; field in class:DocumentBuilderSetting
33 * strategy used to set or get property value.
203 * @param value property value
208 boolean value,
214 this.value = value;
236 * Determines current value of setting.
241 return strategy.hasSetting(factory) == value;
    [all...]
  /dalvik/vm/
AtomicCache.h 17 * Mutex-free cache for key1+key2=value.
30 * arguments to "instanceof") and one result (e.g. a boolean value).
37 u4 value; member in struct:AtomicCacheEntry
86 * Define a function ATOMIC_CACHE_CALC that returns a 32-bit value. This
87 * will be invoked when we need to compute the value.
89 * Returns the value.
100 u4 value; \
111 * The fields match. Get the value, then read the version a \
116 value = pEntry->value; /* must grab before next check */
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
macros.sgml 89 Defines the %TRUE value for the #gboolean type.
96 Defines the %FALSE value for the #gboolean type.
113 @a: a numeric value.
114 @b: a numeric value.
123 @a: a numeric value.
124 @b: a numeric value.
130 Calculates the absolute value of @a.
131 The absolute value is simply the number with any negative sign taken away.
145 @a: a numeric value.
146 @Returns: the absolute value of @a
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 83 int value; local
92 if ((value = __t2q_get_rate(text,0)) == RATE_ERROR) return -1;
93 if (a) a->max_pcr = value;
94 if (b) b->max_pcr = value;
97 if ((value = __t2q_get_rate(text,0)) == RATE_ERROR) return -1;
98 if (a) a->pcr = value;
99 if (b) b->pcr = value;
102 if ((value = __t2q_get_rate(text,1)) == RATE_ERROR) return -1;
103 if (value == ATM_MAX_PCR) return -1;
104 if (a) a->min_pcr = value;
    [all...]

Completed in 1310 milliseconds

<<41424344454647484950>>