/external/v8/src/ |
compiler.h | 90 return IsNative::decode(flags_);
|
/external/webkit/Source/WebCore/fileapi/ |
FileReaderLoader.cpp | 274 // Decode the data. 282 builder.append(m_decoder->decode(static_cast<const char*>(m_rawData->data()), m_bytesLoaded));
|
/external/webkit/Source/WebCore/page/ |
EventSource.cpp | 222 append(m_receiveBuf, m_decoder->decode(data, length));
|
/external/webkit/Source/WebCore/platform/text/ |
TextCodecLatin1.cpp | 114 // ASCII and Latin-1 both decode as Windows Latin-1 although they retain unique identities. 119 String TextCodecLatin1::decode(const char* bytes, size_t length, bool, bool, bool&) function in class:WebCore::TextCodecLatin1
|
TextCodecUTF8.cpp | 216 String TextCodecUTF8::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) function in class:WebCore::TextCodecUTF8
|
/external/webkit/Source/WebCore/platform/wince/ |
PasteboardWinCE.cpp | 273 String cf_html(UTF8Encoding().decode((char*)GlobalLock(cbData), dataSize));
|
/external/webkit/Source/WebKit/win/ |
WebHTMLRepresentation.cpp | 310 *source = WebCore::BString(decoder->encoding().decode(dataBuffer.data(), dataBuffer.size())).release();
|
/external/webkit/Source/WebKit2/Shared/ |
WebPreferencesStore.h | 156 static bool decode(CoreIPC::ArgumentDecoder*, WebPreferencesStore&);
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
api.py | 57 # expects a file-like object which vends unicode(), so we decode here. 59 changelog_file = StringIO.StringIO(changelog_contents.decode("utf-8", "ignore"))
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
executive_unittest.py | 121 unicode_tor_output = encoded_tor.decode(encoding)
|
/external/webkit/Tools/gdb/ |
webkit.py | 68 string = struct.pack('H' * length, *char_vals).decode('utf-16', 'replace')
|
/frameworks/base/core/java/com/android/internal/backup/ |
LocalTransport.java | 238 String key = new String(Base64.decode(f.getName()));
|
/frameworks/base/core/java/com/android/internal/os/ |
LoggingPrintStream.java | 140 // decode bytes from the byte buffer into the char buffer 141 coderResult = decoder.decode(encodedBytes, decodedChars, false);
|
/frameworks/base/voip/jni/rtp/ |
AudioGroup.cpp | 106 void decode(int tick); 208 // the first time we successfully decode an incoming packet. 360 void AudioStream::decode(int tick) function in class:__anon15727::AudioStream 402 // Receive the packet and decode it. 432 length = mCodec->decode(samples, count, &buffer[offset], length); 756 ((AudioStream *)events[i].data.ptr)->decode(tick);
|
/libcore/luni/src/main/java/java/nio/charset/ |
CharsetEncoder.java | 594 * The given byte array is legal if and only if it can be decode into 612 CoderResult result = decoder.decode(in, out, true);
|
/libcore/luni/src/main/java/libcore/net/url/ |
JarURLConnectionImpl.java | 139 String decodedFile = UriCodec.decode(jarFileURL.getFile());
|
/libcore/luni/src/main/java/org/apache/harmony/security/utils/ |
JarUtils.java | 70 ContentInfo info = (ContentInfo)ContentInfo.ASN1.decode(bis);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x501/ |
AttributeValue.java | 72 this.rawString = (String) DirectoryString.ASN1.decode(in);
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
CharsetEncoderTest.java | 36 String output = ascii.decode(e.encode(CharBuffer.wrap(input))).toString();
|
CharsetTest.java | 207 CharBuffer out = cs.decode(in);
|
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
ExchangeDirectoryProviderTests.java | 123 new PackedString(Uri.decode(c.getString(GAL_RESULT_COLUMN_LOOKUP_KEY)));
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 188 node.decode();
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/ |
PlatformTarget.java | 368 return Integer.decode(value);
|
/system/core/libsysutils/src/ |
NetlinkEvent.cpp | 210 bool NetlinkEvent::decode(char *buffer, int size, int format) { function in class:NetlinkEvent
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
BeautifulSoup.py | 430 return self.decode().encode(encoding) 617 return self.decode(eventualEncoding=encoding) 629 return self.decode() 636 return self.decode(prettyPrint, indentLevel, encoding).encode(encoding) 638 def decode(self, prettyPrint=False, indentLevel=0, member in class:Tag 750 s.append(c.decode(prettyPrint, indentLevel, eventualEncoding)) [all...] |