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

<<51525354555657585960>>

  /external/webkit/WebKit/chromium/src/
WebPasswordFormData.cpp 67 if (fields->passwords[0]->value() == fields->passwords[1]->value())
77 if (fields->passwords[0]->value() == fields->passwords[1]->value()
78 && fields->passwords[0]->value() == fields->passwords[2]->value()) {
81 } else if (fields->passwords[0]->value() == fields->passwords[1]->value()) {
85 } else if (fields->passwords[1]->value() == fields->passwords[2]->value()) {
    [all...]
  /frameworks/base/core/java/com/android/internal/http/multipart/
StringPart.java 67 /** The String value of this part. */
68 private String value; field in class:StringPart
74 * @param value the string to post
78 public StringPart(String name, String value, String charset) {
86 if (value == null) {
87 throw new IllegalArgumentException("Value may not be null");
89 if (value.indexOf(0) != -1) {
93 this.value = value;
100 * @param value the string to pos
    [all...]
  /dalvik/libcore/suncompat/src/main/java/sun/misc/
Unsafe.java 144 * @param expectedValue expected value of the field
145 * @param newValue new value to store in the field if the contents are
147 * @return <code>true</code> if the new value was in fact stored, and
159 * @param expectedValue expected value of the field
160 * @param newValue new value to store in the field if the contents are
162 * @return <code>true</code> if the new value was in fact stored, and
174 * @param expectedValue expected value of the field
175 * @param newValue new value to store in the field if the contents are
177 * @return <code>true</code> if the new value was in fact stored, and
189 * @return the retrieved value
    [all...]
  /external/icu4c/tools/genrb/
rle.c 39 appendEncodedByte(uint16_t* buffer, uint16_t* buffLimit, uint8_t value, uint8_t state[],UErrorCode* status) {
44 uint16_t c = (uint16_t) ((state[1] << 8) | (((int32_t) value) & 0xFF));
55 state[1] = value;
64 encodeRunByte(uint16_t* buffer,uint16_t* bufLimit, uint8_t value, int32_t length, uint8_t state[], UErrorCode* status) {
71 if (value == ESCAPE_BYTE) {
74 buffer = appendEncodedByte(buffer,bufLimit, value, state, status);
79 if (value == ESCAPE_BYTE){
82 buffer = appendEncodedByte(buffer,bufLimit, value, state, status);
87 buffer = appendEncodedByte(buffer,bufLimit, value, state, status); /* Don't need to escape this value*/
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 63 v8::Local<v8::Value> marker = info.Holder()->GetInternalField(V8HTMLDocument::markerIndex);
68 v8::Handle<v8::Value> V8HTMLDocument::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
73 // Special case for document.all. If the value in the shadow
75 // been temporarily shadowed and we return the value.
79 v8::Local<v8::Value> marker = info.Holder()->GetInternalField(V8HTMLDocument::markerIndex);
80 v8::Local<v8::Value> value = info.Holder()->GetInternalField(V8HTMLDocument::shadowIndex); local
81 if (marker != value)
82 return value;
89 return v8::Handle<v8::Value>();
    [all...]
  /external/webkit/WebCore/html/
HTMLBodyElement.cpp 93 String url = deprecatedParseURL(attr->value());
97 addCSSLength(attr, CSSPropertyMarginRight, attr->value());
98 addCSSLength(attr, CSSPropertyMarginLeft, attr->value());
100 addCSSLength(attr, CSSPropertyMarginBottom, attr->value());
101 addCSSLength(attr, CSSPropertyMarginTop, attr->value());
103 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value());
105 addCSSColor(attr, CSSPropertyColor, attr->value());
107 if (equalIgnoringCase(attr->value(), "fixed"))
122 m_linkDecl->setProperty(CSSPropertyColor, attr->value(), false, false);
223 void HTMLBodyElement::setALink(const String& value)
    [all...]
  /external/webkit/WebCore/svg/
SVGFontFaceElement.cpp 117 m_styleDeclaration->setProperty(propId, attr->value(), false);
128 const AtomicString& value = getAttribute(units_per_emAttr); local
129 if (value.isEmpty())
132 return static_cast<unsigned>(ceilf(value.toFloat()));
147 // If the attribute is not specified, the effect is as if a value of "0" were specified.
158 // If the attribute is not specified, the effect is as if a value of "0" were specified.
180 // were set to half of the effective value of attribute horiz-adv-x.
181 const AtomicString& value = m_fontElement->getAttribute(vert_origin_xAttr); local
182 if (value.isEmpty())
185 return value.toFloat()
196 const AtomicString& value = m_fontElement->getAttribute(vert_origin_yAttr); local
210 const AtomicString& value = m_fontElement->getAttribute(vert_adv_yAttr); local
    [all...]
  /frameworks/base/libs/audioflinger/
A2dpAudioInterface.cpp 132 String8 value; local
139 if (param.get(key, value) == NO_ERROR) {
140 mBluetoothEnabled = (value == "true");
147 if (param.get(key, value) == NO_ERROR) {
148 mSuspended = (value == "true");
169 String8 value; local
173 if (param.get(key, value) == NO_ERROR) {
174 value = mBluetoothEnabled ? "true" : "false";
175 a2dpParam.add(key, value);
179 if (param.get(key, value) == NO_ERROR)
348 String8 value; local
387 String8 value; local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaMetadataRetrieverTest.java 305 String value = null; local
306 Log.v(TAG, (value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_CD_TRACK_NUMBER)) == null? "not found": value);
307 Log.v(TAG, (value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION)) == null? "not found": value);
308 Log.v(TAG, (value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_NUM_TRACKS)) == null? "not found": value);
309 Log.v(TAG, (value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ALBUM)) == null? "not found": value);
310 Log.v(TAG, (value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ARTIST)) == null? "not found": val (…)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/Inc/
TI_AdapterSEC.h 48 Return: TI_RESULT_OK on success. Any other value indicates an error.
67 Return: TI_RESULT_OK on success. Any other value indicates an error.
81 Return: TI_RESULT_OK on success. Any other value indicates an error.
93 uEAPType - Contains value of current EAP type from enumeration
104 Return: TI_RESULT_OK on success. Any other value indicates an error.
117 puEAPType - Pointer to a OS_802_11_EAP_TYPES value that contains
119 Return: TI_RESULT_OK on success. Any other value indicates an error.
130 uEAPType - Contains value of current EAP type from enumeration
132 Return: TI_RESULT_OK on success. Any other value indicates an error.
147 uEncryptType - Contains value of current encrypt type from enumeration
    [all...]
  /external/opencore/oscl/oscl/osclbase/src/
oscl_time.h 83 //! The NTPTime class represents a time value as the number of seconds since 0h (UTC) Jan. 1, 1900
87 A single 64 bit value is used to represent the time. This value represents the number of seconds
90 For example a binary value of 00000000 00000000 00000000 00000011 10000000 00000000 00000000 00000000
116 This constructor creates an NTPTime value representing the same absolute time as the TimeValue parameter.
121 //! Construct a NTPTime instance from a uint64 value.
122 /*! \param value A 64 bit integer argument which is used as the ntp 32.32 fractional representation.*/
123 OSCL_COND_IMPORT_REF NTPTime(const uint64 value);
131 /*! \param newval A 64 bit value which represents the 32.32 fractional representation of the ntp time. */
134 //! The += operator is used to add a 64 bit 32.32 value to an existing NTPTime value
    [all...]
  /external/skia/src/xml/
SkDOM.cpp 32 const char* name, *value; local
34 while ((name = iter.next(&value)) != NULL)
35 if (this->addAttribute(name, value))
181 const char* SkDOM::AttrIter::next(const char** value)
188 if (value)
189 *value = fAttr->fValue;
260 virtual bool onAddAttribute(const char name[], const char value[])
264 attr->fValue = dupstr(fAlloc, value);
326 const char* value; local
327 while ((name = iter.next(&value)) != NULL
409 int32_t value; local
416 SkScalar value; local
423 uint32_t value; local
430 bool value; local
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackObjectFunctions.h 44 inline JSCallbackObject<Base>* JSCallbackObject<Base>::asCallbackObject(JSValue value)
46 ASSERT(asObject(value)->inherits(&info));
47 return static_cast<JSCallbackObject*>(asObject(value));
130 JSValueRef value; local
133 value = getProperty(ctx, thisRef, propertyNameRef.get(), &exception);
140 if (value) {
141 slot.setValue(toJS(exec, value));
175 // Ideally we should return an access descriptor, but returning a value descriptor is better than nothing.
176 JSValue value = slot.getValue(exec, propertyName); local
178 descriptor.setValue(value);
453 JSValueRef value; local
480 JSValueRef value; local
533 JSValueRef value; local
587 JSValueRef value; local
    [all...]
  /external/webkit/WebCore/wml/
WMLSelectElement.cpp 116 bool WMLSelectElement::saveFormControlState(String& value) const
118 return SelectElement::saveFormControlState(m_data, this, value);
273 // then the default option index is the validated value of that variable.
282 // then the default option index is the validated attribute value.
288 // and the 'name' ttribute names a variable that is set, then for each value in the 'name'
289 // variable that is present as a value in the select's option elements, the index of the
290 // first option element containing that value is added to the default index if that
299 String value = parseValueSubstitutingVariableReferences(getAttribute(HTMLNames::valueAttr)); local
301 // Spec: If the default option index is empty and the 'value' attribute is specified then
302 // for each value in the 'value' attribute that is present as a value in the select'
461 String value = *it; local
533 String WMLSelectElement::value() const function in class:WMLSelectElement
    [all...]
  /frameworks/base/core/jni/
android_bluetooth_common.cpp 201 // return value is NULL iff an error was set. The client must free the error if
359 /* Check the return value. */
373 const char *value, int index) {
375 obj = env->NewStringUTF(value);
475 int max_num_properties, int *prop_index, property_value *value, int *len) {
508 dbus_message_iter_get_basic(&prop_val, &value->str_val);
515 value->int_val = int_val;
522 value->array_val = NULL;
540 value->array_val = tmp;
550 property_value *value, int len, int *array_index )
591 property_value value; local
595 property_value value; member in struct:android::__anon7091
664 property_value value; local
    [all...]
  /external/srec/doc/logs/srec/
out_SHIP_bothtags5.txt 26 CONFIDENCE VALUE : '191'
31 CONFIDENCE VALUE : '36'
36 CONFIDENCE VALUE : '6'
41 CONFIDENCE VALUE : '1'
46 CONFIDENCE VALUE : '0'
51 CONFIDENCE VALUE : '0'
56 CONFIDENCE VALUE : '0'
61 CONFIDENCE VALUE : '0'
66 CONFIDENCE VALUE : '0'
71 CONFIDENCE VALUE : '0
    [all...]
out_SHIP_bothtags5_from_saved.txt 26 CONFIDENCE VALUE : '191'
31 CONFIDENCE VALUE : '36'
36 CONFIDENCE VALUE : '6'
41 CONFIDENCE VALUE : '1'
46 CONFIDENCE VALUE : '0'
51 CONFIDENCE VALUE : '0'
56 CONFIDENCE VALUE : '0'
61 CONFIDENCE VALUE : '0'
66 CONFIDENCE VALUE : '0'
71 CONFIDENCE VALUE : '0
    [all...]
  /external/guava/src/com/google/common/primitives/
generate.sh 72 * value.
77 * Returns a hash code for {@code value}; equal to the result of invoking
78 * {@code ((WrapperCl) value).hashCode()}.
80 * @param value a primitive {@code primtyp} value
81 * @return a hash code for the value
83 public static int hashCode(primtyp value) {
88 * Returns the {@code primtyp} value that is equal to {@code value}, if possible.
90 * @param value any value in the range of the {@code primtyp} typ
    [all...]
  /external/icu4c/common/
uhash.h 19 * UHashtable stores key-value pairs and does moderately fast lookup
35 * by whether or not the key deleter and value deleter functions are
38 * key deleter function pointer to a non-NULL value. If this is done,
42 * and the value deleter function pointer. Keys passed to methods
46 * a key that is not in the table, and having a NULL value in the
48 * value is passed to uhash_put(), this has the effect of doing a
54 * UHashElement pointer. A hash element contains a key, value, and
79 * A key or value within the hashtable. It may be either a 32-bit
80 * integral value or an opaque void* pointer. The void* pointer may
86 * integer, we pass it around by value
100 UHashTok value; member in struct:UHashElement
    [all...]
  /external/opencore/nodes/pvmp4ffparsernode/src/
pvmf_mp4ffparser_node_cap_config.cpp 362 // Go through each KVP and release memory for value if allocated from heap
365 // Next check if it is a value type that allocated memory
376 if (keyvaltype == PVMI_KVPVALTYPE_CHARPTR && aParameters[i].value.pChar_value != NULL)
378 oscl_free(aParameters[i].value.pChar_value);
379 aParameters[i].value.pChar_value = NULL;
381 else if (keyvaltype == PVMI_KVPVALTYPE_WCHARPTR && aParameters[i].value.pWChar_value != NULL)
383 oscl_free(aParameters[i].value.pWChar_value);
384 aParameters[i].value.pWChar_value = NULL;
386 else if (keyvaltype == PVMI_KVPVALTYPE_CHARPTR && aParameters[i].value.pChar_value != NULL)
388 oscl_free(aParameters[i].value.pChar_value)
    [all...]
  /external/e2fsprogs/e2fsck/
profile.c 138 char *value; member in struct:profile_node
179 (const char *name, const char *value,
189 const char *name, const char *value,
194 const char *name, const char *value,
379 * This function sets the value of the pseudo file "<default>". If
683 char *cp, ch, *tag, *value; local
790 value = cp;
791 ch = value[0];
793 value++;
794 parse_quoted_string(value);
1466 char *value; local
1497 const char *value; local
1524 const char *value; local
1566 const char *value; local
1641 const char *value; local
1662 char *name, *value; local
1712 const char **names, *value; local
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
StrictMathTest.java 53 assertEquals("Incorrect value was returned.", 1.0,
55 assertEquals("Incorrect value was returned.", 1.0,
57 assertEquals("Incorrect value was returned.", Double.NaN,
59 assertEquals("Incorrect value was returned.", Double.NaN,
61 assertEquals("Incorrect value was returned.", Double.POSITIVE_INFINITY,
63 assertEquals("Incorrect value was returned.", Double.POSITIVE_INFINITY,
66 assertEquals("Incorrect value was returned.", 0.0,
68 assertEquals("Incorrect value was returned.", 0.0,
71 assertEquals("Incorrect value was returned.", Double.NaN,
73 assertEquals("Incorrect value was returned.", Double.NaN,
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
system_32.h 29 #define set_mb(var, value) do { var = value; barrier(); } while (0)
  /bootable/recovery/applypatch/
utils.h 24 void Write4(int value, FILE* f);
25 void Write8(long long value, FILE* f);
  /cts/tests/res/xml/
extra.xml 17 <tag xmlns:android="http://schemas.android.com/apk/res/android" android:name="Bruce" android:value="Lee">
18 <extra android:name="google" android:value="android">

Completed in 1316 milliseconds

<<51525354555657585960>>