HomeSort by relevance Sort by last modified time
    Searched refs:converter (Results 76 - 100 of 158) sorted by null

1 2 34 5 6 7

  /external/icu4c/common/unicode/
ucnv_err.h 26 * 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:__anon6194
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 that is opened and to which this struct is passed as an argument. @stable ICU 2.0 * member in struct:__anon6195
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
ucnv_err.h 26 * 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:__anon13079
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 that is opened and to which this struct is passed as an argument. @stable ICU 2.0 * member in struct:__anon13080
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ucnv_err.h 26 * 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:__anon13156
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 that is opened and to which this struct is passed as an argument. @stable ICU 2.0 * member in struct:__anon13157
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
ucnv_err.h 26 * 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:__anon13322
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 that is opened and to which this struct is passed as an argument. @stable ICU 2.0 * member in struct:__anon13323
    [all...]
  /cts/tools/signature-tools/src/signature/
Main.java 22 * {@link signature.converter.Main}. If invoked with <code>--compare</code> the
25 * @see signature.converter.Main
63 signature.converter.Main.main(without(args, i));
  /cts/tools/signature-tools/test/signature/comparator/util/
AbstractComparatorTest.java 29 import signature.converter.util.AbstractConvertTest;
  /external/icu4c/extra/uconv/
uwmsg.c 40 /* 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/
Reflection.java 81 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/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java 346 private X509NameEntryConverter converter = null; field in class:X509Name
485 * The passed in converter will be used to convert the strings into their
491 X509NameEntryConverter converter)
493 this.converter = converter;
540 * The passed in converter will be used to convert the strings into their
546 X509NameEntryConverter converter)
548 this.converter = converter;
587 * in converter
    [all...]
  /external/icu4c/common/
ucnv_lmb.c 55 The code in this file provides an implementation for an ICU converter of
219 optimization group as part of the name of the converter (LMBCS-1, LMBCS-2,
220 etc.). Using plain 'LMBCS' as the name of the converter will give you
227 Because of the extensive use of other character sets, the LMBCS converter
232 byte, only those at 0x13 or below can map to an actual converter. To limit
233 some loops and searches, we define a value for that last group converter:*/
235 #define ULMBCS_GRP_LAST 0x13 /* last LMBCS group that has a converter */
465 We also ask the creator of a converter to send in a preferred locale
568 vtable. There is also room in there for converter-specific data. LMBCS
569 uses that converter-specific data to keep track of the 12 subconverter
    [all...]
ucnvlat1.c 146 cnv=pArgs->converter;
159 /* get the converter state from UConverter */
331 utf8=pToUArgs->converter;
337 /* get the converter state from the UTF-8 UConverter */
553 UConverter *cnv=pArgs->converter;
591 UConverter *cnv=pArgs->converter;
615 if(pToUArgs->converter->toUnicodeStatus!=0) {
681 /* non-ASCII character, handle in standard converter */
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 20 CodeConverter converter = new CodeConverter(); local
21 converter.replaceArrayAccess(echoClass, new CodeConverter.DefaultArrayAccessReplacementMethodNames());
22 simpleClass.instrument(converter);
31 CodeConverter converter = new CodeConverter(); local
32 converter.replaceArrayAccess(clazz, new CodeConverter.DefaultArrayAccessReplacementMethodNames());
33 clazz.instrument(converter);
  /external/qemu/distrib/sdl-1.2.12/src/hermes/
mmx_main.asm 2 ; mmx format converter main loops for HERMES
  /cts/tools/signature-tools/src/signature/converter/dex/
FieldPool.java 17 package signature.converter.dex;
  /cts/tools/signature-tools/src/signature/io/impl/
BinaryApi.java 19 import signature.converter.Visibility;
  /external/v8/src/
disassembler.cc 112 const V8NameConverter& converter,
123 disasm::Disassembler d(converter);
125 if (converter.code() != NULL) {
126 it = new RelocIterator(converter.code());
safepoint-table.cc 87 disasm::NameConverter converter; local
104 PrintF(" | %s", converter.NameOfCPURegister(j));
  /cts/tools/signature-tools/test/signature/converter/
ConvertEnumTest.java 17 package signature.converter;
33 import signature.converter.util.AbstractConvertTest;
34 import signature.converter.util.CompilationUnit;
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
KeyAgreement.java 57 private static final X9IntegerConverter converter = new X9IntegerConverter(); field in class:KeyAgreement
88 return converter.integerToBytes(r, converter.getByteLength(parameters.getG().getX()));
  /external/webkit/Source/WebCore/platform/text/
TextCodecICU.cpp 47 if (converter)
48 ucnv_close(converter);
53 return threadGlobalData().cachedConverterICU().converter;
261 ErrorCallbackSetter(UConverter* converter, bool stopOnError)
262 : m_converter(converter)
297 // Get a converter for the passed-in encoding.
324 // flush the converter so it can be reused, and not be bothered by this error.
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 313 CursorToStringConverter converter = new MockCursorToStringConverter(); local
314 mSimpleCursorAdapter.setCursorToStringConverter(converter);
315 assertSame(converter, mSimpleCursorAdapter.getCursorToStringConverter());
360 // converter is null, StringConversionColumn is set to negative
364 // converter is null, StringConversionColumn is set to 1
368 // converter is null, StringConversionColumn is set to 3 (larger than columns count)
381 // converter is null, StringConversionColumn is set to 3
386 // converter is not null, StringConversionColumn is 1
387 CursorToStringConverter converter = new MockCursorToStringConverter(); local
388 mSimpleCursorAdapter.setCursorToStringConverter(converter);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaAudioEffectTest.java 1499 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
1506 ByteBuffer converter = ByteBuffer.allocate(4); local
1517 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
1524 ByteBuffer converter = ByteBuffer.allocate(2); local
    [all...]
  /external/icu4c/data/mappings/
ucmfiles.mk 15 # * To add an additional converter to the list:
22 # This behaviour is done in the mbcs converter code and is turned on if for that converter
  /cts/tools/signature-tools/test/signature/comparator/
PackageCompareTest.java 29 import signature.converter.util.CompilationUnit;
  /external/bluetooth/glib/glib/
gconvert.c 127 * opening the converter failed.
169 * @converter: conversion descriptor from g_iconv_open()
185 g_iconv (GIConv converter,
192 iconv_t cd = (iconv_t)converter;
202 * @converter: a conversion descriptor from g_iconv_open()
216 g_iconv_close (GIConv converter)
219 iconv_t cd = (iconv_t)converter;
459 _("Could not open converter from '%s' to '%s'"),
467 close_converter (GIConv converter)
473 cd = converter;
    [all...]

Completed in 529 milliseconds

1 2 34 5 6 7