Searched defs:converter (Results 1 - 25 of 51) sorted by relevance

123

/external/clang/test/CodeGen/
H A D2003-11-20-UnionBitfield.c5 char converter; member in struct:printf_spec
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
H A DX9FieldElement.java19 private static X9IntegerConverter converter = new X9IntegerConverter(); field in class:X9FieldElement
59 int byteCount = converter.getByteLength(f);
60 byte[] paddedBigInteger = converter.integerToBytes(f.toBigInteger(), byteCount);
/external/icu4c/samples/cal/
H A Duprint.c28 /* converter */
29 UConverter *converter; local
46 /* open a default converter */
47 converter = ucnv_open(0, status);
58 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
73 /* close the converter */
74 ucnv_close(converter);
/external/icu4c/samples/date/
H A Duprint.c29 /* converter */
30 UConverter *converter; local
47 /* open a default converter */
48 converter = ucnv_open(0, status);
59 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
74 /* close the converter */
75 ucnv_close(converter);
/external/v8/test/cctest/
H A Dtest-disasm-arm.cc53 disasm::NameConverter converter; local
54 disasm::Disassembler disasm(converter);
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecICU.h68 ICUConverterWrapper() : converter(0) { }
71 UConverter* converter; member in struct:WebCore::ICUConverterWrapper
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.h64 TECConverterWrapper() : converter(0), encoding(invalidEncoding) { }
65 ~TECConverterWrapper() { if (converter) TECDisposeConverter(converter); }
67 TECObjectRef converter; member in struct:WebCore::TECConverterWrapper
/external/chromium/googleurl/src/
H A Durl_canon_query.cc94 // Runs the converter on the given UTF-8 input. Since the converter expects
95 // UTF-16, we have to convert first. The converter must be non-NULL.
98 CharsetConverter* converter,
104 converter->ConvertFromUTF16(utf16.data(), utf16.length(), output);
107 // Runs the converter with the given UTF-16 input. We don't have to do
112 CharsetConverter* converter,
114 converter->ConvertFromUTF16(&spec[query.begin], query.len, output);
120 CharsetConverter* converter,
128 if (converter) {
96 RunConverter(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
110 RunConverter(const char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
118 DoConvertToQueryEncoding(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
143 DoCanonicalizeQuery(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
163 CanonicalizeQuery(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
172 CanonicalizeQuery(const char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
181 ConvertUTF16ToQueryEncoding(const char16* input, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
[all...]
/external/icu4c/common/
H A Ducnv_cb.c46 args->converter,
62 just retry shoving data through the same converter. Note, if you got
81 ucnv_fromUnicode(args->converter,
115 errBuffLen = args->converter->charErrorBufferLength;
118 newTarget = (char *)(args->converter->charErrorBuffer + errBuffLen);
120 newTargetLimit = (char *)(args->converter->charErrorBuffer +
121 sizeof(args->converter->charErrorBuffer));
129 /* We're going to tell the converter that the errbuff len is empty.
131 itself. If the errbuff is needed by the converter this time,
134 args->converter
179 UConverter *converter; local
[all...]
H A Dustr_cnv.c30 /* mutexed access to a shared default converter ----------------------------- */
37 UConverter *converter = NULL; local
44 converter = gDefaultConverter;
50 /* if the cache was empty, create a converter */
51 if(converter == NULL) {
52 converter = ucnv_open(NULL, status);
54 ucnv_close(converter);
55 converter = NULL;
59 return converter;
63 u_releaseDefaultConverter(UConverter *converter) argument
86 UConverter *converter = NULL; local
[all...]
H A Dunistr_cnv.cpp104 // use the provided converter
108 // use the default converter
171 // create the converter
172 UConverter *converter; local
187 converter = u_getDefaultConverter(&status);
199 converter = ucnv_open(codepage, &status);
202 length = doExtract(start, length, target, capacity, converter, status);
204 // close the converter
206 u_releaseDefaultConverter(converter);
208 ucnv_close(converter);
323 UConverter *converter; local
365 doCodepageCreate(const char *codepageData, int32_t dataLength, UConverter *converter, UErrorCode &status) argument
[all...]
/external/icu4c/common/unicode/
H A Ducnv_err.h26 * and ucnv_setToUCallback functions, to set the behaviour of a converter
174 UCNV_CLOSE = 4, /**< Called when the converter is closed. The
177 converter. the pointer available as the
180 by the new converter, the callback must clone
194 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
195 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 */ member in struct:__anon4716
210 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
211 UConverter *converter; /**< Pointer to the converter tha member in struct:__anon4717
[all...]
/external/icu4c/io/
H A Dustream.cpp45 UConverter *converter; local
48 // use the default converter to convert chunks of text
49 converter = u_getDefaultConverter(&errorCode);
57 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
65 u_releaseDefaultConverter(converter);
85 UConverter *converter; local
88 // use the default converter to convert chunks of text
89 converter = u_getDefaultConverter(&errorCode);
118 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
162 u_releaseDefaultConverter(converter);
[all...]
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Ducnv_err.h26 * and ucnv_setToUCallback functions, to set the behaviour of a converter
167 UCNV_CLOSE = 4, /**< Called when the converter is closed. The
170 converter. the pointer available as the
173 by the new converter, the callback must clone
187 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
188 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 */ member in struct:__anon11601
203 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
204 UConverter *converter; /**< Pointer to the converter tha member in struct:__anon11602
[all...]
/external/webkit/Source/JavaScriptGlue/icu/unicode/
H A Ducnv_err.h26 * and ucnv_setToUCallback functions, to set the behaviour of a converter
167 UCNV_CLOSE = 4, /**< Called when the converter is closed. The
170 converter. the pointer available as the
173 by the new converter, the callback must clone
187 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
188 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 */ member in struct:__anon11678
203 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
204 UConverter *converter; /**< Pointer to the converter tha member in struct:__anon11679
[all...]
/external/webkit/Source/WebCore/icu/unicode/
H A Ducnv_err.h26 * and ucnv_setToUCallback functions, to set the behaviour of a converter
167 UCNV_CLOSE = 4, /**< Called when the converter is closed. The
170 converter. the pointer available as the
173 by the new converter, the callback must clone
187 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
188 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 */ member in struct:__anon11844
203 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
204 UConverter *converter; /**< Pointer to the converter tha member in struct:__anon11845
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
H A DKeyAgreement.java57 private static final X9IntegerConverter converter = new X9IntegerConverter(); field in class:KeyAgreement
88 return converter.integerToBytes(r, converter.getByteLength(parameters.getG().getX()));
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java22 private static X9IntegerConverter converter = new X9IntegerConverter(); field in class:ECPoint
203 int qLength = converter.getByteLength(x);
218 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength);
228 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength);
229 byte[] Y = converter.integerToBytes(this.getY().toBigInteger(), qLength);
384 int byteCount = converter.getByteLength(this.x);
385 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), byteCount);
413 byte[] Y = converter.integerToBytes(this.getY().toBigInteger(), byteCount);
/external/chromium/base/i18n/
H A Dicu_string_conversions.cc80 bool ConvertFromUTF16(UConverter* converter, const UChar* uchar_src, argument
84 ucnv_getMaxCharSize(converter));
92 ucnv_setFromUCallBack(converter, UCNV_FROM_U_CALLBACK_STOP, 0,
97 ucnv_setFromUCallBack(converter, UCNV_FROM_U_CALLBACK_SKIP, 0,
105 int actual_size = ucnv_fromUChars(converter, &(*encoded)[0],
108 ucnv_close(converter);
117 UConverter* converter, UErrorCode* status) {
120 ucnv_setToUCallBack(converter, UCNV_TO_U_CALLBACK_STOP, 0,
124 ucnv_setToUCallBack(converter, UCNV_TO_U_CALLBACK_SKIP, 0,
128 ucnv_setToUCallBack(converter, ToUnicodeCallbackSubstitut
116 SetUpErrorHandlerForToUChars(OnStringConversionError::Type on_error, UConverter* converter, UErrorCode* status) argument
160 UConverter* converter = ucnv_open(codepage_name, &status); local
175 UConverter* converter = ucnv_open(codepage_name, &status); local
[all...]
/external/icu4c/extra/uconv/
H A Duwmsg.c40 /* converter */
41 UConverter *converter; local
56 /* open a default converter */
57 converter = ucnv_open(0, status);
68 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
83 /* close the converter */
84 ucnv_close(converter);
/external/javassist/src/main/javassist/tools/reflect/
H A DReflection.java81 protected CodeConverter converter; field in class:Reflection
97 converter = new CodeConverter();
129 clazz.instrument(converter);
231 converter.replaceFieldRead(f, clazz, readPrefix + name);
232 converter.replaceFieldWrite(f, clazz, writePrefix + name);
/external/qemu/android/utils/
H A Dmapfile.c168 LARGE_INTEGER converter; local
209 converter.QuadPart = map_offset + map_size;
211 converter.HighPart, converter.LowPart, NULL);
213 converter.QuadPart = map_offset;
214 mapped_at = MapViewOfFile(map_handle, win32_map, converter.HighPart,
215 converter.LowPart, map_size);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dregister.h40 // and converter.
49 Converter converter; member in struct:fst::FstRegister::Entry
50 Entry() : reader(0), converter(0) {}
63 return GetEntry(type).converter;
141 entry.converter = &FstRegisterer<F>::Convert;
161 converter = registr->GetConverter(ftype); local
162 if (!converter) {
168 return converter(fst);
/external/v8/src/
H A Ddisassembler.cc112 const V8NameConverter& converter,
123 disasm::Disassembler d(converter);
125 if (converter.code() != NULL) {
126 it = new RelocIterator(converter.code());
111 DecodeIt(FILE* f, const V8NameConverter& converter, byte* begin, byte* end) argument
H A Dsafepoint-table.cc87 disasm::NameConverter converter; local
104 PrintF(" | %s", converter.NameOfCPURegister(j));

Completed in 2908 milliseconds

123