HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 276 - 300 of 1021) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/util/logging/
Handler.java 35 // the character encoding used by this handler
36 private String encoding; field in class:Handler
52 * {@code ErrorManager}, the default encoding, and the default logging
58 this.encoding = null;
96 * encoding
141 // set encoding
142 final String encodingName = manager.getProperty(prefix + ".encoding");
146 printInvalidPropMessage("encoding", encodingName, e);
171 * Gets the character encoding used by this handler, {@code null} for
172 * default encoding
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
ContentInfo.java 55 private byte[] encoding; field in class:ContentInfo
57 private ContentInfo(int[] oid, Object content, byte[] encoding) {
60 this.encoding = encoding;
79 if (encoding == null) {
80 encoding = ASN1.encode(this);
83 // public API, so encoding is not copied. The classes which use
84 // this class should copy encoding before passing it out.
85 return encoding;
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
TimeStampReq.java 63 private byte [] encoding; field in class:TimeStampReq
78 Extensions extensions, byte [] encoding) {
80 this.encoding = encoding;
107 if (encoding == null) {
108 encoding = ASN1.encode(this);
110 return encoding;
  /packages/apps/Email/src/org/apache/commons/io/output/
LockableFileWriter.java 40 * The encoding may also be specified, and defaults to the platform default.
137 * Constructs a LockableFileWriter with a file encoding.
140 * @param encoding the encoding to use, null means platform default
144 public LockableFileWriter(File file, String encoding) throws IOException {
145 this(file, encoding, false, null);
149 * Constructs a LockableFileWriter with a file encoding.
152 * @param encoding the encoding to use, null means platform default
158 public LockableFileWriter(File file, String encoding, boolean append,
    [all...]
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.cpp 60 if (CharsetTable[i].encoding != lastEncoding) {
61 lastEncoding = CharsetTable[i].encoding;
78 if (CharsetTable[i].encoding != lastEncoding) {
79 registrar(CharsetTable[i].name, newTextCodecMac, &CharsetTable[i].encoding);
80 lastEncoding = CharsetTable[i].encoding;
84 TextCodecMac::TextCodecMac(TECTextEncodingID encoding)
85 : m_encoding(encoding)
103 cachedConverter.encoding = m_encoding;
112 bool cachedEncodingEqual = cachedConverter.encoding == m_encoding;
113 cachedConverter.encoding = invalidEncoding
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.prog 3 function loadFile(fileName, encoding) {
8 if (encoding) {
9 isr = new java.io.InputStreamReader(fis, encoding);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 42 * whether provided form is PEM encoding or not.<br>
57 * generated on the base of the encoding with the SIMILAR prefix or not.
59 * But it prevents us from use of expensive full encoding
62 * 2. If predetermination ends with success, the whole encoding
76 // value generated on the base of the prefix of encoding
78 // value generated on the base of the tail of encoding
100 // The hash-encoding-object correspondence is made by means of index
102 // corresponds to the encoding contained in encodings[N] which corresponds
160 * similar encoding or not (by means of <code>contains(long)</code> method),
166 * of the encoding
    [all...]
X509CertPathImpl.java 81 // supported encoding types:
85 // supported encoding names
90 // PkiPath encoding of the certification path
92 // PKCS7 encoding of the certification path
122 * @param encoding - encoded form of certification path.
124 private X509CertPathImpl(List certs, int type, byte[] encoding) {
127 this.pkiPathEncoding = encoding;
129 this.pkcs7Encoding = encoding;
151 * Generates certification path object on the base of encoding provided via
153 * parameter <code>encoding</code>
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
RFC1522Codec.java 31 * describes techniques to allow the encoding of non-ASCII text in
48 * Applies an RFC 1522 compliant encoding scheme to the given string of text with the
58 * @throws EncoderException thrown if there is an error conidition during the Encoding
63 * encoding names</a>
117 throw new DecoderException("RFC 1522 violation: encoding token not found");
119 String encoding = text.substring(from, to); local
120 if (!getEncoding().equalsIgnoreCase(encoding)) {
122 encoding + " encoded content");
132 * Returns the codec name (referred to as encoding in the RFC 1522)
139 * Encodes an array of bytes using the defined encoding schem
    [all...]
  /external/chromium/base/i18n/
icu_encoding_detection.cc 14 bool DetectEncoding(const std::string& text, std::string* encoding) {
16 *encoding = std::string();
33 *encoding = detected_encoding;
52 // ICU has some heuristics for encoding detection, such that the more likely
64 // If we failed to get the encoding's name, ignore the error.
74 // A confidence level >= 10 means that the encoding is expected to properly
  /external/chromium/chrome/browser/ui/toolbar/
encoding_menu_controller_unittest.cc 62 std::string encoding("UTF-8");
72 encoding,
84 encoding,
86 // Only one item in the encoding menu can be selected at a time.
91 // Make sure at least one encoding is enabled.
  /external/elfutils/backends/
i386_retval.c 119 Dwarf_Word encoding; local
122 &encoding) != 0)
124 if (encoding == DW_ATE_float)
ppc_retval.c 125 Dwarf_Word encoding; local
129 &encoding) != 0)
131 if (encoding == DW_ATE_float)
s390_retval.c 125 Dwarf_Word encoding; local
128 &encoding) != 0)
130 if (encoding == DW_ATE_float && size <= 8)
ppc64_retval.c 121 Dwarf_Word encoding; local
124 &encoding) != 0)
127 if (encoding == DW_ATE_float || encoding == DW_ATE_complex_float)
  /external/chromium/webkit/glue/
ftp_directory_listing_response_delegate.cc 37 // Try detecting the encoding. The sample is rather small though, so it may
39 std::string encoding;
40 if (base::DetectEncoding(path, &encoding) && !encoding.empty()) {
42 if (base::CodepageToUTF16(path, encoding.c_str(),
49 // Use system native encoding as the last resort.
  /external/icu4c/i18n/
csdetect.h 42 void setDeclaredEncoding(const char *encoding, int32_t len) const;
inputext.cpp 57 void InputText::setDeclaredEncoding(const char* encoding, int32_t len)
59 if(encoding) {
61 len = (int32_t)uprv_strlen(encoding);
67 uprv_strncpy(fDeclaredEncoding, encoding, len);
  /external/icu4c/samples/uresb/
resources.mak 27 $(GENRB) $(GENRBOPT) --encoding cp1251 $?
  /external/iproute2/include/linux/hdlc/
ioctl.h 51 unsigned short encoding; member in struct:__anon7749
  /external/nist-sip/java/gov/nist/javax/sip/header/
StatusLine.java 116 String encoding = SIPConstants.SIP_VERSION_STRING + SP + statusCode; local
118 encoding += SP + reasonPhrase;
119 encoding += NEWLINE;
120 return encoding;
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_wave.h 48 Uint16 encoding; member in struct:WaveFMT
  /external/webkit/Source/WebCore/html/
FileInputType.cpp 57 bool FileInputType::appendFormData(FormDataList& encoding, bool multipart) const
70 encoding.appendData(element()->name(), fileList->item(i)->fileName());
77 encoding.appendBlob(element()->name(), File::create(""));
82 encoding.appendBlob(element()->name(), fileList->item(i));
ImageInputType.cpp 55 bool ImageInputType::appendFormData(FormDataList& encoding, bool) const
60 encoding.appendData(name.isEmpty() ? "x" : (name + ".x"), m_clickLocation.x());
61 encoding.appendData(name.isEmpty() ? "y" : (name + ".y"), m_clickLocation.y());
63 encoding.appendData(name, element()->value());
  /external/webkit/Source/WebCore/html/parser/
HTMLMetaCharsetParser.h 46 // Returns true if done checking, regardless whether an encoding is found.
49 const TextEncoding& encoding() { return m_encoding; } function in class:WebCore::HTMLMetaCharsetParser

Completed in 1304 milliseconds

<<11121314151617181920>>