HomeSort by relevance Sort by last modified time
    Searched refs:ENCODING (Results 1 - 25 of 28) sorted by null

1 2

  /external/expat/lib/
xmltok.h 125 struct encoding;
126 typedef struct encoding ENCODING;
128 typedef int (PTRCALL *SCANNER)(const ENCODING *,
133 struct encoding { struct
136 int (PTRCALL *sameName)(const ENCODING *,
139 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
144 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
145 int (PTRCALL *getAtts)(const ENCODING *enc
    [all...]
xmltok_ns.c 8 const ENCODING *
14 const ENCODING *
29 static const ENCODING * const NS(encodings)[] = {
40 NS(initScanProlog)(const ENCODING *enc, const char *ptr, const char *end,
48 NS(initScanContent)(const ENCODING *enc, const char *ptr, const char *end,
56 NS(XmlInitEncoding)(INIT_ENCODING *p, const ENCODING **encPtr,
71 static const ENCODING *
72 NS(findEncoding)(const ENCODING *enc, const char *ptr, const char *end)
92 const ENCODING *enc,
99 const ENCODING **encoding
    [all...]
xmlrole.c 105 const ENCODING *enc);
132 const ENCODING *enc)
169 const ENCODING *enc)
200 const ENCODING *enc)
221 const ENCODING *enc)
239 const ENCODING *enc)
269 const ENCODING *enc)
286 const ENCODING *enc)
303 const ENCODING *enc)
323 const ENCODING *enc
    [all...]
xmltok.c 125 isNever(const ENCODING *enc, const char *p)
131 utf8_isName2(const ENCODING *enc, const char *p)
137 utf8_isName3(const ENCODING *enc, const char *p)
145 utf8_isNmstrt2(const ENCODING *enc, const char *p)
151 utf8_isNmstrt3(const ENCODING *enc, const char *p)
159 utf8_isInvalid2(const ENCODING *enc, const char *p)
165 utf8_isInvalid3(const ENCODING *enc, const char *p)
171 utf8_isInvalid4(const ENCODING *enc, const char *p)
177 ENCODING enc;
180 int (PTRFASTCALL *byteType)(const ENCODING *, const char *)
1093 const ENCODING **encoding, variable
    [all...]
xmltok_impl.c 93 PREFIX(scanComment)(const ENCODING *enc, const char *ptr,
131 PREFIX(scanDecl)(const ENCODING *enc, const char *ptr,
178 PREFIX(checkPiTarget)(const ENCODING *enc, const char *ptr,
223 PREFIX(scanPi)(const ENCODING *enc, const char *ptr,
285 PREFIX(scanCdataSection)(const ENCODING *enc, const char *ptr,
305 PREFIX(cdataSectionTok)(const ENCODING *enc, const char *ptr,
383 PREFIX(scanEndTag)(const ENCODING *enc, const char *ptr,
432 PREFIX(scanHexCharRef)(const ENCODING *enc, const char *ptr,
464 PREFIX(scanCharRef)(const ENCODING *enc, const char *ptr,
496 PREFIX(scanRef)(const ENCODING *enc, const char *ptr, const char *end
    [all...]
xmlrole.h 92 const ENCODING *enc);
xmlparse.c 171 version of the name (in the document encoding) is shared with the
181 const char *rawName; /* tagName in the original encoding */
183 TAG_NAME name; /* tagName in the API encoding */
330 doProlog(XML_Parser parser, const ENCODING *enc, const char *s,
337 doContent(XML_Parser parser, int startTagLevel, const ENCODING *enc,
341 doCdataSection(XML_Parser parser, const ENCODING *, const char **startPtr,
345 doIgnoreSection(XML_Parser parser, const ENCODING *, const char **startPtr,
350 storeAtts(XML_Parser parser, const ENCODING *, const char *s,
359 storeAttributeValue(XML_Parser parser, const ENCODING *, XML_Bool isCdata,
362 appendAttributeValue(XML_Parser parser, const ENCODING *, XML_Bool isCdata
588 #define encoding macro
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
OutputKeys.java 75 * encoding = <var>string</var>.
77 * <p><code>encoding</code> specifies the preferred character
78 * encoding that the Transformer should use to encode sequences of
79 * characters as sequences of bytes. The value of the encoding property should be
88 public static final String ENCODING = "encoding";
187 * according to the character encoding actually used by the output
  /external/oauth/core/src/main/java/net/oauth/signature/
HMAC_SHA1.java 69 byte[] keyBytes = keyString.getBytes(ENCODING);
76 byte[] text = baseString.getBytes(ENCODING);
81 private static final String ENCODING = OAuth.ENCODING;
RSA_SHA1.java 193 byte[] signature = sign(baseString.getBytes(OAuth.ENCODING));
207 baseString.getBytes(OAuth.ENCODING));
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 38 /** The encoding used to represent characters as bytes. */
39 public static final String ENCODING = "UTF-8";
89 * name/value pairs. Use OAuth percent encoding (not exactly the encoding
160 return URLEncoder.encode(s, ENCODING)
172 return URLDecoder.decode(s, ENCODING);
  /external/chromium/third_party/icu/source/tools/genrb/
genrb.c 46 ENCODING,
97 const char *encoding = ""; local
137 "\t-e or --encoding encoding of source files\n"
144 "\t-j or --write-java write a Java ListResourceBundle for ICU4J, followed by optional encoding\n"
202 if(options[ENCODING].doesOccur) {
203 encoding = options[ENCODING].value;
260 processFile(arg, encoding, inputDir, outputDir, gPackageName, &status);
377 printf("autodetected encoding %s\n", cp)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 292 == m_text_properties.getProperty(OutputKeys.ENCODING))
296 OutputKeys.ENCODING,
ToStream.java 66 * The encoding information associated with this serializer.
67 * Although initially there is no encoding,
69 * that every character is in the encoding. This is useful
71 * no associated encoding. A serializer in final output state
72 * will have an encoding, and will worry about whether
74 * characters in the output encoding.
163 * Flag to quickly tell if the encoding is UTF8.
408 if (OutputKeys.ENCODING.equals(name)) {
411 // if the encoding is being set, try to get the
417 final String oldExplicitEncoding = getOutputPropertyNonDefault(OutputKeys.ENCODING);
715 String encoding = getOutputProperty(OutputKeys.ENCODING); local
1019 final String encoding = getEncoding(); local
2070 String encoding = getEncoding(); local
    [all...]
SerializerBase.java 556 * Returns the character encoding to be used in the output document.
557 * @return the character encoding to be used in the output document.
561 return getOutputProperty(OutputKeys.ENCODING);
565 * Sets the character encoding coming from the xsl:output encoding stylesheet attribute.
566 * @param m_encoding the character encoding
568 public void setEncoding(String encoding)
570 setOutputProperty(OutputKeys.ENCODING,encoding);
    [all...]
  /external/chromium/third_party/icu/source/tools/ctestfw/
uperf.cpp 29 "\t-e or --encoding encoding of source files\n"
48 ENCODING,
79 ucharBuf(NULL), encoding(""),
95 ucharBuf(NULL), encoding(""),
142 if(options[ENCODING].doesOccur) {
143 encoding = options[ENCODING].value;
196 ucharBuf = ucbuf_open(resolvedFileName,&encoding,TRUE,FALSE,&status);
  /external/icu4c/tools/ctestfw/
uperf.cpp 29 "\t-e or --encoding encoding of source files\n"
48 ENCODING,
79 ucharBuf(NULL), encoding(""),
95 ucharBuf(NULL), encoding(""),
142 if(options[ENCODING].doesOccur) {
143 encoding = options[ENCODING].value;
196 ucharBuf = ucbuf_open(resolvedFileName,&encoding,TRUE,FALSE,&status);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 85 * Encoding to use when showing parsed results in a {@link WebView}.
87 public static final String ENCODING = "utf-8";
LookupActivity.java 255 ExtendedWikiHelper.MIME_TYPE, ExtendedWikiHelper.ENCODING, null);
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorOutputElem.java 78 * Set the encoding property from the attribute value.
79 * @see javax.xml.transform.OutputKeys#ENCODING
84 m_outputProperties.setProperty(OutputKeys.ENCODING, newValue);
  /external/icu4c/tools/genrb/
genrb.c 48 ENCODING,
119 const char *encoding = ""; local
177 "\t-e or --encoding encoding of source files\n"
184 "\t-j or --write-java write a Java ListResourceBundle for ICU4J, followed by optional encoding\n"
250 if(options[ENCODING].doesOccur) {
251 encoding = options[ENCODING].value;
420 processFile(arg, encoding, inputDir, outputDir, gPackageName, &status);
548 printf("autodetected encoding %s\n", cp)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
XMLWriter.java 518 write(" encoding=\"");
    [all...]
CommandLine.java 49 options.put("--output-encoding=", Boolean.FALSE); // output encoding
51 options.put("--encoding=", Boolean.FALSE); // specify encoding
201 if (hasOption(options, "--encoding=")) {
202 // System.out.println("%% Found --encoding");
203 String encoding = (String)options.get("--encoding="); local
204 if (encoding != null) s.setEncoding(encoding);
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
OutputProperties.java 652 || key.equals(OutputKeys.ENCODING)
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java     [all...]

Completed in 612 milliseconds

1 2