| /external/icu4c/tools/genren/ |
| genren.pl | 9 #* encoding: US-ASCII 81 * encoding: US-ASCII
|
| /external/libxml2/include/libxml/ |
| xmlIO.h | 120 #include <libxml/encoding.h>
|
| /external/quake/quake/src/QW/client/ |
| client.h | 494 char encoding; member in struct:__anon6686
|
| skin.c | 142 || pcx->encoding != 1
|
| /external/srec/srec/EventLog/src/ |
| riff.c | 791 char *encoding = getSwiRiffKVal(swichunk, "orig-encoding"); local 792 if (!encoding) 794 else if (! strcmp(encoding, "g723")) 795 *audio_type = L"audio/basic;rate=8000;orig-encoding=g723"; 796 else if (! strcmp(encoding, "g729")) 797 *audio_type = L"audio/basic;rate=8000;orig-encoding=g729"; 800 // FIXME: warning because unknown orig-encoding?? 816 *audio_type = L"application/x-feature;rate=8000;encoding=swifeature_aurora"; 818 *audio_type = L"application/x-feature;rate=11000;encoding=swifeature_aurora" [all...] |
| /external/webkit/WebCore/bridge/objc/ |
| objc_instance.mm | 359 [targetObject setValue:objcValue.objectValue forUndefinedKey:[NSString stringWithCString:property.ascii() encoding:NSASCIIStringEncoding]]; 385 id objcValue = [targetObject valueForUndefinedKey:[NSString stringWithCString:property.ascii() encoding:NSASCIIStringEncoding]];
|
| /external/webkit/WebCore/dom/ |
| ProcessingInstruction.cpp | 168 charset = document()->frame()->loader()->encoding();
|
| ScriptElement.cpp | 254 // First we try to get encoding from charset attribute. 257 // If charset has not been declared in script tag, fall back to frame encoding. 260 charset = frame->loader()->encoding();
|
| XMLTokenizer.h | 246 void startDocument(const xmlChar* version, const xmlChar* encoding, int standalone);
|
| /external/webkit/WebKit/chromium/src/ |
| ContextMenuClientImpl.cpp | 187 data.frameEncoding = selectedFrame->loader()->encoding();
|
| WebFrameImpl.h | 71 virtual WebString encoding() const;
|
| WebViewImpl.h | 104 virtual void setPageEncoding(const WebString& encoding);
|
| WebFrameImpl.cpp | 414 WebString WebFrameImpl::encoding() const function in class:WebKit::WebFrameImpl 416 return frame()->loader()->encoding(); 892 // Set the text encoding. This calls begin() for us. It is safe to call 895 String encoding = documentLoader->overrideEncoding(); local 896 if (encoding.isNull()) { 898 encoding = documentLoader->response().textEncodingName(); 900 m_frame->loader()->setEncoding(encoding, userChosen); [all...] |
| /external/webkit/WebKit/gtk/WebCoreSupport/ |
| FrameLoaderClientGtk.cpp | 144 // Setting the encoding on the frame loader is our way to get work done that is normally done 146 String encoding = loader->overrideEncoding(); local 147 bool userChosen = !encoding.isNull(); 149 encoding = loader->response().textEncodingName(); 152 frameLoader->setEncoding(encoding, userChosen); [all...] |
| /external/webkit/WebKit/win/ |
| WebHTMLRepresentation.cpp | 310 *source = WebCore::BString(decoder->encoding().decode(dataBuffer.data(), dataBuffer.size())).release();
|
| /libcore/ |
| JavaLibrary.mk | 75 LOCAL_JAVACFLAGS := -encoding UTF-8 286 LOCAL_JAVACFLAGS := -encoding UTF-8
|
| /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/ |
| AddressListParser.java | 727 public AddressListParser(java.io.InputStream stream, String encoding) { 728 try { jj_input_stream = new SimpleCharStream(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); } 740 public void ReInit(java.io.InputStream stream, String encoding) { 741 try { jj_input_stream.ReInit(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }
|
| /external/libxml2/ |
| xmlwriter.c | 507 * @encoding: the encoding or NULL for default 516 const char *encoding, const char *standalone) 537 if (encoding != NULL) { 538 encoder = xmlFindCharEncodingHandler(encoding); 552 if ((writer->doc != NULL) && (writer->doc->encoding == NULL)) 553 writer->doc->encoding = xmlStrdup((xmlChar *)writer->out->encoder->name); 578 count = xmlOutputBufferWriteString(writer->out, " encoding="); [all...] |
| xmlIO.c | 591 * @path: the path in utf-8 encoding 609 /* maybe path in native encoding */ 618 * @path: the path in utf-8 encoding 637 /* maybe path in native encoding */ 3632 const char *encoding; local [all...] |
| /prebuilt/common/commons-compress/ |
| commons-compress-1.0.jar | |
| /external/chromium/third_party/icu/source/test/testdata/ |
| testdata.mak | 81 @echo Making Test Resource Bundle file with encoding ISCII,version=0
|
| /external/freetype/include/freetype/ |
| freetype.h | 459 /* character codes in a given encoding into glyph indexes for its */ 738 FT_Encoding encoding; member in struct:FT_CharMapRec_ [all...] |
| /external/webkit/WebCore/xml/ |
| XMLHttpRequest.cpp | 74 m_forbiddenRequestHeaders.add("accept-encoding"); 79 m_forbiddenRequestHeaders.add("content-transfer-encoding"); 90 m_forbiddenRequestHeaders.add("transfer-encoding"); 396 // FIXME: this should include the charset used for encoding. 404 // FIXME: this should use value of document.inputEncoding to determine the encoding to use. 405 TextEncoding encoding = UTF8Encoding(); local 406 m_requestEntityBody = FormData::create(encoding.encode(body.characters(), body.length(), EntitiesForUnencodables)); 901 // Don't stop on encoding errors, unlike it is done for other kinds of XML resources. This matches the behavior of previous WebKit versions, Firefox and Opera.
|
| /hardware/ril/mock-ril/src/cpp/ |
| node_buffer.cpp | 197 enum encoding e = ParseEncoding(args[1], UTF8); 605 enum encoding e = ParseEncoding(args[1], UTF8);
|
| /libcore/luni/src/main/java/org/apache/xml/serializer/ |
| ToUnknownStream.java | 661 public void setEncoding(String encoding) 663 m_handler.setEncoding(encoding); [all...] |