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

1 2 3 4 5 67 8 91011>>

  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapsTest.java 25 import com.google.common.base.Converter;
817 Converter<String, Integer> converter = Maps.asConverter(biMap); local
819 assertSame(entry.getValue(), converter.convert(entry.getKey()));
827 Converter<String, Integer> converter = Maps.asConverter(biMap); local
829 assertSame(entry.getKey(), converter.reverse().convert(entry.getValue()));
837 Converter<String, Integer> converter = Maps.asConverter(biMap); local
839 converter.convert("three")
849 Converter<String, Integer> converter = Maps.asConverter(biMap); local
858 Converter<String, Integer> converter = Maps.asConverter(biMap); local
891 Converter<String, Integer> converter = Maps.asConverter(biMap); local
899 Converter<String, Integer> converter = Maps.asConverter(biMap); local
    [all...]
  /frameworks/av/services/audiopolicy/utilities/convert/
convert.h 161 class Converter;
164 class Converter<std::string, dstType>
174 class Converter<srcType, std::string>
189 class Converter<std::vector<SrcElem>, std::vector<DstElem> >
216 return details::Converter<srcType, dstType>::run(input, result);
268 if (!details::Converter<std::string, float>::run(str, result)) {
298 if (!details::Converter<std::string, double>::run(str, result)) {
  /external/libchrome/base/json/
json_value_converter.h 34 // JSONValueConverter<Message>* converter);
41 // JSONValueConverter<Message>* converter) {
42 // converter->RegisterIntField("foo", &Message::foo);
43 // converter->RegisterStringField("bar", &Message::bar);
49 // JSONValueConverter<Message> converter;
50 // converter.Convert(json, &message);
65 // converter->RegisterNestedField("foo", &Nested::foo);
84 // converter->RegsiterCustomField<YourEnum>(
122 ValueConverter<FieldType>* converter)
125 value_converter_(converter) {
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetEncoderICU.java 27 * In the future this class will contain API that will implement converter semantics of ICU4C.
104 * @return true if the converter uses fallback, false otherwise.
113 * @param usesFallback true if the user wants the converter to take
215 * Flushes any characters saved in the converter's internal buffer and
216 * resets the converter.
227 * Resets the from Unicode mode of converter
245 * converter is stop and report if an error in input stream is encountered.
367 * source units, then they must be "replayed", i.e., fed back into the converter.
376 * It is conceivable that a callback function could call the converter
397 /* get the converter implementation function *
    [all...]
CharsetICU.java 22 * from UTF-16. You can open a converter with {@link Charset#forName} and {@link #forNameICU}. With that
23 * converter, you can get its properties, set options, convert your data.
25 * <p>Since many software programs recognize different converter names for
27 * iterate over the converter aliases.
71 String name; /* +4: 60 internal name of the converter- invariant chars */
75 byte platform; /* +68: 1 platform of the converter (only IBM now) */
379 * Returns the set of Unicode code points that can be converted by an ICU Converter.
382 * roundtrip-converted (converted without any data loss) with the converter This set will not include code points that have fallback
388 * <ul><li>checking that a string or document can be roundtrip-converted with a converter,
390 * <li>testing if a converter can be used for text for typical text for a certain locale
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.h 69 * Data type for the Posix-style read function used by the converter in pull mode.
81 * Data type for the Posix-style write function used by the converter in pull mode.
93 * Data type for the Posix-style lseek function used by the converter in pull mode.
105 * The status codes returned by the converter functions.
173 * Supplies the converter with data to convert. The caller is expected to write the converted data
FwdLockConv.c 59 * Data type for the parser states of the converter.
70 * Data type for the scanner states of the converter.
131 * Data type for the per-file state information needed by the converter.
190 * Acquires an unused converter session.
223 * Releases a converter session.
239 * @param[in,out] pSession A reference to a converter session.
310 * @param[in,out] pSession A reference to a converter session.
328 * @param[in,out] pSession A reference to a converter session.
467 * @param[in,out] pSession A reference to a converter session.
499 * @param[in,out] pSession A reference to a converter session
    [all...]
  /external/icu/icu4c/source/common/
ucnv_io.cpp 11 * initializes global variables and defines functions pertaining to converter
20 * with aliases for converter names.
24 * 06/28/2002 grhoten Major overhaul of the converter alias design.
63 * into the string table for the converter name. The index of this list is
76 * alias -> converter name mapping. Section 3 and 4 form a two column table.
80 * 4) This section contains a list of mapped converter names. Consider this
84 * each converter index in this table. Currently it's only used to say that
85 * an alias mapped to this converter is ambiguous. See UCNV_CONVERTER_INDEX_MASK
91 * index into the converter list (column header). The row index is the index
122 * Converter Names (Usually in TR22 form
    [all...]
ucnv_u16.c 14 * UTF-16 converter implementation. Used to be in ucnv_utf.c.
66 cnv=pArgs->converter;
262 if(pArgs->converter->mode<8) {
267 cnv=pArgs->converter;
494 if(pArgs->converter->mode<8) {
509 pArgs->converter->toUBytes[0]=*s++;
510 pArgs->converter->toULength=1;
537 uint8_t *bytes=pArgs->converter->toUBytes;
539 pArgs->converter->toULength=(int8_t)(sourceLimit-s);
554 uint8_t *bytes=pArgs->converter->toUBytes
    [all...]
ucnvisci.c     [all...]
  /external/icu/icu4c/source/test/cintltst/
ccapitst.c 346 /* flush the converter cache to get a consistent state before the flushing is tested */
356 UConverter *converter=NULL; local
358 converter=ucnv_openU(converterName, &err);
362 ucnv_close(converter);
364 converter=ucnv_openU(NULL, &err);
368 ucnv_close(converter);
371 converter=ucnv_openU(converterName, &err);
372 if(!(converter == NULL)){
375 ucnv_close(converter);
398 log_verbose("Testing ucnv_open() with converter name greater than 7 characters\n")
2874 } converter[] = { local
    [all...]
  /external/icu/icu4c/source/test/perf/convperf/
convperf.h 173 /* create instance of converter object*/
228 /* create instance of converter object*/
284 /* create instance of converter object*/
340 /* create instance of converter object*/
396 /* create instance of converter object*/
450 /* create instance of converter object*/
  /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);
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EqualizerTest.java 342 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
343 converter.order(ByteOrder.nativeOrder());
344 return converter.getInt(offset);
348 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
349 converter.order(ByteOrder.nativeOrder());
350 return converter.getShort(offset);
  /external/icu/icu4c/source/samples/ucnv/
convsamp.cpp 37 #include "unicode/ucnv.h" /* C Converter API */
186 converter.
207 // set up the converter
217 // close the converter
264 For a given converter, divinding this by the minimum char size
512 converter.
532 // set up the converter
541 // close the converter
640 /* Now, close the converter */
647 /* Converter starts out with the SUBSTITUTE callback set. *
    [all...]
  /prebuilts/misc/common/android-support-test/espresso/
espresso-core-2.2.2-release-no-dep.jar 
  /external/robolectric/v3/
robolectric-resources-3.1-SNAPSHOT.jar 
  /external/icu/icu4c/source/test/perf/ucnvavailperf/
ucnvavailperf.cpp 99 // Preload a purely algorithmic converter via an alias,
106 "unable to open UTF-8 converter via an alias - %s\n",
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableAnnotation.java 82 return CONVERTER.toSet(list);
85 private static final ImmutableConverter<ImmutableAnnotation, Annotation> CONVERTER =
ImmutableAnnotationElement.java 76 return CONVERTER.toSet(list);
79 private static final ImmutableConverter<ImmutableAnnotationElement, AnnotationElement> CONVERTER =
ImmutableMethodParameter.java 87 return CONVERTER.toList(list);
90 private static final ImmutableConverter<ImmutableMethodParameter, MethodParameter> CONVERTER =
ImmutableTryBlock.java 86 return CONVERTER.toList(list);
89 private static final ImmutableConverter<ImmutableTryBlock, TryBlock<? extends ExceptionHandler>> CONVERTER =
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
ImmutableDebugItem.java 79 return CONVERTER.toList(list);
82 private static final ImmutableConverter<ImmutableDebugItem, DebugItem> CONVERTER =
  /external/webrtc/webrtc/tools/converter/
converter.h 23 class Converter {
25 Converter(int width, int height);
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/
NotificationUtilsTest.java 43 public HtmlTree.Converter<String> createInstance() {
70 public HtmlTree.Converter<String> createInstance() {

Completed in 656 milliseconds

1 2 3 4 5 67 8 91011>>