HomeSort by relevance Sort by last modified time
    Searched full:converter (Results 51 - 75 of 1346) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/common/
ucnv_bld.h 41 /* converter options bits */
69 [UCNV_MAX_CONVERTER_NAME_LENGTH]; /* +4: 60 internal name of the converter- invariant chars */
73 int8_t platform; /* +68: 1 platform of the converter (only IBM now) */
159 * Pointer to additional data that depends on the converter type.
178 UConverterSharedData *sharedData; /* Pointer to the shared immutable part of the converter object */
208 * the value depending on the converter type and options
247 * Return the number of all converter names.
249 * @return the number of all converter names
255 * Return the (n)th converter name in mixed case, or NULL
258 * @param n The number specifies which converter name to ge
    [all...]
ucnv.c 150 and created from a converter that is shared across threads.
195 UTRACE_DATA3(UTRACE_OPEN_CLOSE, "clone converter %s at %p into stackBuffer %p",
308 toUArgs.converter = fromUArgs.converter = localConverter;
324 ucnv_close (UConverter * converter)
330 if (converter == NULL)
336 UTRACE_DATA3(UTRACE_OPEN_CLOSE, "close converter %s at %p, isCopyLocal=%b",
337 ucnv_getName(converter, &errorCode), converter, converter->isCopyLocal)
    [all...]
ucln.h 42 * For instance, the default converter in ustring depends upon the converter
43 * API. So the default converter should be closed before the converter API
ucnv_ct.c 165 /*********** Compound Text Converter Protos ***********/
170 _CompoundTextClose(UConverter *converter);
173 _CompoundTextReset(UConverter *converter, UConverterResetChoice choice);
302 _CompoundTextClose(UConverter *converter) {
303 UConverterDataCompoundText* myConverterData = (UConverterDataCompoundText*)(converter->extraInfo);
306 if (converter->extraInfo != NULL) {
307 /*close the array of converter pointers and free the memory*/
314 uprv_free(converter->extraInfo);
319 _CompoundTextReset(UConverter *converter, UConverterResetChoice choice) {
329 UConverter *cnv = args->converter;
    [all...]
ucnv_set.c 43 /* does this converter support this function? */
63 /* call the converter to add the code points it supports */
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterSharedData.java 83 * UConverterImpl contains all the data and functions for a converter type.
84 * Its function pointers work much like a C++ vtable. Many converter types
88 * Every converter type must implement toUnicode, fromUnicode, and
89 * getNextUChar, otherwise the converter may crash. Every converter type
93 * only on whether the converter type needs them.
193 protected void doGetStarters(UConverter converter, boolean starters[], int[] pErrorCode)
198 final void getStarters(UConverter converter, boolean starters[], int[] pErrorCode)
200 doGetStarters(converter, starters, pErrorCode);
254 * Load a non-algorithmic converter
    [all...]
CharsetCESU8.java 13 * the variant UTF-8 converter without extra setup work. CESU-8 encodes/decodes supplementary characters as 6 bytes
  /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 '
  /hardware/ti/omap4-aah/libI420colorconvert/
ColorConvert.cpp 108 extern "C" void getI420ColorConverter(II420ColorConverter *converter) {
109 converter->getDecoderOutputFormat = getDecoderOutputFormat;
110 converter->convertDecoderOutputToI420 = convertDecoderOutputToI420;
111 converter->getEncoderInputFormat = getEncoderInputFormat;
112 converter->convertI420ToEncoderInput = convertI420ToEncoderInput;
113 converter->getEncoderInputBufferInfo = getEncoderInputBufferInfo;
  /hardware/ti/omap4xxx/libI420colorconvert/
ColorConvert.cpp 108 extern "C" void getI420ColorConverter(II420ColorConverter *converter) {
109 converter->getDecoderOutputFormat = getDecoderOutputFormat;
110 converter->convertDecoderOutputToI420 = convertDecoderOutputToI420;
111 converter->getEncoderInputFormat = getEncoderInputFormat;
112 converter->convertI420ToEncoderInput = convertI420ToEncoderInput;
113 converter->getEncoderInputBufferInfo = getEncoderInputBufferInfo;
  /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.
Bcj2.h 1 /* Bcj2.h -- Converter for x86 code (BCJ2)
  /external/opencv3/cmake/
OpenCVFindLATEX.cmake 9 # DVIPS_CONVERTER: path to the DVIPS converter
10 # PS2PDF_CONVERTER: path to the PS2PDF converter
11 # LATEX2HTML_CONVERTER: path to the LaTeX2Html converter
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
manifest.stub 8 Implementation-Title: XLIFF to ICU Converter
  /external/jcommander/src/test/java/com/beust/jcommander/
ArgsValidate2.java 20 converter = FileConverter.class,
  /external/libchrome/base/metrics/
bucket_ranges.cc 85 } converter; local
86 converter.range = value;
87 for (size_t i = 0; i < sizeof(converter); ++i)
88 sum = kCrcTable[(sum & 0xff) ^ converter.bytes[i]] ^ (sum >> 8);
96 } converter; local
97 DCHECK_EQ(sizeof(HistogramBase::Sample), sizeof(converter));
98 converter.range = value;
99 sum += converter.ints[0];
100 sum = (sum << 16) ^ sum ^ (static_cast<uint32_t>(converter.ints[1]) << 11);
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.h 34 struct Converter : public AHandler {
46 Converter(const sp<AMessage> &notify,
81 virtual ~Converter();
151 DISALLOW_EVIL_CONSTRUCTORS(Converter);
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
MethodDescriptor.java 49 private static final Map<Class<?>, Converter<?>> sConverters = populateConverters();
503 Converter<?> converter = converterFor(parameterType, defaultAnnotation.converter()); local
504 return converter.convert(defaultAnnotation.value());
513 private static Converter<?> converterFor(Type parameterType,
514 Class<? extends Converter> converterClass) {
515 if (converterClass == Converter.class) {
516 Converter<?> converter = sConverters.get(parameterType) local
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsList.java 21 @Parameter(names = "-hp", converter = HostPortConverter.class, splitter = SemiColonSplitter.class)
24 @Parameter(names = "-hp2", converter = HostPortConverter.class)
  /external/v8/src/
disasm.h 35 // Caller deallocates converter.
36 explicit Disassembler(const NameConverter& converter);
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
IntsTest.java 20 import com.google.common.base.Converter;
359 Converter<String, Integer> converter = Ints.stringConverter(); local
360 assertEquals((Integer) 1, converter.convert("1"));
361 assertEquals((Integer) 0, converter.convert("0"));
362 assertEquals((Integer) (-1), converter.convert("-1"));
363 assertEquals((Integer) 255, converter.convert("0xff"));
364 assertEquals((Integer) 255, converter.convert("0xFF"));
365 assertEquals((Integer) (-255), converter.convert("-0xFF"));
366 assertEquals((Integer) 255, converter.convert("#0000FF"))
384 Converter<String, Integer> converter = Ints.stringConverter(); local
    [all...]
LongsTest.java 23 import com.google.common.base.Converter;
381 Converter<String, Long> converter = Longs.stringConverter(); local
382 assertEquals((Long) 1L, converter.convert("1"));
383 assertEquals((Long) 0L, converter.convert("0"));
384 assertEquals((Long) (-1L), converter.convert("-1"));
385 assertEquals((Long) 255L, converter.convert("0xff"));
386 assertEquals((Long) 255L, converter.convert("0xFF"));
387 assertEquals((Long) (-255L), converter.convert("-0xFF"));
388 assertEquals((Long) 255L, converter.convert("#0000FF"))
406 Converter<String, Long> converter = Longs.stringConverter(); local
    [all...]
ShortsTest.java 20 import com.google.common.base.Converter;
367 Converter<String, Short> converter = Shorts.stringConverter(); local
368 assertEquals((Short) (short) 1, converter.convert("1"));
369 assertEquals((Short) (short) 0, converter.convert("0"));
370 assertEquals((Short) (short) (-1), converter.convert("-1"));
371 assertEquals((Short) (short) 255, converter.convert("0xff"));
372 assertEquals((Short) (short) 255, converter.convert("0xFF"));
373 assertEquals((Short) (short) (-255), converter.convert("-0xFF"));
374 assertEquals((Short) (short) 255, converter.convert("#0000FF"))
392 Converter<String, Short> converter = Shorts.stringConverter(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
IntsTest.java 21 import com.google.common.base.Converter;
425 Converter<String, Integer> converter = Ints.stringConverter(); local
426 assertEquals((Integer) 1, converter.convert("1"));
427 assertEquals((Integer) 0, converter.convert("0"));
428 assertEquals((Integer) (-1), converter.convert("-1"));
429 assertEquals((Integer) 255, converter.convert("0xff"));
430 assertEquals((Integer) 255, converter.convert("0xFF"));
431 assertEquals((Integer) (-255), converter.convert("-0xFF"));
432 assertEquals((Integer) 255, converter.convert("#0000FF"))
450 Converter<String, Integer> converter = Ints.stringConverter(); local
    [all...]
LongsTest.java 24 import com.google.common.base.Converter;
408 Converter<String, Long> converter = Longs.stringConverter(); local
409 assertEquals((Long) 1L, converter.convert("1"));
410 assertEquals((Long) 0L, converter.convert("0"));
411 assertEquals((Long) (-1L), converter.convert("-1"));
412 assertEquals((Long) 255L, converter.convert("0xff"));
413 assertEquals((Long) 255L, converter.convert("0xFF"));
414 assertEquals((Long) (-255L), converter.convert("-0xFF"));
415 assertEquals((Long) 255L, converter.convert("#0000FF"))
433 Converter<String, Long> converter = Longs.stringConverter(); local
    [all...]

Completed in 957 milliseconds

1 23 4 5 6 7 8 91011>>