/external/webkit/WebCore/bindings/v8/custom/ |
V8MessagePortCustom.cpp | 45 v8::Handle<v8::Value> V8MessagePort::addEventListenerCallback(const v8::Arguments& args) 60 v8::Handle<v8::Value> V8MessagePort::removeEventListenerCallback(const v8::Arguments& args) 76 v8::Handle<v8::Value> V8MessagePort::postMessageCallback(const v8::Arguments& args) 91 bool getMessagePortArray(v8::Local<v8::Value> value, MessagePortArray& portArray) 93 if (isUndefinedOrNull(value)) { 98 if (!value->IsObject()) { 103 v8::Local<v8::Object> ports = v8::Local<v8::Object>::Cast(value); 105 if (value->IsArray()) { 106 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(value); [all...] |
/external/webkit/WebCore/manual-tests/ |
autocompletion-fire-onchange.html | 11 if (!window.changed && document.getElementById("field").value != "") 35 <p><input type="text" name="field" id="field" value="" onchange="window.changed = true"/></p> 36 <p><input type="submit" value="Submit"/></p>
|
tabbing-input-google.html | 22 <input type="text" value="1"><input type="text" value="2"><input type="text" value="3">
|
/external/webkit/WebCore/svg/ |
SVGAnimatedProperty.h | 61 virtual ReturnType animVal() const { return m_creator.value(); } 110 ReturnType value() const { return SVGAnimatedPropertyTraits<AnimatedType>::toReturnType(m_value); } function in class:WebCore::SVGAnimatedProperty 117 void setShouldSynchronize(bool value) { m_shouldSynchronize = value; } 152 AtomicString value(SVGAnimatedPropertyTraits<AnimatedType>::toString(baseValue())); \ 153 SVGAnimatedPropertySynchronizer<IsDerivedFromSVGElement<OwnerType>::value>::synchronize(contextElement, DOMAttribute, value); \ 172 return m_##LowerProperty.value(); \ 183 SVGElement* contextElement = GetOwnerElementForType<OwnerType, IsDerivedFromSVGElement<OwnerType>::value>::ownerElement(this); \ 190 SVGElement* contextElement = GetOwnerElementForType<OwnerType, IsDerivedFromSVGElement<OwnerType>::value>::ownerElement(this); [all...] |
SVGFEMergeNodeElement.cpp | 41 const String& value = attr->value(); local 43 setIn1BaseValue(value);
|
SVGMarkerElement.cpp | 52 // Spec: If the markerWidth/markerHeight attribute is not specified, the effect is as if a value of "3" were specified. 67 if (attr->value() == "userSpaceOnUse") 69 else if (attr->value() == "strokeWidth") 72 setRefXBaseValue(SVGLength(LengthModeWidth, attr->value())); 74 setRefYBaseValue(SVGLength(LengthModeHeight, attr->value())); 76 setMarkerWidthBaseValue(SVGLength(LengthModeWidth, attr->value())); 78 setMarkerHeightBaseValue(SVGLength(LengthModeHeight, attr->value())); 82 if (attr->value() == "auto") 85 angle.setValueAsString(attr->value()); 212 m_marker->setAngle(orientAngle().value()); [all...] |
/external/webkit/WebCore/wml/ |
WMLPostfieldElement.h | 37 String value() const; 39 // Encode name() and value() in a CString using the passed encoding 40 void encodeData(const TextEncoding&, CString& name, CString& value);
|
/external/webkit/WebKit/gtk/webkit/ |
webkitversion.cpp | 28 * Return value: The major version 42 * Return value: The minor version 56 * Return value: The micro version
|
/external/webkit/WebKit/mac/Plugins/ |
npapi.mm | 142 NPError NPN_GetValue(NPP instance, NPNVariable variable, void *value) 144 return [pluginViewForInstance(instance) getVariable:variable value:value]; 147 NPError NPN_SetValue(NPP instance, NPPVariable variable, void *value) 149 return [pluginViewForInstance(instance) setVariable:variable value:value]; 194 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32* len) 196 return [pluginViewForInstance(instance) getVariable:variable forURL:url value:value length:len]; 199 NPError NPN_SetValueForURL(NPP instance, NPNURLVariable variable, const char* url, const char* value, uint32 len [all...] |
/frameworks/base/core/java/android/os/ |
SystemProperties.java | 22 * store contains a list of string key-value pairs. 39 * Get the value for the given key. 51 * Get the value for the given key. 63 * Get the value for the given key, and return as an integer. 65 * @param def a default value to return 78 * Get the value for the given key, and return as a long. 80 * @param def a default value to return 93 * Get the value for the given key, returned as a boolean. 97 * If the key does not exist, or has any other value, then the default 100 * @param def a default value to retur [all...] |
/frameworks/base/core/java/android/text/ |
Annotation.java | 22 * Annotations are simple key-value pairs that are preserved across 30 public Annotation(String key, String value) { 32 mValue = value;
|
/frameworks/base/core/java/android/view/animation/ |
Interpolator.java | 30 * @param input A value between 0 and 1.0 indicating our current point 33 * @return The interpolation value. This value can be more than 1.0 for
|
/frameworks/base/core/jni/ |
android_database_CursorWindow.cpp | 161 int64_t value; local 162 if (window->getLong(row, column, &value)) { 163 return value; 180 double value; local 181 if (window->getDouble(row, column, &value)) { 182 return value; 320 int64_t value; local 321 if (window->getLong(row, column, &value)) { 323 snprintf(buf, sizeof(buf), "%lld", value); 328 double value; local 412 int64_t value; local 421 double value; local 455 double value; local 474 int64_t value; local [all...] |
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 65 byte[] value = get(getBytes(key)); 66 return (value == null) ? null : toString(value); 69 public boolean put(byte[] key, byte[] value) { 70 execute('i', key, value); 74 public boolean put(String key, String value) { 75 return put(getBytes(key), getBytes(value)); 193 byte[] value = new byte[i << 8 | j]; 194 for (i = 0; i < value.length; i += j) { 195 if ((j = in.read(value, i, value.length - i)) == -1) [all...] |
/frameworks/base/services/java/com/android/server/ |
ProcessMap.java | 33 public E put(String name, int uid, E value) { 39 uids.put(uid, value); 40 return value;
|
/hardware/libhardware_legacy/vibrator/ |
vibrator.c | 29 char value[20]; local 41 nwr = sprintf(value, "%d\n", timeout_ms); 42 ret = write(fd, value, nwr);
|
/hardware/ti/wlan/wl1271/CUDK/os/linux/inc/ |
ParsEvent.h | 40 char * value; /* Current value in event */ member in struct:stream_descr 50 int val_index; /* Value in table 0->(N-1) */
|
/packages/apps/Email/src/com/android/email/mail/ |
Part.java | 23 public void addHeader(String name, String value) throws MessagingException; 27 public void setHeader(String name, String value) throws MessagingException; 39 public void setExtendedHeader(String name, String value) throws MessagingException;
|
/packages/apps/Email/src/com/android/exchange/ |
MockParserStream.java | 33 Object value; field in class:MockParserStream 49 value = _value; 53 return value;
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewNode.java | 66 id = namedProperties.get("mID").value; 98 return Boolean.parseBoolean(p.value); 110 return Integer.parseInt(p.value); 167 public String value; field in class:ViewNode.Property 171 return name + '=' + value; 187 return !(this.value != other.value && (this.value == null || !this.value.equals(other.value))); [all...] |
/system/core/nexus/ |
Property.cpp | 40 int StringProperty::set(int idx, int value) { 45 int StringProperty::set(int idx, struct in_addr *value) { 68 int StringPropertyHelper::set(int idx, const char *value) { 74 strncpy(mBuffer, value, mMax); 92 int IntegerProperty::set(int idx, const char *value) { 97 int IntegerProperty::set(int idx, struct in_addr *value) { 119 int IntegerPropertyHelper::set(int idx, int value) { 125 *mBuffer = value; 143 int IPV4AddressProperty::set(int idx, const char *value) { 148 int IPV4AddressProperty::set(int idx, int value) { [all...] |
/system/wlan/ti/wilink_6_1/CUDK/os/linux/inc/ |
ParsEvent.h | 40 char * value; /* Current value in event */ member in struct:stream_descr 50 int val_index; /* Value in table 0->(N-1) */
|
/external/libxml2/ |
legacy.c | 42 * Substitute the HTML entities by their value 167 * Read the current value of one feature of this parser instance 274 * @value: pointer to the location of the new value 276 * Change the current value of one feature of this parser instance 281 xmlSetFeature(xmlParserCtxtPtr ctxt, const char *name, void *value) 283 if ((ctxt == NULL) || (name == NULL) || (value == NULL)) 287 int newvalidate = *((int *) value); 298 ctxt->keepBlanks = *((int *) value); 300 ctxt->disableSAX = *((int *) value); [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
CodeObserver.java | 79 int idx, Type type, int value) { 86 ((length <= 3) ? Hex.s1(value) : Hex.s2(value)); 101 Constant cst, int value) { 109 visitLiteralInt(opcode, offset, length, value); 132 if (value != 0) { 135 valueStr += Hex.u1(value); 137 valueStr += Hex.u2(value); 227 * @param value constant value [all...] |
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
TBSCertificate.java | 66 // the value of version field of the structure 68 // the value of serialNumber field of the structure 70 // the value of signature field of the structure 72 // the value of issuer field of the structure 74 // the value of validity field of the structure 76 // the value of subject field of the structure 78 // the value of subjectPublicKeyInfo field of the structure 80 // the value of issuerUniqueID field of the structure 82 // the value of subjectUniqueID field of the structure 84 // the value of extensions field of the structur [all...] |