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

1 2 34 5 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/primitives/
ShortsTest.java 21 import com.google.common.base.Converter;
432 Converter<String, Short> converter = Shorts.stringConverter(); local
433 assertEquals((Short) (short) 1, converter.convert("1"));
434 assertEquals((Short) (short) 0, converter.convert("0"));
435 assertEquals((Short) (short) (-1), converter.convert("-1"));
436 assertEquals((Short) (short) 255, converter.convert("0xff"));
437 assertEquals((Short) (short) 255, converter.convert("0xFF"));
438 assertEquals((Short) (short) (-255), converter.convert("-0xFF"));
439 assertEquals((Short) (short) 255, converter.convert("#0000FF"))
457 Converter<String, Short> converter = Shorts.stringConverter(); local
    [all...]
  /external/webrtc/webrtc/tools/converter/
rgba_to_i420_converter.cc 18 #include "webrtc/tools/converter/converter.h"
78 webrtc::test::Converter converter(width, height);
79 bool success = converter.ConvertRGBAToI420Video(parser.GetFlag("frames_dir"),
  /external/webrtc/webrtc/tools/
tools.gyp 58 'converter/converter.h',
59 'converter/converter.cc',
60 'converter/rgba_to_i420_converter.cc',
  /prebuilts/misc/common/swig/include/2.0.11/uffi/
uffi.swg 32 ;;; You can define your own identifier converter if you want.
33 ;;; Use the -identifier-converter command line argument to
83 (let ((symbol (funcall *swig-identifier-converter* string :type :constant)))
88 (let ((symbol (funcall *swig-identifier-converter* name :type :operator)))
95 (let ((symbol (funcall *swig-identifier-converter* name :type :type)))
  /external/icu/icu4c/source/common/
ucnv2022.cpp 48 * I am disabling the generic ISO-2022 converter after proposing to do so on
58 * 2. I believe that no one is really using the generic ISO-2022 converter
60 * Note that ICU's generic ISO-2022 converter has always output one escape
63 * the previous converter is closed and a new one opened,
70 * The ICU ISO-2022 converter does not handle this - and has no information
169 * Note: The converter uses some leniency:
275 * v) Get the converter name form escSeqStateTable_Result_2022[21] which is JISX208
313 * When the generic ISO-2022 converter is completely removed, not just disabled
385 /*********** ISO 2022 Converter Protos ***********/
390 _ISO2022Close(UConverter *converter);
    [all...]
ucnv_bld.cpp 205 /* This contains the resolved converter name. So no further alias lookup is needed again. */
210 If the default converter is an algorithmic converter, this is the cached value.
213 because ucnv_flushCache must be able to unload the default converter and its table.
217 /* Does gDefaultConverterName have a converter option and require extra parsing? */
238 /* ucnv_cleanup - delete all storage held by the converter cache, except any */
329 /*Takes an alias name gets an actual converter file name
345 UTRACE_DATA2(UTRACE_OPEN_CLOSE, "load converter %s from package %s", pArgs->name, pArgs->pkg);
365 * If the pkg name is longer than the field, then either do not load the converter
373 /*returns a converter type from a strin
    [all...]
  /external/icu/icu4c/source/extra/uconv/
uwmsg.c 38 /* converter */
39 UConverter *converter; local
54 /* open a default converter */
55 converter = ucnv_open(0, status);
66 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
81 /* close the converter */
82 ucnv_close(converter);
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterConstants.java 43 * Character that separates converter names from options and options from each other.
48 /** Maximum length of a converter name including the terminating NULL */
50 /** Maximum length of a converter name including path and terminating NULL */
71 /* converter options bits */
138 static final int CLOSE = 4; /**< Called when the converter is closed. The
141 converter. the pointer available as the
144 by the new converter, the callback must clone
CharsetProviderICU.java 61 // create the converter object and return it
110 * Gets the canonical name of the converter as defined by Java
111 * @param enc converter name
112 * @return canonical name of the converter
166 * Gets the canonical name of the converter as defined by Java
167 * @param charsetName converter name
168 * @return canonical name of the converter
228 * Gets the aliases associated with the converter name
229 * @param encName converter name
230 * @return converter names as elements in an object arra
    [all...]
  /external/javassist/sample/evolve/
Evolution.java 55 CodeConverter converter = new CodeConverter(); local
56 converter.replaceNew(absClass, absClass, handlerMethod);
57 clazz.instrument(converter);
173 CodeConverter converter = new CodeConverter(); local
178 converter.redirectFieldAccess(f, abstractClass, f.getName());
183 cs[i].instrument(converter);
187 ms[i].instrument(converter);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
audiodev.py 15 ## inited_nchannels, port, converter, classinited: private
53 self.converter = None
102 self.converter = self.ulaw2lin
124 if self.converter:
125 data = self.converter(data)
149 ## inited_nchannels, converter: private
158 self.converter = None
194 if self.converter:
195 data = self.converter(data)
  /prebuilts/gdb/linux-x86/lib/python2.7/
audiodev.py 15 ## inited_nchannels, port, converter, classinited: private
53 self.converter = None
102 self.converter = self.ulaw2lin
124 if self.converter:
125 data = self.converter(data)
149 ## inited_nchannels, converter: private
158 self.converter = None
194 if self.converter:
195 data = self.converter(data)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
audiodev.py 15 ## inited_nchannels, port, converter, classinited: private
53 self.converter = None
102 self.converter = self.ulaw2lin
124 if self.converter:
125 data = self.converter(data)
149 ## inited_nchannels, converter: private
158 self.converter = None
194 if self.converter:
195 data = self.converter(data)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
audiodev.py 15 ## inited_nchannels, port, converter, classinited: private
53 self.converter = None
102 self.converter = self.ulaw2lin
124 if self.converter:
125 data = self.converter(data)
149 ## inited_nchannels, converter: private
158 self.converter = None
194 if self.converter:
195 data = self.converter(data)
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
MultiGroupConversionRule.java 53 * @see org.slf4j.converter.ConversionRule#getPattern()
69 * @see org.slf4j.converter.ConversionRule#getReplacement(java.lang.Integer)
78 * @see org.slf4j.converter.ConversionRule#replace(java.util.regex.Matcher)
  /external/testng/src/main/java/org/testng/
Converter.java 28 public class Converter {
38 Converter c = new Converter();
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 17 package signature.converter.doclet;
25 import signature.converter.Visibility;
55 DocletToSigConverter converter = new DocletToSigConverter(); local
56 IApi api = converter.convertDocletRoot(name, root, visibility,
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Enums.java 57 * Returns a converter that converts between strings and {@code enum} values of type
59 * converter will throw an {@code IllegalArgumentException} if the argument is not the name of
64 public static <T extends Enum<T>> Converter<String, T> stringConverter(final Class<T> enumClass) {
69 extends Converter<String, T> implements Serializable {
  /external/icu/icu4c/source/tools/makeconv/
makeconv.1.in 12 \- compile a converter table
30 converts the ICU converter table
86 If an existing converter table is changed and recompiled using
93 A standalone binary converter file will not take precedence over a
  /external/jcommander/src/main/java/com/beust/jcommander/
Parameter.java 72 * The string converter to use for this field. If the field is of type <tt>List</tt>
76 Class<? extends IStringConverter<?>> converter() default NoConverter.class;
79 * The list string converter to use for this field. If it's specified, the
80 * field has to be of type <tt>List</tt> and the converter needs to return
  /external/jcommander/src/main/java/com/beust/jcommander/converters/
NoConverter.java 24 * Default value for a converter when none is specified.
StringConverter.java 24 * Default converter for strings.
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Converter.java 18 public interface Converter {
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
Android.mk 28 LOCAL_MODULE := libfwdlock-converter
  /frameworks/av/media/libstagefright/wifi-display/
Android.mk 9 source/Converter.cpp \

Completed in 386 milliseconds

1 2 34 5 6 7 8 91011>>