/external/icu/icu4c/source/common/ |
ucnv_cnv.h | 10 * Definitions for converter implementations. 81 * Converter implementation function(s) for ucnv_toUnicode(). 114 * Converter implementation function for ucnv_convertEx(), for direct conversion 131 * Converter implementation function for ucnv_getNextUChar(). 152 typedef void (*UConverterGetStarters)(const UConverter* converter, 167 * specificially for the converter in order to properly maintain the state. 172 * For converter-specific safeClone processing 173 * If this function is not set, then ucnv_safeClone assumes that the converter has no private data that changes 174 * after the converter is done opening. 176 * converter data to the new, empty converter, and is expected to set u [all...] |
unistr_cnv.cpp | 96 // use the provided converter 100 // use the default converter 163 // create the converter 164 UConverter *converter; local 179 converter = u_getDefaultConverter(&status); 191 converter = ucnv_open(codepage, &status); 194 length = doExtract(start, length, target, capacity, converter, status); 196 // close the converter 198 u_releaseDefaultConverter(converter); 200 ucnv_close(converter); 315 UConverter *converter; local [all...] |
ucnvhz.cpp | 51 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \ 164 UConverterDataHZ* myData=(UConverterDataHZ*)(args->converter->extraInfo); 169 /*if ((args->converter == NULL) || (args->targetLimit < args->target) || (mySourceLimit < args->source)){ 180 if(args->converter->mode == UCNV_TILDE) { 182 args->converter->mode=0; 200 args->converter->toUCallbackReason = UCNV_IRREGULAR; 201 args->converter->toUBytes[0] = UCNV_TILDE; 202 args->converter->toUBytes[1] = mySourceChar; 203 args->converter->toULength = 2 [all...] |
ucnv_imp.h | 57 * @param converterName The name of the converter 59 * @return the newly created converter 65 * Open a purely algorithmic converter, specified by a type constant. 68 * @param type requested converter type 70 * @param options converter options bit set (default 0) 82 * Creates a converter from shared data. 97 * Load a converter but do not create a UConverter object.
|
ucnv.cpp | 152 and created from a converter that is shared across threads. 197 UTRACE_DATA3(UTRACE_OPEN_CLOSE, "clone converter %s at %p into stackBuffer %p", 310 toUArgs.converter = fromUArgs.converter = localConverter; 326 ucnv_close (UConverter * converter) 332 if (converter == NULL) 338 UTRACE_DATA3(UTRACE_OPEN_CLOSE, "close converter %s at %p, isCopyLocal=%b", 339 ucnv_getName(converter, &errorCode), converter, converter->isCopyLocal) [all...] |
ures_cnv.cpp | 51 * the invariant converter is sufficient for package and tree names 57 /* use the default converter to support variant-character paths */ 70 /* the default converter is not available */
|
/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)
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
Converter.java | 11 public class Converter<T> { 18 static Converter getConverterFor(AttrData attrData, String type) { 44 public static Converter getConverter(ResType resType) { 73 return new Converter(); 99 public static class FromAttrData extends Converter<AttrData> { 112 public static class FromCharSequence extends Converter<String> { 133 public static class FromColor extends Converter<String> { 153 public static class FromFilePath extends Converter<String> { 164 public static class FromArray extends Converter { 171 private static class FromInt extends Converter<String> [all...] |
/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/desugar/java/com/google/devtools/common/options/ |
Converters.java | 35 /** Standard converter for booleans. Accepts common shorthands/synonyms. */ 36 public static class BooleanConverter implements Converter<Boolean> { 66 /** Standard converter for Strings. */ 67 public static class StringConverter implements Converter<String> { 79 /** Standard converter for integers. */ 80 public static class IntegerConverter implements Converter<Integer> { 96 /** Standard converter for longs. */ 97 public static class LongConverter implements Converter<Long> { 113 /** Standard converter for doubles. */ 114 public static class DoubleConverter implements Converter<Double> [all...] |
Converter.java | 17 * A converter is a little helper object that can take a String and 18 * turn it into an instance of type T (the type parameter to the converter). 20 public interface Converter<T> {
|
/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;
|
/external/tensorflow/tensorflow/contrib/lite/schema/ |
upgrade_schema_test.py | 256 converter = upgrade_schema_lib.Converter() 259 converter.Convert(non_existent, non_existent) 262 converter = upgrade_schema_lib.Converter() 265 converter.Convert(invalid_extension, invalid_extension) 269 converter.Convert(in_json.name, invalid_extension) 278 converter = upgrade_schema_lib.Converter() 288 converter.Convert(in_json.name, out_json.name [all...] |
/frameworks/support/room/common/src/main/java/androidx/room/ |
TypeConverter.java | 25 * Marks a method as a type converter. A class can have as many @TypeConverter methods as it needs. 27 * Each converter method should receive 1 parameter and have non-void return type. 30 * // example converter for java.util.Date
|
/external/libmojo/mojo/edk/js/ |
handle.h | 11 #include "gin/converter.h" 55 // Note: It's important to use this converter rather than the one for 60 struct Converter<mojo::Handle> { 68 struct Converter<mojo::MessagePipeHandle> { 76 // We need to specialize the normal gin::Handle converter in order to handle 79 struct Converter<gin::Handle<mojo::edk::js::HandleWrapper>> { 95 if (!Converter<mojo::edk::js::HandleWrapper*>::FromV8(isolate, val,
|
/frameworks/base/cmds/bootanimation/iot/ |
BootParameters.cpp | 78 JSONValueConverter<SavedBootParameters>* converter) { 79 converter->RegisterIntField("brightness", &SavedBootParameters::brightness); 80 converter->RegisterIntField("volume", &SavedBootParameters::volume); 81 converter->RegisterRepeatedString("param_names", 83 converter->RegisterRepeatedString("param_values", 106 JSONValueConverter<SavedBootParameters> converter; local 107 if (converter.Convert(*(json.get()), &mRawParameters)) {
|
/hardware/google/av/media/sfplugin/ |
Codec2Buffer.cpp | 206 * Creates a C2GraphicView <=> MediaImage converter 224 ALOGD("Converter: view.error() = %d", view.error()); 231 ALOGD("Converter: 0 planes"); 246 ALOGD("Converter: %d planes for YUV layout", layout.numPlanes); 259 ALOGD("Converter: not YUV420 for YUV layout"); 344 ALOGD("Converter: incompactible color format (%d) for YUV layout", mColorFormat); 352 ALOGD("Converter: incompactible color format (%d) for YUVA layout", mColorFormat); 364 ALOGD("Converter: incompactible color format (%d) for RGB layout", mColorFormat); 369 ALOGD("Converter: %d planes for RGB layout", layout.numPlanes); 389 ALOGD("Converter: %d planes for RGBA layout", layout.numPlanes) [all...] |
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
UConverterSharedData.java | 51 * UConverterImpl contains all the data and functions for a converter type. 52 * Its function pointers work much like a C++ vtable. Many converter types 56 * Every converter type must implement toUnicode, fromUnicode, and 57 * getNextUChar, otherwise the converter may crash. Every converter type 61 * only on whether the converter type needs them. 161 protected void doGetStarters(UConverter converter, boolean starters[], int[] pErrorCode) 166 final void getStarters(UConverter converter, boolean starters[], int[] pErrorCode) 168 doGetStarters(converter, starters, pErrorCode); 222 * Load a non-algorithmic converter [all...] |
/external/fonttools/Lib/fontTools/ttLib/tables/ |
table_API_readme.txt | 2 specialized TT/OT table converter: they can convert raw data 7 If you are writing you own table converter the following is 41 Eg. the 'glyf' table converter lives in a Python file called: 45 The converter itself is a class, named "table_" + expandedtag. Eg: 63 Your converter should minimally provide two methods: 65 class table_F_O_O_(DefaultTable.DefaultTable): # converter for table 'FOO '
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
Bra.h | 19 state - state variable for x86 converter
23 state - state variable for x86 converter
39 If (size < Alignment + LookAhead), converter returns 0.
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
Bra.h | 19 state - state variable for x86 converter
23 state - state variable for x86 converter
39 If (size < Alignment + LookAhead), converter returns 0.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
Bra.h | 19 state - state variable for x86 converter
23 state - state variable for x86 converter
39 If (size < Alignment + LookAhead), converter returns 0.
|
/external/lzma/C/ |
Bra.h | 19 state - state variable for x86 converter
23 state - state variable for x86 converter
39 If (size < Alignment + LookAhead), converter returns 0.
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
MapField.java | 83 private static interface Converter<K, V> { 90 private static class ImmutableMessageConverter<K, V> implements Converter<K, V> { 114 private final Converter<K, V> converter; field in class:MapField 117 Converter<K, V> converter, 120 this.converter = converter; 151 return converter.convertKeyAndValueToMessage(key, value); 156 converter.convertMessageToKeyAndValue(message, map) [all...] |