/external/icu/icu4c/source/io/ |
ustream.cpp | 44 UConverter *converter; local 47 // use the default converter to convert chunks of text 48 converter = u_getDefaultConverter(&errorCode); 56 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode); 64 u_releaseDefaultConverter(converter); 84 UConverter *converter; local 87 // use the default converter to convert chunks of text 88 converter = u_getDefaultConverter(&errorCode); 117 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode); 161 u_releaseDefaultConverter(converter); [all...] |
/external/icu/icu4c/source/common/unicode/ |
ucnv.h | 26 * from UTF-16. You can open a converter with {@link ucnv_open() }. With that 27 * converter, you can get its properties, set options, convert your data and 28 * close the converter.</p> 30 * <p>Since many software programs recogize different converter names for 32 * iterate over the converter aliases. The functions {@link ucnv_getAvailableName() }, 36 * <p>When a converter encounters an illegal, irregular, invalid or unmappable character 39 * or {@link ucnv_setToUCallBack() } on the converter. The header ucnv_err.h defines 75 /** Maximum length of a converter name including the terminating NULL @stable ICU 2.0 */ 77 /** Maximum length of a converter name including path and terminating NULL @stable ICU 2.0 */ 165 /* Number of converter types for which we have conversion routines. * [all...] |
/external/icu/icu4c/source/tools/gencnval/ |
gencnval.c | 17 * converter name alias table to cnvalias.dat . 52 /* The combined tag and converter count can affect the number of lists 60 /* The maximum number of aliases that a standard tag/converter combination can have. 106 uint16_t converter; /* Index into stringStore */ member in struct:__anon12237 108 } Converter; 110 static Converter converters[MAX_CONV_COUNT]; 167 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName); 170 addConverter(const char *converter); 185 addTaggedAlias(uint16_t tag, const char *alias, uint16_t converter);*/ 307 /* write the table of aliases based on a tag/converter name combination * 422 char *converter, *alias; local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
pcm_rate.h | 3 * \brief External Rate-Converter-Plugin SDK 7 * External Rate-Converter-Plugin SDK 11 * ALSA external PCM rate-converter plugin SDK (draft version) 58 /** Callback table of rate-converter */ 61 * close the converter; optional 65 * initialize the converter, called at hw_params 69 * free the converter; optional 73 * reset the converter, called at prepare; optional 124 * Define the object entry for external PCM rate-converter plugins
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/ |
pcm_rate.h | 3 * \brief External Rate-Converter-Plugin SDK 7 * External Rate-Converter-Plugin SDK 11 * ALSA external PCM rate-converter plugin SDK (draft version) 58 /** Callback table of rate-converter */ 61 * close the converter; optional 65 * initialize the converter, called at hw_params 69 * free the converter; optional 73 * reset the converter, called at prepare; optional 124 * Define the object entry for external PCM rate-converter plugins
|
/packages/apps/Bluetooth/src/com/android/bluetooth/ |
Utils.java | 90 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local 91 converter.order(ByteOrder.nativeOrder()); 92 return converter.getShort(); 96 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local 97 converter.order(ByteOrder.nativeOrder()); 98 return converter.getInt(offset); 102 ByteBuffer converter = ByteBuffer.allocate(4); local 103 converter.order(ByteOrder.nativeOrder()); 104 converter.putInt(value); 105 return converter.array() 110 ByteBuffer converter = ByteBuffer.allocate(length); local 123 ByteBuffer converter = ByteBuffer.allocate(length); local 143 ByteBuffer converter = ByteBuffer.wrap(val); local [all...] |
/external/icu/icu4c/source/common/ |
ucnv_cnv.h | 8 * Definitions for converter implementations. 79 * Converter implementation function(s) for ucnv_toUnicode(). 112 * Converter implementation function for ucnv_convertEx(), for direct conversion 129 * Converter implementation function for ucnv_getNextUChar(). 150 typedef void (*UConverterGetStarters)(const UConverter* converter, 165 * specificially for the converter in order to properly maintain the state. 170 * For converter-specific safeClone processing 171 * If this function is not set, then ucnv_safeClone assumes that the converter has no private data that changes 172 * after the converter is done opening. 174 * converter data to the new, empty converter, and is expected to set u [all...] |
unistr_cnv.cpp | 94 // use the provided converter 98 // use the default converter 161 // create the converter 162 UConverter *converter; local 177 converter = u_getDefaultConverter(&status); 189 converter = ucnv_open(codepage, &status); 192 length = doExtract(start, length, target, capacity, converter, status); 194 // close the converter 196 u_releaseDefaultConverter(converter); 198 ucnv_close(converter); 313 UConverter *converter; local [all...] |
ucnvhz.c | 49 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \ 162 UConverterDataHZ* myData=(UConverterDataHZ*)(args->converter->extraInfo); 167 /*if ((args->converter == NULL) || (args->targetLimit < args->target) || (mySourceLimit < args->source)){ 178 if(args->converter->mode == UCNV_TILDE) { 180 args->converter->mode=0; 198 args->converter->toUCallbackReason = UCNV_IRREGULAR; 199 args->converter->toUBytes[0] = UCNV_TILDE; 200 args->converter->toUBytes[1] = mySourceChar; 201 args->converter->toULength = 2 [all...] |
ures_cnv.c | 49 * the invariant converter is sufficient for package and tree names 55 /* use the default converter to support variant-character paths */ 68 /* the default converter is not available */
|
ucnv_imp.h | 55 * @param converterName The name of the converter 57 * @return the newly created converter 63 * Open a purely algorithmic converter, specified by a type constant. 66 * @param type requested converter type 68 * @param options converter options bit set (default 0) 80 * Creates a converter from shared data. 95 * Load a converter but do not create a UConverter object.
|
/external/icu/icu4c/source/tools/makeconv/ |
makeconv.h | 30 /* converter table type for writing */ 38 /* abstract converter generator struct, C++ - style */
|
/external/icu/icu4c/source/test/cintltst/ |
ucnvseltst.h | 14 /* C API TEST FOR CONVERTER SELECTOR */
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetUTF16BE.java | 11 * allow the Charset framework to open the variant UTF-16 converter without extra setup work.
|
CharsetUTF16LE.java | 11 * allow the Charset framework to open the variant UTF-16 converter without extra setup work.
|
CharsetUTF32BE.java | 11 * allow the Charset framework to open the variant UTF-32 converter without extra setup work.
|
CharsetUTF32LE.java | 11 * allow the Charset framework to open the variant UTF-32 converter without extra setup work.
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
ArgsConverter.java | 36 @Parameter(names = "-file", converter = FileConverter.class) 39 @Parameter(names = "-url", converter = URLConverter.class) 42 @Parameter(names = "-uri", converter = URIConverter.class) 45 @Parameter(names = "-path", converter = PathConverter.class)
|
/frameworks/av/media/libstagefright/wifi-display/source/ |
PlaybackSession.cpp | 23 #include "Converter.h" 61 const sp<Converter> &converter); 70 const sp<Converter> &converter() const; 112 sp<Converter> mConverter; 132 const sp<Converter> &converter) 137 mConverter(converter), 173 const sp<Converter> &WifiDisplaySource::PlaybackSession::Track::converter() const function in class:android::WifiDisplaySource::PlaybackSession::Track 518 const sp<Converter> &converter = local 564 sp<Converter> converter = videoTrack->converter(); local 679 sp<Converter> converter = videoTrack->converter(); local 972 sp<Converter> converter = new Converter(notify, codecLooper, format); local [all...] |
Converter.cpp | 18 #define LOG_TAG "Converter" 21 #include "Converter.h" 43 Converter::Converter( 77 void Converter::releaseEncoder() { 90 Converter::~Converter() { 94 void Converter::shutdownAsync() { 99 status_t Converter::init() { 109 sp<IGraphicBufferProducer> Converter::getGraphicBufferProducer() [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/ |
cast.hpp | 33 #include <boost/numeric/conversion/converter.hpp> 43 typedef boost::numeric::converter 52 > converter; typedef 53 return converter::convert(arg);
|
converter.hpp | 16 #include "boost/numeric/conversion/detail/converter.hpp" 29 struct converter : convdetail::get_converter_impl<Traits, struct in namespace:boost::numeric 59 typedef converter<T,S,Traits,OverflowHandler,Float2IntRounder,RawConverter,UserRangeChecker> type ;
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
LetterConverter.java | 22 * The interface of pre-converter for input string used by OpenWnn. 24 * This is a simple converter for Romaji-to-Kana input, Hangul input, etc. 25 * Before converting the input string by {@link WnnEngine}, {@link OpenWnn} invokes this converter. 44 * Reflect the preferences in the letter converter.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
X9FieldElement.java | 19 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/sl4a/Common/src/com/googlecode/android_scripting/rpc/ |
RpcDefault.java | 37 public Class<? extends Converter> converter() default Converter.class;
|