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

<<41424344454647484950>>

  /external/qemu/distrib/sdl-1.2.12/src/thread/os2/
SDL_syssem.c 38 Uint32 value; member in struct:SDL_semaphore
60 sem->value = initial_value;
98 } else if (sem->value) {
99 sem->value--;
116 if (sem->value)
118 sem->value--;
138 if (sem->value) {
139 sem->value--;
175 return sem->value;
188 sem->value++
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.1.js 25 15.6.1.1 Boolean( value )
27 Description: Boolean( value ) should return a Boolean value
29 Boolean.toBooleanValue( value)
38 VALUE Argument passed to the Boolean function
39 TYPE typeof VALUE (not used, but helpful in understanding
41 E_RETURN Expected return value of Boolean( VALUE )
46 var TITLE = "The Boolean constructor called as a function: Boolean( value ) and Boolean()";
92 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8EventListenerList.h 46 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, bool isAttribute)
49 if (!value->IsObject())
53 return doFindWrapper(v8::Local<v8::Object>::Cast(value), wrapperProperty);
57 static PassRefPtr<V8EventListener> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute);
70 v8::Local<v8::Value> listener = object->GetHiddenValue(wrapperProperty);
83 PassRefPtr<V8EventListener> V8EventListenerList::findOrCreateWrapper(v8::Local<v8::Value> value, bool isAttribute)
86 if (!value->IsObject())
89 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value);
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8SQLTransactionCustom.cpp 49 v8::Handle<v8::Value> V8SQLTransaction::executeSqlCallback(const v8::Arguments& args)
64 v8::Local<v8::Value> lengthGetter;
79 v8::Local<v8::Value> value; local
82 value = sqlArgsObject->Get(key);
87 if (value.IsEmpty() || value->IsNull())
89 else if (value->IsNumber())
90 sqlValues.append(SQLValue(value->NumberValue()));
92 sqlValues.append(SQLValue(toWebCoreString(value)));
    [all...]
  /external/webkit/WebCore/html/
HTMLMetaElement.cpp 52 m_equiv = attr->value();
55 m_content = attr->value();
106 void HTMLMetaElement::setContent(const String& value)
108 setAttribute(contentAttr, value);
116 void HTMLMetaElement::setHttpEquiv(const String& value)
118 setAttribute(http_equivAttr, value);
126 void HTMLMetaElement::setName(const String& value)
128 setAttribute(nameAttr, value);
136 void HTMLMetaElement::setScheme(const String &value)
138 setAttribute(schemeAttr, value);
    [all...]
  /external/webkit/WebCore/wml/
WMLElement.cpp 69 if (equalIgnoringCase(attr->value(), "middle"))
72 addCSSProperty(attr, CSSPropertyTextAlign, attr->value());
74 String indexstring = attr->value();
100 String WMLElement::parseValueSubstitutingVariableReferences(const AtomicString& value, WMLErrorCode defaultErrorCode) const
103 if (!containsVariableReference(value, isValid))
104 return value;
111 return substituteVariableReferences(value, document());
114 String WMLElement::parseValueForbiddingVariableReferences(const AtomicString& value) const
117 if (containsVariableReference(value, isValid)) {
122 return value;
    [all...]
  /external/webkit/WebCore/xml/
XPathValue.cpp 44 const Value::AdoptTag Value::adopt = {};
46 const NodeSet& Value::toNodeSet() const
59 NodeSet& Value::modifiableNodeSet()
71 bool Value::toBoolean() const
87 double Value::toNumber() const
91 return Value(toString()).toNumber();
106 double value = str.toDouble(&canConvert); local
108 return value;
118 String Value::toString() cons
    [all...]
  /frameworks/base/core/java/android/database/
AbstractWindowedCursor.java 73 Number value = (Number)getUpdatedField(columnIndex); local
74 return value.shortValue();
88 Number value = (Number)getUpdatedField(columnIndex); local
89 return value.intValue();
103 Number value = (Number)getUpdatedField(columnIndex); local
104 return value.longValue();
118 Number value = (Number)getUpdatedField(columnIndex); local
119 return value.floatValue();
133 Number value = (Number)getUpdatedField(columnIndex); local
134 return value.doubleValue()
    [all...]
  /frameworks/base/include/media/stagefright/
MetaData.h 92 bool setCString(uint32_t key, const char *value);
93 bool setInt32(uint32_t key, int32_t value);
94 bool setInt64(uint32_t key, int64_t value);
95 bool setFloat(uint32_t key, float value);
96 bool setPointer(uint32_t key, void *value);
98 bool findCString(uint32_t key, const char **value);
99 bool findInt32(uint32_t key, int32_t *value);
100 bool findInt64(uint32_t key, int64_t *value);
101 bool findFloat(uint32_t key, float *value);
102 bool findPointer(uint32_t key, void **value);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/
RegionQualifier.java 55 * Returns the folder name segment for the given value. This is equivalent to calling
57 * @param value the value of the qualifier, as returned by {@link #getValue()}.
59 public static String getFolderSegment(String value) {
60 if (value != null) {
61 String segment = "r" + value.toUpperCase(); //$NON-NLS-1$
74 public RegionQualifier(String value) {
75 mValue = value;
107 public boolean checkAndSet(String value, FolderConfiguration config) {
108 RegionQualifier qualifier = getQualifier(value);
    [all...]
ResourceQualifier.java 46 * Returns whether the qualifier has a valid filter value.
51 * Check if the value is valid for this qualifier, and if so sets the value
53 * @param value The value to check and set. Must not be null.
54 * @param config The folder configuration to receive the value. Must not be null.
55 * @return true if the value was valid and was set.
57 public abstract boolean checkAndSet(String value, FolderConfiguration config);
82 * @param reference The reference qualifier value for which the match is.
109 * Returns a hash code value for the object
    [all...]
  /system/core/include/cutils/
hashmap.h 56 * Puts value for the given key in the map. Returns pre-existing value if
62 void* hashmapPut(Hashmap* map, void* key, void* value);
65 * Gets a value from the map. Returns NULL if no entry for the given key is
66 * found or if the value itself is NULL.
76 * Gets the value for a key. If a value is not found, this function gets a
77 * value and creates an entry using the given callback.
86 * Removes an entry from the map. Returns the removed value or NULL if no
101 bool (*callback)(void* key, void* value, void* context)
    [all...]
  /external/qemu/elff/
dwarf_defs.h 103 /* Describes a value, obtained from the mapped .debug_info section
107 /* Unites all possible data types for the value.
125 /* Value type (defines which variable in the union abowe
126 * contains the value).
130 /* Number of bytes that encode this value in .debug_info section
171 /* Pulls actual value, encoded with this LEB128 block.
173 * value - Upon return will contain value, encoded with this LEB128 block.
175 * integer, otherwise, caller expects an unsigned integer value to be
178 void get_common(Dwarf_Value* value, bool sign) const {
655 const Dwarf_Value* value() const { function in class:DIEAttrib
    [all...]
  /external/webkit/WebCore/css/
CSSMutableStyleDeclaration.cpp 88 if (properties[i]->value()->isVariableDependentValue())
97 // don't attach it to the same node, just leave the current m_node value
105 RefPtr<CSSValue> value = getPropertyCSSValue(propertyID); local
106 if (value)
107 return value->cssText();
148 String value = getCommonValue(properties[i], 4); local
149 if (!value.isNull()) {
152 res += value;
250 RefPtr<CSSValue> value = getPropertyCSSValue(CSSPropertyMarkerStart); local
251 if (value)
313 RefPtr<CSSValue> value; local
390 RefPtr<CSSValue> value = getPropertyCSSValue(properties[i]); local
408 RefPtr<CSSValue> value = getPropertyCSSValue(properties[i]); local
    [all...]
  /external/dbus/dbus/
dbus-marshal-basic.c 47 pack_2_octets (dbus_uint16_t value,
54 *((dbus_uint16_t*)(data)) = DBUS_UINT16_TO_LE (value);
56 *((dbus_uint16_t*)(data)) = DBUS_UINT16_TO_BE (value);
60 pack_4_octets (dbus_uint32_t value,
67 *((dbus_uint32_t*)(data)) = DBUS_UINT32_TO_LE (value);
69 *((dbus_uint32_t*)(data)) = DBUS_UINT32_TO_BE (value);
73 pack_8_octets (DBusBasicValue value,
81 *((dbus_uint64_t*)(data)) = DBUS_UINT64_TO_LE (value.u64);
83 *((dbus_uint64_t*)(data)) = DBUS_UINT64_TO_BE (value.u64);
85 *(DBus8ByteStruct*)data = value.u64
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 26 /** {@code non-null;} the string value */
32 * @param string {@code non-null;} the string value
45 * @param string {@code non-null;} the string value
102 * Gets the string value.
104 * @return {@code non-null;} the string value
  /dalvik/libcore/prefs/src/test/resources/prefs/java/util/prefs/
userprefs-badencoding.xml 37 <entry key="prefskey" value="newvalue" />
38 <entry key="prefskey3" value="newvalue3" />
44 <entry key="key2" value="value2" />
48 <entry key="key3" value="value3" />
52 <entry key="key4" value="value4" />
userprefs-higherversion.xml 37 <entry key="prefskey" value="newvalue" />
38 <entry key="prefskey3" value="newvalue3" />
44 <entry key="key2" value="value2" />
48 <entry key="key3" value="value3" />
52 <entry key="key4" value="value4" />
  /dalvik/libcore/security/src/main/java/java/security/spec/
RSAKeyGenParameterSpec.java 28 * The value of the public exponent {@code F0} = 3.
33 * The value of the public exponent {@code F4} = 65537.
49 * the value of the public exponent.
66 * Returns the value of the public exponent.
68 * @return the value of the public exponent.
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
AnnotationTest.java 43 assertNotNull(new Annotation("value"));
58 a = new Annotation("value");
59 assertEquals("value", a.getValue());
74 "java.text.Annotation[value=HelloWorld]", ant.toString());
76 assertNotNull(new Annotation("value").toString());
  /external/guava/src/com/google/common/collect/
ExplicitOrdering.java 43 private int rank(T value) {
44 Integer rank = rankMap.get(value);
46 throw new IncomparableValueException(value);
55 for (T value : valuesInOrder) {
56 builder.put(value, rank++);
  /external/icu4c/test/intltest/
fldset.h 24 * one of a particular set of enum values. Each integer value (int32_t) is optional and
34 * @param whichEnum which enumaration value goes with this set. Will be used to calculate string
50 * a tested operation, and 'other' is the predefined expected value.
70 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
71 * the specified FieldsSet's value for NAME1 will be copied into this.
80 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
81 * the specified FieldsSet's value for NAME1 will be copied into this.
93 * Base implementation is to lookup the enum value using udbg_* utilities, or else as an integer if
100 * @param substr the string in question (value side)
111 * @param substr the string in question (value side
    [all...]
  /external/opencore/oscl/unit_test/src/
stringable.h 34 return "<value not stringable>";
38 _STRING valueToString(const bool & value)
40 return (true == value) ? "true" : "false";
44 _STRING valueToString(const int & value)
47 sprintf(buffer, "%d", value);
  /external/qemu/android/
config.h 17 ** A configuration file is loaded as a simplre tree of (key,value)
28 const char* value; member in struct:AConfig
41 extern AConfig* aconfig_node(const char *name, const char *value);
47 extern void aconfig_set(AConfig *root, const char *name, const char *value);
50 /* look up a child by name and return its value, eventually converted
  /external/stlport/src/
sparc_atomic64.s 5 ! int _STLP_atomic_exchange (void *pvalue, int value)
14 ldx [%o0], %o2 ! Set the current value
15 mov %o1, %o3 ! Set the new value
22 mov %o2, %o0 ! Set the new value
41 mov %o1, %o0 ! Set the return value

Completed in 331 milliseconds

<<41424344454647484950>>