/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
expression-002.js | 7 Try to access properties of an object whose value is undefined. 36 result = OBJECT.value.valueOf(); 45 "Get the value of an object whose value is undefined "+ 52 function Property( object, value, string, number ) { 54 this.string = String(value); 55 this.number = Number(value); 56 this.valueOf = value;
|
expression-004.js | 26 result = OBJECT.value.toString(); 34 "Get the toString value of an object whose value is null "+ 41 function Property( object, value, string, number ) { 43 this.string = String(value); 44 this.number = Number(value); 45 this.value = value;
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-003.js | 30 function DoWhileObject( value, iterations, endvalue ) { 31 this.value = value; 40 object.value = --object.value; 44 } while( object.value ); 55 "object.value", 57 Number( object.value )
|
try-009.js | 32 function TryObject( value, throwFunction, result ) { 33 this.value = value; 38 throw EXCEPTION_STRING + this.value; 41 return NO_EXCEPTION_STRING + this.value; 48 result = NO_EXCEPTION_STRING + object.value; 60 ? EXCEPTION_STRING + object.value : 61 NO_EXCEPTION_STRING + object.value),
|
/external/webkit/WebCore/bindings/v8/ |
ScriptObject.cpp | 61 bool ScriptObject::set(const String& name, const String& value) 64 v8Object()->Set(v8String(name), v8String(value)); 68 bool ScriptObject::set(const char* name, const ScriptObject& value) 70 if (value.scriptState() != m_scriptState) { 75 v8Object()->Set(v8::String::New(name), value.v8Value()); 79 bool ScriptObject::set(const char* name, const String& value) 82 v8Object()->Set(v8::String::New(name), v8String(value)); 86 bool ScriptObject::set(const char* name, double value) 89 v8Object()->Set(v8::String::New(name), v8::Number::New(value)); 93 bool ScriptObject::set(const char* name, long value) [all...] |
/external/webkit/WebKitTools/DumpRenderTree/win/TestNetscapePlugin/ |
TestNetscapePlugin.rc | 72 VALUE "CompanyName", "Apple Inc."
73 VALUE "FileDescription", "TestNetscapePlugIn"
74 VALUE "FileOpenName", "test netscape content"
75 VALUE "LegalCopyright", "Copyright Apple Inc. 2007-2009"
76 VALUE "MIMEType", "application/x-webkit-test-netscape"
77 VALUE "OriginalFilename", "npTestNetscapePlugin.dll"
78 VALUE "ProductName", "TestNetscapePlugIn"
83 VALUE "Translation", 0x409, 1252
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
ResourceValue.java | 34 public ResourceValue(String type, String name, String value) { 37 mValue = value; 52 public final void setValue(String value) { 53 mValue = value; 56 public void replaceWith(ResourceValue value) { 57 mValue = value.mValue; 63 // be a value pointing to a bitmap, or they'd be resolvable.), the return value deoes
|
/system/extras/tests/bionic/libc/bionic/ |
lib_static_init.cpp | 7 value = ++Foo::counter; 13 return value;
|
/frameworks/base/core/java/com/android/internal/util/ |
TypedProperties.java | 202 // Read a value of the appropriate type, and insert into the map. 203 final Object value = parseValue(st, type); local 208 if (value.getClass() != oldValue.getClass()) { 213 map.put(propertyName, value); 229 * @return a Boolean, Number subclass, or String representing the value. 257 long value; local 259 value = Long.decode(st.sval); 264 // Ensure that the type can hold this value, and return. 268 if (value < Byte.MIN_VALUE || value > Byte.MAX_VALUE) 301 double value; local 403 Object value = super.get(key); local 435 Object value = super.get(property); local 455 Object value = super.get(property); local 475 Object value = super.get(property); local 495 Object value = super.get(property); local 515 Object value = super.get(property); local 535 Object value = super.get(property); local 555 Object value = super.get(property); local 575 Object value = super.get(property); local 703 Object value = super.get(property); local [all...] |
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/tsp/ |
PKIFailureInfo.java | 50 The value of PKIFailureInfo can take only one of the values, 95 private final int value; field in class:PKIFailureInfo 99 PKIFailureInfo(int value) { 100 this.value = value; 104 * @return int value of the failure 107 return value; 116 if (cur.value > maxValue) { 117 maxValue = cur.value; 124 * @param value [all...] |
/external/webkit/JavaScriptCore/qt/api/ |
qscriptvalue.h | 42 QScriptValue(bool value); 43 QScriptValue(int value); 44 QScriptValue(uint value); 45 QScriptValue(qsreal value); 46 QScriptValue(const QString& value); 47 QScriptValue(const char* value); 48 QScriptValue(SpecialValue value); 51 QScriptValue(QScriptEngine* engine, bool value); 52 QScriptValue(QScriptEngine* engine, int value); 53 QScriptValue(QScriptEngine* engine, uint value); [all...] |
/external/webkit/WebCore/bindings/js/ |
JSCSSValueCustom.cpp | 47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSValue* value) 49 if (!value) 52 DOMObject* wrapper = getCachedDOMObjectWrapper(exec, value); 57 if (value->isWebKitCSSTransformValue()) 58 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WebKitCSSTransformValue, value); 59 else if (value->isValueList()) 60 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSValueList, value); 62 else if (value->isSVGPaint()) 63 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPaint, value); 64 else if (value->isSVGColor() [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
FloatMath.java | 36 * positive infinity) integer value which is less than the argument. 38 * @param value to be converted 39 * @return the floor of value 41 public static float floor(float value) { 42 return (float)Math.floor(value); 47 * negative infinity) integer value which is greater than the argument. 49 * @param value to be converted 50 * @return the ceiling of value 52 public static float ceil(float value) { 53 return (float)Math.ceil(value); [all...] |
/frameworks/base/tools/localize/ |
res_check.cpp | 9 static int check_value(const SourcePos& pos, const XMLNode* value); 10 static int scan_for_unguarded_format(const SourcePos& pos, const XMLNode* value, int depth = 0); 41 XMLNode* value = it->value; local 42 if (value != NULL) { 43 err |= check_value(it->pos, value); 63 check_value(const SourcePos& pos, const XMLNode* value) 66 err |= scan_for_unguarded_format(pos, value); 91 scan_for_unguarded_format(const SourcePos& pos, const XMLNode* value, int depth) 93 if (value->Type() == XMLNode::ELEMENT) [all...] |
/system/core/nexus/ |
SupplicantStatus.cpp | 57 char *value = strsep(&line_next, "="); local 59 bssid = strdup(value); 61 ssid = strdup(value); 63 id = atoi(value); 65 if (!strcmp(value, "DISCONNECTED")) 67 else if (!strcmp(value, "INACTIVE")) 69 else if (!strcmp(value, "SCANNING")) 71 else if (!strcmp(value, "ASSOCIATING")) 73 else if (!strcmp(value, "ASSOCIATED")) 75 else if (!strcmp(value, "FOURWAY_HANDSHAKE") [all...] |
/cts/tools/dex-tools/src/dex/reader/ |
DexEncodedValueImpl.java | 34 private Object value; field in class:DexEncodedValueImpl 63 value = getByteValue(valueArg); 66 value = getShortValue(valueArg); 69 value = getCharValue(valueArg); 72 value = getIntValue(valueArg); 75 value = getLongValue(valueArg); 78 value = getFloatValue(valueArg); 81 value = getDoubleValue(valueArg); 84 value = getStringValue(valueArg); 87 value = getTypeValue(valueArg) [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
AbstractStringBuilder.java | 38 private char[] value; field in class:AbstractStringBuilder 48 return value; 56 return value; 71 value = val; 76 value = new char[INITIAL_CAPACITY]; 83 value = new char[capacity]; 89 value = new char[count + INITIAL_CAPACITY]; 91 string._getChars(0, count, value, 0); 96 int newSize = ((value.length >> 1) + value.length) + 2 [all...] |
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_SAVE_STATE.S | 4 * Top of stack + 4: r7 value to save 5 * Top of stack + 0: r0 value to save 7 * r7 - the value of regMap 16 ldr r7, [r13, #0] @ recover r0 value 18 ldr r7, [r13, #4] @ recover r7 value
|
/external/clearsilver/man/man3/ |
hdf_get_copy.3 | 20 NEOERR* hdf_get_copy (HDF *hdf, const char *name, char **value, 30 defval -> the default value to return if the node doesn't 38 .SH "RETURN VALUE" 39 value -> the allocated string (if defval = NULL, then value
|
/external/clearsilver/ruby/lib/ |
neo.rb | 30 def put name, value 31 value = value.to_s unless value.is_a?(String) 32 self.set_value(@cpos+(name.to_s),value)
|
/external/srec/doc/logs/uapi/ |
run_ERT.log | 17 key=raws value=22722 18 key=Phone.V value=DEL Jen_Parker 19 key=Names.V value=Jen_Parker 20 key=Phone.C value=DEL 21 key=ROOT.meaning value=DEL Jen_Parker
|
/external/webkit/WebCore/dom/ |
InputElement.h | 51 virtual String value() const = 0; 71 // Replaces CRs and LFs, shrinks the value for s_maximumLength. 72 // This should be applied to values from the HTML value attribute and the DOM value property. 74 // Replaces CRs and LFs, shrinks the value for the specified maximum length. 91 void setName(const AtomicString& value) { m_name = value; } 93 String value() const { return m_value; } function in class:WebCore::InputElementData 94 void setValue(const String& value) { m_value = value; } [all...] |
/external/webkit/WebCore/manual-tests/chromium/ |
select-close-popup-value-change.html | 5 <p>Do the following, the test passes if the select keeps the selected value after step 4, fails if the value reverted.</p> 8 <li>2. Use keyboard to select a value by pressing the first letter of the value.</li> 9 <li>3. Click the select again to close the popup list, it should stay at the value from step 2.</li>
|
/external/webkit/WebCore/manual-tests/ |
modal-dialog.html | 9 window.returnValue = document.form.toWindow.value; 15 document.form.fromWindow.value = window.dialogArguments; 22 <p>Type text here to be sent back to the main window: <input name="toWindow" value="from modal window"></p> 23 <p>Then, push this button: <input type="button" value="Close" onClick="closeModal()"></p> 24 <p>Push this button to test timer: <input type="button" value="Test Timer" onClick="setTimeout(timerFired, 0)"></p>
|
showModalDialog-returnValue.html | 1 This test makes sure we don't crash when storing the return value from showModalDialog. Popup blocking needs to be disabled for this test to run.<br> 3 if (showModalDialog("data:text/html,<script>returnValue={value:'PASS'}; close()</"+"script>").value == "PASS") 7 value = showModalDialog("data:text/html,<script>close()</"+"script>"); 8 if (!value)
|