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

123456

/external/clang/test/CodeGen/
H A D2003-11-20-UnionBitfield.c5 char converter; member in struct:printf_spec
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-arm.cc44 disasm::NameConverter converter; local
45 disasm::Disassembler disasm(converter);
H A Dtest-disasm-mips.cc44 disasm::NameConverter converter; local
45 disasm::Disassembler disasm(converter);
H A Dtest-disasm-mips64.cc44 disasm::NameConverter converter; local
45 disasm::Disassembler disasm(converter);
/external/bouncycastle/bcprov/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/chromium_org/components/cronet/
H A Durl_request_context_config.cc23 base::JSONValueConverter<URLRequestContextConfig::QuicHint>* converter) {
24 converter->RegisterStringField(REQUEST_CONTEXT_CONFIG_QUIC_HINT_HOST,
26 converter->RegisterIntField(
29 converter->RegisterIntField(
65 base::JSONValueConverter<URLRequestContextConfig>* converter) {
66 converter->RegisterBoolField(REQUEST_CONTEXT_CONFIG_ENABLE_QUIC,
68 converter->RegisterBoolField(REQUEST_CONTEXT_CONFIG_ENABLE_SPDY,
70 converter->RegisterStringField(REQUEST_CONTEXT_CONFIG_HTTP_CACHE,
72 converter->RegisterIntField(REQUEST_CONTEXT_CONFIG_HTTP_CACHE_MAX_SIZE,
74 converter
22 RegisterJSONConverter( base::JSONValueConverter<URLRequestContextConfig::QuicHint>* converter) argument
64 RegisterJSONConverter( base::JSONValueConverter<URLRequestContextConfig>* converter) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecICU.h75 ICUConverterWrapper() : converter(0) { }
78 UConverter* converter; member in struct:WTF::ICUConverterWrapper
/external/chromium_org/third_party/icu/source/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/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/icu/icu4c/source/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/chromium_org/media/filters/
H A Dh264_to_annex_b_bitstream_converter_unittest.cc271 // Initialize converter.
273 H264ToAnnexBBitstreamConverter converter; local
276 EXPECT_TRUE(converter.ParseConfiguration(
280 uint32 config_size = converter.GetConfigSize(avc_config_);
286 EXPECT_TRUE(converter.ConvertAVCDecoderConfigToByteStream(
292 uint32 output_size = converter.CalculateNeededOutputBufferSize(
302 EXPECT_TRUE(converter.ConvertNalUnitStreamToByteStream(
311 // Initialize converter
312 H264ToAnnexBBitstreamConverter converter; local
323 EXPECT_FALSE(converter
332 H264ToAnnexBBitstreamConverter converter; local
382 H264ToAnnexBBitstreamConverter converter; local
461 H264ToAnnexBBitstreamConverter converter; local
[all...]
/external/chromium_org/third_party/icu/source/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...]
/external/chromium_org/url/
H A Durl_canon_query.cc69 // Runs the converter on the given UTF-8 input. Since the converter expects
70 // UTF-16, we have to convert first. The converter must be non-NULL.
73 CharsetConverter* converter,
79 converter->ConvertFromUTF16(utf16.data(), utf16.length(), output);
82 // Runs the converter with the given UTF-16 input. We don't have to do
87 CharsetConverter* converter,
89 converter->ConvertFromUTF16(&spec[query.begin], query.len, output);
95 CharsetConverter* converter,
103 if (converter) {
71 RunConverter(const char* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
85 RunConverter(const base::char16* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
93 DoConvertToQueryEncoding(const CHAR* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
118 DoCanonicalizeQuery(const CHAR* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
138 CanonicalizeQuery(const char* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
147 CanonicalizeQuery(const base::char16* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
156 ConvertUTF16ToQueryEncoding(const base::char16* input, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
[all...]
H A Durl_canon_icu_unittest.cc39 // Returns the converter object, may be NULL.
40 UConverter* converter() const { return converter_; } function in class:url::__anon17213::UConvScoper
66 ASSERT_TRUE(conv.converter() != NULL);
67 ICUCharsetConverter converter(conv.converter());
74 converter.ConvertFromUTF16(input_str.c_str(), input_len, &output);
81 // the converter resizes as needed.
84 ASSERT_TRUE(conv.converter());
85 ICUCharsetConverter converter(conv.converter());
[all...]
/external/icu/icu4c/source/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...]
/external/chromium_org/base/metrics/
H A Dbucket_ranges.cc77 } converter; local
78 converter.range = value;
79 for (size_t i = 0; i < sizeof(converter); ++i)
80 sum = kCrcTable[(sum & 0xff) ^ converter.bytes[i]] ^ (sum >> 8);
88 } converter; local
89 DCHECK_EQ(sizeof(HistogramBase::Sample), sizeof(converter));
90 converter.range = value;
91 sum += converter.ints[0];
92 sum = (sum << 16) ^ sum ^ (static_cast<uint32>(converter.ints[1]) << 11);
/external/chromium_org/chrome/browser/apps/drive/
H A Ddrive_app_converter_browsertest.cc94 const DriveAppConverter* converter() const { return converter_.get(); } function in class:DriveAppConverterTest
97 void ConverterFinished(const DriveAppConverter* converter, bool success) { argument
111 const Extension* app = converter()->extension();
133 EXPECT_TRUE(converter()->extension() == NULL);
138 EXPECT_TRUE(converter()->extension() == NULL);
143 const Extension* first_install = converter()->extension();
145 EXPECT_TRUE(converter()->is_new_install());
151 const Extension* second_install = converter()->extension();
153 EXPECT_FALSE(converter()->is_new_install());
/external/chromium_org/net/cert/
H A Dct_log_response_parser.cc67 base::JSONValueConverter<JsonSignedTreeHead>* converter) {
68 converter->RegisterIntField("tree_size", &JsonSignedTreeHead::tree_size);
69 converter->RegisterDoubleField("timestamp", &JsonSignedTreeHead::timestamp);
70 converter->RegisterCustomField("sha256_root_hash",
73 converter->RegisterCustomField<DigitallySigned>(
117 base::JSONValueConverter<JsonSignedTreeHead> converter; local
118 if (!converter.Convert(*json.get(), &parsed_sth)) {
66 RegisterJSONConverter( base::JSONValueConverter<JsonSignedTreeHead>* converter) argument
/external/chromium_org/third_party/icu/source/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:__anon12023
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:__anon12024
[all...]
/external/chromium_org/third_party/icu/source/io/
H A Dustream.cpp41 UConverter *converter; local
44 // use the default converter to convert chunks of text
45 converter = u_getDefaultConverter(&errorCode);
53 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
61 u_releaseDefaultConverter(converter);
81 UConverter *converter; local
84 // use the default converter to convert chunks of text
85 converter = u_getDefaultConverter(&errorCode);
114 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
158 u_releaseDefaultConverter(converter);
[all...]
/external/icu/icu4c/source/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:__anon21813
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:__anon21814
[all...]
/external/icu/icu4c/source/io/
H A Dustream.cpp41 UConverter *converter; local
44 // use the default converter to convert chunks of text
45 converter = u_getDefaultConverter(&errorCode);
53 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
61 u_releaseDefaultConverter(converter);
81 UConverter *converter; local
84 // use the default converter to convert chunks of text
85 converter = u_getDefaultConverter(&errorCode);
114 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
158 u_releaseDefaultConverter(converter);
[all...]

Completed in 1799 milliseconds

123456