/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
window-open-expected.txt | 2 Value for FOO is BAR 4 Value for FOO is BAR 5 Value for FOO after changing my own copy is BAR-NEWWINDOW 6 Value for FOO in my opening window is BAR-NEWWINDOW
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
simple-usage-expected.txt | 3 Value for FOO is null 5 Value for FOO is BAR 10 Value for FOO is BAZ 12 Value for FOO is null
|
window-open-expected.txt | 2 Value for FOO is BAR 4 Value for FOO is BAR 5 Value for FOO after changing my own copy is BAR-NEWWINDOW 6 Value for FOO in my opening window is BAR
|
/external/webkit/WebCore/manual-tests/ |
back.html | 1 <input type="button" onclick="history.back()" value="Go Back"
|
liveconnect-applet-get-boolean.html | 4 This tests retrieving a boolean value from a Java class using javascript. It tests the return value. The return value should be true.<br> 5 <input type="button" name="test" value="Read applet" onClick="alert('return value: '+document.Checker.checkVersion())"/>
|
/system/core/libacc/tests/data/ |
double.c | 4 printf("Value = %g\n", atof("10.42"));
|
/external/bluetooth/glib/gobject/ |
gvaluetypes.c | 38 /* --- value functions --- */ 40 value_init_long0 (GValue *value) 42 value->data[0].v_long = 0; 53 value_lcopy_char (const GValue *value, 61 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value)); 63 *int8_p = value->data[0].v_int; 69 value_lcopy_boolean (const GValue *value, 77 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value)); [all...] |
gobject.rc.in | 16 VALUE "CompanyName", "The GLib developer community" 17 VALUE "FileDescription", "GObject" 18 VALUE "FileVersion", "@GLIB_VERSION@.0" 19 VALUE "InternalName", "libgobject-2.0-@LT_CURRENT_MINUS_AGE@" 20 VALUE "LegalCopyright", "Copyright ? 1998-2004 Tim Janik and Red Hat, Inc." 21 VALUE "OriginalFilename", "libgobject-2.0-@LT_CURRENT_MINUS_AGE@.dll" 22 VALUE "ProductName", "GLib" 23 VALUE "ProductVersion", "@GLIB_VERSION@" 28 VALUE "Translation", 0x409, 1200
|
/device/htc/dream/overlay/frameworks/base/core/res/res/xml/ |
power_profile.xml | 36 <value>90</value> 37 <value>3</value> 40 <value>19200</value> 41 <value>122880</value> 42 <value>128000</value> [all...] |
/device/htc/sapphire/overlay/frameworks/base/core/res/res/xml/ |
power_profile.xml | 36 <value>90</value> 37 <value>3</value> 40 <value>19200</value> 41 <value>122880</value> 42 <value>128000</value> [all...] |
/external/bluetooth/bluez/test/ |
service-did.xml | 6 <uuid value="0x1200"/> 11 <uint16 value="0x0102" name="id"/> 15 <uint16 value="0x0a12" name="vendor"/> 19 <uint16 value="0x4711" name="product"/> 23 <uint16 value="0x0000" name="version"/> 27 <boolean value="true"/> 31 <uint16 value="0x0002" name="source"/>
|
service-spp.xml | 6 <uuid value="0x1101"/> 13 <uuid value="0x0100"/> 16 <uuid value="0x0003"/> 17 <uint8 value="23" name="channel"/> 23 <text value="COM5" name="name"/>
|
/external/clearsilver/man/man3/ |
skipInsert.3 | 20 NEOERR *skipInsert(skipList list, UINT32 key, void *value, int allowUpdate); 27 key - key identifying <value>. 29 value - value to store (may NOT be NULL) 32 Inserts the <key>/<value> pair into the <list>. 35 value is updated, otherwise SKIPERR_EXISTS is returned. 39 .SH "RETURN VALUE"
|
/external/qemu/ |
varint.c | 27 // Encodes the 64-bit value "value" using the varint encoding. The varint 42 char *varint_encode(uint64_t value, char *buf) { 43 if (value < k2Exp7) { 44 *buf++ = value; 45 } else if (value < k2Exp14) { 46 *buf++ = (2 << 6) | (value >> 8); 47 *buf++ = value & 0xff; 48 } else if (value < k2Exp21) { 49 *buf++ = (6 << 5) | (value >> 16) [all...] |
/external/iptables/extensions/ |
libipt_TTL.man | 8 .B Don't ever set or increment the value on packets that leave your local network! 12 .BI "--ttl-set " "value" 13 Set the TTL value to `value'. 15 .BI "--ttl-dec " "value" 16 Decrement the TTL value `value' times. 18 .BI "--ttl-inc " "value" 19 Increment the TTL value `value' times [all...] |
/external/proguard/src/proguard/evaluation/value/ |
ConvertedDoubleValue.java | 21 package proguard.evaluation.value; 24 * This DoubleValue represents a double value that is converted from another 25 * scalar value. 31 private final Value value; field in class:ConvertedDoubleValue 35 * Creates a new converted double value of the given value. 37 public ConvertedDoubleValue(Value value) 39 this.value = value [all...] |
ConvertedFloatValue.java | 21 package proguard.evaluation.value; 24 * This FloatValue represents a float value that is converted from another 25 * scalar value. 31 private final Value value; field in class:ConvertedFloatValue 35 * Creates a new converted float value of the given value. 37 public ConvertedFloatValue(Value value) 39 this.value = value [all...] |
ConvertedIntegerValue.java | 21 package proguard.evaluation.value; 24 * This IntegerValue represents a integer value that is converted from another 25 * scalar value. 31 private final Value value; field in class:ConvertedIntegerValue 35 * Creates a new converted integer value of the given value. 37 public ConvertedIntegerValue(Value value) 39 this.value = value [all...] |
ConvertedLongValue.java | 21 package proguard.evaluation.value; 24 * This LongValue represents a long value that is converted from another 25 * scalar value. 31 private final Value value; field in class:ConvertedLongValue 35 * Creates a new converted long value of the given value. 37 public ConvertedLongValue(Value value) 39 this.value = value [all...] |
Value.java | 21 package proguard.evaluation.value; 24 * This abstract class represents a partially evaluated value. 28 public abstract class Value 44 * Returns this Value as a Category1Value. 48 throw new IllegalArgumentException("Value is not a Category 1 value [" + this.getClass().getName() + "]"); 52 * Returns this Value as a Category2Value. 56 throw new IllegalArgumentException("Value is not a Category 2 value [" + this.getClass().getName() + "]"); 61 * Returns this Value as an IntegerValue [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
try-008.js | 22 function Integer( value, exception ) { 24 this.value = checkValue( value ); 26 this.value = e.toString(); 31 "Integer( " + value +" )", 32 (exception ? INVALID_INTEGER_VALUE +": " + value : this.value), 33 this.value ); 36 var INVALID_INTEGER_VALUE = "Invalid value for java.lang.Integer constructor"; 38 function checkValue( value ) { [all...] |
/frameworks/base/core/java/com/google/android/mms/pdu/ |
ReadRecInd.java | 26 * @param from the from value 27 * @param messageId the message ID value 29 * @param readStatus the read status value 30 * @param to the to value 58 * Get Date value. 60 * @return the value 67 * Set Date value. 69 * @param value the value 71 public void setDate(long value) { [all...] |
NotifyRespInd.java | 30 * @param transactionId the transaction-id value 31 * @param status the status value 56 * Get X-Mms-Report-Allowed field value. 58 * @return the X-Mms-Report-Allowed value 65 * Set X-Mms-Report-Allowed field value. 67 * @param value the value 68 * @throws InvalidHeaderValueException if the value is invalid. 71 public void setReportAllowed(int value) throws InvalidHeaderValueException { 72 mPduHeaders.setOctet(value, PduHeaders.REPORT_ALLOWED) [all...] |
/external/bluetooth/glib/gmodule/ |
gmodule.rc.in | 16 VALUE "CompanyName", "The GLib developer community" 17 VALUE "FileDescription", "GModule" 18 VALUE "FileVersion", "@GLIB_VERSION@.0" 19 VALUE "InternalName", "libgmodule-2.0-@LT_CURRENT_MINUS_AGE@" 20 VALUE "LegalCopyright", "Copyright ? 1998-2000 Tim Janik. Modified by the GLib Team and others 1998-2004." 21 VALUE "OriginalFilename", "libgmodule-2.0-@LT_CURRENT_MINUS_AGE@.dll" 22 VALUE "ProductName", "GLib" 23 VALUE "ProductVersion", "@GLIB_VERSION@" 28 VALUE "Translation", 0x409, 1200
|
/external/bluetooth/glib/gthread/ |
gthread.rc.in | 16 VALUE "CompanyName", "The GLib developer community" 17 VALUE "FileDescription", "GThread" 18 VALUE "FileVersion", "@GLIB_VERSION@.0" 19 VALUE "InternalName", "libgthread-2.0-@LT_CURRENT_MINUS_AGE@" 20 VALUE "LegalCopyright", "Copyright ? 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald. Copyright ? 1998 Sebastian Wilhelmi. Modified by the GLib Team and others 1997-2004." 21 VALUE "OriginalFilename", "libgthread-2.0-@LT_CURRENT_MINUS_AGE@.dll" 22 VALUE "ProductName", "GLib" 23 VALUE "ProductVersion", "@GLIB_VERSION@" 28 VALUE "Translation", 0x409, 1200
|