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

<<101102103104105106107108109110>>

  /external/qemu/hw/
bt-sdp.c 589 } value; member in struct:sdp_def_service_s::sdp_def_attribute_s::sdp_def_data_element_s
611 for (len = 0; element->value.str[len] |
612 element->value.str[len + 1]; len ++);
615 return 2 + strlen(element->value.str);
621 element = element->value.list;
639 data[len ++] = (element->value.uint >> 0) & 0xff;
641 data[len ++] = (element->value.uint >> 8) & 0xff;
642 data[len ++] = (element->value.uint >> 0) & 0xff;
644 data[len ++] = (element->value.uint >> 24) & 0xff;
645 data[len ++] = (element->value.uint >> 16) & 0xff
    [all...]
  /external/webkit/WebCore/inspector/front-end/
utilities.js 390 var value = this.getAttribute("id");
391 if (value)
392 name += " id=\"" + value + "\"";
393 value = this.getAttribute("class");
394 if (value)
395 name += " class=\"" + value + "\"";
397 value = this.getAttribute("name");
398 if (value)
399 name += " name=\"" + value + "\"";
400 value = this.getAttribute("href")
    [all...]
  /frameworks/base/core/java/android/text/format/
DateFormat.java 58 zero-pad the value to that number of characters.
204 String value = Settings.System.getString(context.getContentResolver(), local
207 if (value == null) {
225 value = "24";
227 value = "12";
230 value = "12";
235 sIs24Hour = !value.equals("12");
239 boolean b24 = !(value == null || value.equals("12"));
270 String value = Settings.System.getString(context.getContentResolver() local
364 String value = getDateFormatString(context); local
393 String value = Settings.System.getString(context.getContentResolver(), local
    [all...]
  /system/core/nexus/
WifiNetwork.cpp 529 LOGW("Invalid KeyManagementMask value '%s'", v_token);
535 LOGW("KeyManagementMask value '%s' when NONE", v_token);
559 LOGW("Invalid ProtocolsMask value '%s'", v_token);
590 LOGW("Invalid AuthAlgorithmsMask value '%s'", v_token);
619 LOGW("PairwiseCiphersMask value '%s' when NONE", v_token);
625 LOGW("Invalid PairwiseCiphersMask value '%s'", v_token);
654 LOGW("Invalid GroupCiphersMask value '%s'", v_token);
687 int WifiNetwork::WifiNetworkEnabledProperty::set(int idx, int value) {
688 return mWn->setEnabled(value == 1);
701 int WifiNetwork::WifiNetworkSsidProperty::set(int idx, const char *value) {
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSArray.cpp 53 // as an unsigned integer, or where the value is greater than MAX_ARRAY_INDEX
54 // (specifically, this is only one property - the value 0xFFFFFFFFU as an unsigned 32-bit
62 // * Where (i < MIN_SPARSE_ARRAY_INDEX) the value will be stored in the storage vector.
63 // * Where (MIN_SPARSE_ARRAY_INDEX <= i <= MAX_STORAGE_VECTOR_INDEX) the value will either
67 // * Where (MAX_STORAGE_VECTOR_INDEX < i <= MAX_ARRAY_INDEX) the value will always be stored
73 // (vectorLength * sizeof(JSValue)) must be <= 0xFFFFFFFFU (which is maximum value of size_t).
255 JSValue& value = m_storage->m_vector[i]; local
256 if (value) {
257 descriptor.setDescriptor(value, 0);
274 void JSArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot
709 JSValue value = m_storage->m_vector[i]; local
747 JSValue value; member in struct:JSC::AVLTreeNodeForArrayCompare
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 79 "value TEXT" +
89 "value TEXT" +
184 // The value of the constants for preferring wifi or preferring mobile have been
187 db.execSQL("INSERT INTO system ('name', 'value') values ('network_preference', '" +
272 db.execSQL("INSERT INTO system ('name', 'value') values ('"
312 stmt = db.compileStatement("INSERT INTO system(name,value)"
324 // The Wi-Fi watchdog SSID list is now seeded with the value of
330 db.execSQL("INSERT OR IGNORE INTO secure(name,value) values('" +
345 db.execSQL("INSERT INTO system(name,value) values('zoom','2');");
357 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
415 String value = local
430 String value = local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
LinkedHashMap.java 43 * change the order of the entries. Changes in the value of an entry are not structural changes.
159 LinkedEntry(K key, V value, int hash, HashMapEntry<K, V> next,
161 super(key, value, hash, next);
180 @Override void addNewEntry(K key, V value, int hash, int index) {
192 key, value, hash, table[index], header, oldTail);
196 @Override void addNewEntryForNullKey(V value) {
208 null, value, 0, null, header, oldTail);
216 K key, V value, int hash, HashMapEntry<K, V> next) {
220 = new LinkedEntry<K,V>(key, value, hash, next, header, oldTail);
225 * Returns the value of the mapping with the specified key
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
SQLInput.java 51 * @return the next attribute. {@code null} if the value is SQL {@code NULL}.
63 * value is SQL {@code NULL}.
72 * @return the next attribute as a {@code byte}. 0 if the value is SQL
82 * @return the next attribute as a {@code short}. 0 if the value is SQL
92 * @return the next attribute as an {@code int}. 0 if the value is SQL
102 * @return the next attribute as a {@code long}. 0 if the value is SQL
112 * @return the next attribute as a {@code float}. 0 if the value is SQL
122 * @return the next attribute as a {@code double}. 0 if the value is SQL
156 * the value is SQL {@code NULL}.
192 * the value is SQL {@code NULL}
    [all...]
  /external/bluetooth/glib/gobject/
gobject.h 124 * @value: a valid #GValue structure
130 #define G_VALUE_HOLDS_OBJECT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_OBJECT))
194 * @value: a #GValue to return the property value in
201 GValue *value,
208 * @value: the new value for the property
215 const GValue *value,
327 const GValue *value,
362 GValue *value; member in struct:_GObjectConstructParam
    [all...]
  /external/skia/src/views/
SkEvent.cpp 151 const char* value; local
152 if ((value = dom.findAttr(node, "fast32")) != NULL)
155 if (SkParse::FindS32(value, &n))
174 if ((value = dom.findAttr(node, "s32")) != NULL)
177 if (SkParse::FindS32(value, &n))
180 else if ((value = dom.findAttr(node, "scalar")) != NULL)
183 if (SkParse::FindScalar(value, &x))
186 else if ((value = dom.findAttr(node, "string")) != NULL)
187 this->setString(name, value);
226 int32_t value; local
242 const char* value = md.findString(name); local
249 void* value; local
256 bool value; local
    [all...]
  /external/stlport/test/unit/
map_test.cpp 61 //cout << "m['z'] = " << m['z'] << endl; // Note default value is added.
340 typedef Container::value_type value; typedef
342 cont.insert(value(Key(1), 1));
343 cont.insert(value(Key(2), 2));
344 cont.insert(value(Key(3), 3));
345 cont.insert(value(Key(4), 4));
365 typedef Container::value_type value; typedef
368 cont.insert(value(&key1, 1));
369 cont.insert(value(&key2, 2));
370 cont.insert(value(&key3, 3))
389 typedef Container::value_type value; typedef
414 typedef Container::value_type value; typedef
    [all...]
  /external/webkit/WebCore/bindings/v8/
npruntime.cpp 127 static bool isDeletedValue(const StringKey& value)
129 return value.isHashTableDeletedValue();
174 identifier->value.string = reinterpret_cast<NPUTF8*>(nameStorage);
203 id->value.number = intId;
217 identifier->value.number = intId;
231 if (!privateIdentifier->isString || !privateIdentifier->value.string)
234 return (NPUTF8*) strdup(privateIdentifier->value.string);
242 return privateIdentifier->value.number;
250 _NPN_ReleaseObject(variant->value.objectValue);
251 variant->value.objectValue = 0
    [all...]
  /external/webkit/WebCore/html/
HTMLDocument.cpp 115 void HTMLDocument::setDir(const String& value)
119 b->setAttribute(dirAttr, value);
127 void HTMLDocument::setDesignMode(const String& value)
130 if (equalIgnoringCase(value, "on"))
132 else if (equalIgnoringCase(value, "off"))
176 void HTMLDocument::setBgColor(const String& value)
182 bodyElement->setBgColor(value);
195 void HTMLDocument::setFgColor(const String& value)
201 bodyElement->setText(value);
214 void HTMLDocument::setAlinkColor(const String& value)
    [all...]
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 211 * @param value the value of the attribute
213 public void addAttribute(String name, String value) throws IOException {
218 escapeString(value);
227 * @param value the value of the attribute
231 protected void tag(String tag, String name, String value, boolean close) throws IOException {
239 escapeString(value);
255 * @param value the value of the attribut
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 144 * To change this value, use a block synchronized on {@link #sDefaultLogger}.
252 Integer value = (Integer) f.get(null); local
253 sRMap.put(value, new String[] { f.getName(), resType });
254 fullMap.put(f.getName(), value); local
497 * Returns details of a framework resource from its integer value.
498 * @param value the integer value
502 public static String[] resolveResourceValue(int value) {
503 return sRMap.get(value);
508 * Returns the name of a framework resource whose value is an int array
734 IResourceValue value = context.findItemInStyle(currentTheme, "windowNoTitle"); local
    [all...]
  /dalvik/vm/reflect/
Annotation.c 119 * Read an unsigned LEB128 value from a buffer. Advances "pBuf".
350 kAllRaw, /* return everything as a raw value or index */
355 * Recursively process an annotation value.
361 * appropriate type (in pValue->value.l). For primitive types, the usual
370 * of appropriate type (in pValue->value.l).
375 * Returns "true" on success, "false" if the value could not be processed
403 pValue->value.i = (s1) readSignedInt(ptr, valueArg);
405 elemObj = (Object*) dvmWrapPrimitive(pValue->value,
411 pValue->value.i = (s2) readSignedInt(ptr, valueArg);
413 elemObj = (Object*) dvmWrapPrimitive(pValue->value,
    [all...]
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_queue.h 34 unsigned char value; member in struct:ipq_mode_msg
39 unsigned int value; member in struct:ipq_verdict_msg
  /build/target/product/
AndroidProducts.mk 22 # This file may not rely on the value of any variable other than
24 # value of any variable that isn't set in this file or in a file that
  /cts/tools/dx-tests/src/dxc/junit/verify/t482_14/
Test_t482_14.java 28 * @title <init> may not return a value
41 * @title <clinit> may not return a value
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_object/
Test_aput_object.java 43 String[] value = {"world", null, ""}; local
45 for (int i = 0; i < value.length; i++) {
46 t.run(arr, 1, value[i]);
47 assertEquals(value[i], arr[1]);
57 Integer value = new Integer(12345); local
58 t.run(arr, 0, value);
59 assertEquals(value, arr[0]);
73 * so this array[float]=value makes no sense but shall not crash the VM.
  /dalvik/dx/src/com/android/dx/cf/code/
SwitchList.java 23 * List of (value, target) mappings representing the choices of a
71 * Gets the indicated test value.
74 * @return the test value
114 * @return {@code non-null;} the case value list
144 * @param value the test value
147 public void add(int value, int target) {
154 values.add(value);
  /dalvik/dx/src/com/android/dx/cf/iface/
Field.java 27 * Get the constant value for this field, if any. This only returns
31 * @return {@code null-ok;} the constant value, or {@code null} if this
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CheckedInputStreamTest.java 80 assertEquals("the checkSum value of an empty file is not zero", 0,
91 // ran JDK and found that the checkSum value of this is 2036203193
93 assertEquals("the checksum value is incorrect", 2036203193, checkIn
101 // ran JDK and found that the checkSum value of this is 2235765342
103 assertEquals("the checksum value is incorrect", 2235765342L, checkIn2
125 "the value returned by skip(n) is not the same as its parameter",
128 // ran JDK and found the checkSum value is 2235765342
130 assertEquals("checkSum value is not correct", 2235765342L, checkIn
  /dalvik/libcore/crypto/src/main/java/javax/crypto/interfaces/
DHPrivateKey.java 34 * Returns this key's private value x.
35 * @return this key's private value x.
DHPublicKey.java 34 * Returns this key's public value Y.
35 * @return this key's public value Y.

Completed in 1985 milliseconds

<<101102103104105106107108109110>>