Searched refs:encode (Results 176 - 200 of 560) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit2/Shared/qt/
H A DUpdateChunk.h50 void encode(CoreIPC::ArgumentEncoder*) const;
/external/webkit/Source/WebKit2/Shared/win/
H A DPlatformCertificateInfo.h54 void encode(CoreIPC::ArgumentEncoder* encoder) const;
H A DUpdateChunk.h48 void encode(CoreIPC::ArgumentEncoder*) const;
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSGlobalObjectFunctions.cpp52 static JSValue encode(ExecState* exec, const char* doNotEscape) function in namespace:JSC
444 return JSValue::encode(x);
450 return JSValue::encode(parsedObject);
457 return JSValue::encode(exec->interpreter()->execute(eval, exec, thisObject, static_cast<JSGlobalObject*>(unwrappedObject)->globalScopeChain()));
466 return JSValue::encode(jsNumber(parseInt(value.toString(exec), radix)));
469 return JSValue::encode(value);
474 return JSValue::encode(jsNumber((d > 0) ? floor(d) : ceil(d)));
476 return JSValue::encode(jsNaN());
477 return JSValue::encode(jsNumber(0));
480 return JSValue::encode(jsNumbe
[all...]
H A DObjectConstructor.cpp109 return JSValue::encode(constructObject(exec, asInternalFunction(exec->callee())->globalObject(), args));
121 return JSValue::encode(constructObject(exec, asInternalFunction(exec->callee())->globalObject(), args));
134 return JSValue::encode(asObject(exec->argument(0))->prototype());
143 return JSValue::encode(jsNull());
147 return JSValue::encode(jsUndefined());
149 return JSValue::encode(jsUndefined());
163 return JSValue::encode(description);
177 return JSValue::encode(names);
191 return JSValue::encode(keys);
287 return JSValue::encode(jsNul
[all...]
H A DErrorConstructor.cpp46 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
59 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java109 * Object to encode
115 public Object encode(Object pObject) throws EncoderException { method in class:RefinedSoundex
117 throw new EncoderException("Parameter supplied to RefinedSoundex encode is not of type java.lang.String");
126 * A String object to encode
129 public String encode(String pString) { method in class:RefinedSoundex
153 * String to encode using the Refined Soundex algorithm
H A DSoundexUtils.java68 * The encoder to use to encode the Strings.
84 return differenceEncoded(encoder.encode(s1), encoder.encode(s2));
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DASN1OctetString.java128 abstract void encode(DEROutputStream out) method in class:ASN1OctetString
133 return "#"+new String(Hex.encode(string));
H A DBERTaggedObject.java48 void encode( method in class:BERTaggedObject
104 super.encode(out);
/external/nist-sip/java/gov/nist/core/
H A DNameValue.java158 public String encode() { method in class:NameValue
159 return encode(new StringBuffer()).toString();
162 public StringBuffer encode(StringBuffer buffer) { method in class:NameValue
167 gv.encode(buffer);
172 buffer.append(name).append(separator).append(gvlist.encode());
194 gv.encode(buffer);
198 buffer.append(gvlist.encode());
282 return this.encode().toLowerCase().hashCode();
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAlertInfo.java73 encoding.append(LESS_THAN).append(uri.encode()).append(GREATER_THAN);
78 encoding.append(SEMICOLON).append(parameters.encode());
H A DCallInfo.java69 info.encode(buffer);
74 parameters.encode(buffer);
H A DCredentials.java101 public String encode() { method in class:Credentials
104 retval += SP + parameters.encode();
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAssertedIdentity.java80 retval.append(address.encode());
87 retval.append(COMMA + this.parameters.encode());
H A DPCalledPartyID.java75 retval.append(address.encode());
81 retval.append(SEMICOLON + this.parameters.encode());
H A DPProfileKey.java60 retval.append(address.encode());
65 retval.append(SEMICOLON + this.parameters.encode());
H A DPath.java74 retval.append(address.encode());
80 retval.append(SEMICOLON + this.parameters.encode());
/external/webkit/Source/WebCore/bindings/js/
H A DJSWebSocketCustom.cpp68 return JSValue::encode(JSValue());
72 return JSValue::encode(CREATE_DOM_OBJECT_WRAPPER(exec, jsConstructor->globalObject(), WebSocket, webSocket.get()));
H A DJSHTMLAllCollectionCustom.cpp65 return JSValue::encode(jsUndefined());
79 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index)));
82 return JSValue::encode(getNamedItems(exec, jsCollection, Identifier(exec, string)));
94 return JSValue::encode(toJS(exec, jsCollection->globalObject(), node));
100 return JSValue::encode(jsUndefined());
H A DJSHTMLCollectionCustom.cpp61 return JSValue::encode(jsUndefined());
75 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index)));
78 return JSValue::encode(getNamedItems(exec, jsCollection, Identifier(exec, string)));
90 return JSValue::encode(toJS(exec, jsCollection->globalObject(), node));
96 return JSValue::encode(jsUndefined());
/external/webkit/Source/WebKit2/Shared/
H A DWebPopupItem.cpp66 void WebPopupItem::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::WebPopupItem
68 encoder->encode(CoreIPC::In(static_cast<uint32_t>(m_type), m_text, static_cast<uint64_t>(m_textDirection), m_hasTextDirectionOverride, m_toolTip, m_accessibilityText, m_isEnabled, m_isLabel));
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
H A DTimeStampRespTest.java89 ASN1OctetString.getInstance().encode(
90 TSTInfo.ASN1.encode(tSTInfo)));
99 byte [] encoding = TimeStampResp.ASN1.encode(response);
105 PKIStatusInfo.ASN1.encode(status), PKIStatusInfo.ASN1
106 .encode(decoded.getStatus())));
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressImpl.java88 return that.getMatcher().match(this.encode());
163 public String encode() { method in class:AddressImpl
164 return encode(new StringBuffer()).toString();
167 public StringBuffer encode(StringBuffer buffer) { method in class:AddressImpl
181 address.encode(buffer);
/external/v8/src/mips/
H A Dcode-stubs-mips.h119 return OpBits::encode(op_)
120 | ModeBits::encode(mode_)
121 | KnownIntBits::encode(MinorKeyForKnownInt())
122 | TypeInfoBits::encode(runtime_operands_type_)
123 | RegisterBits::encode(lhs_.is(a0));
281 return OpBits::encode(op_)
282 | ModeBits::encode(mode_)
283 | FPUBits::encode(use_fpu_)
284 | OperandTypeInfoBits::encode(operands_type_)
285 | ResultTypeInfoBits::encode(result_type
[all...]

Completed in 366 milliseconds

1234567891011>>