/external/icu/icu4c/source/test/cintltst/ |
cctest.c | 19 /* This makes sure that a converter isn't leaked when an error is passed to 24 /* Remove the default converter */ 35 log_err("Didn't expect to get a converter on a failure\n"); 39 /* Get the default converter. Copy its name. Put it back. */ 56 ( for example, if UTF-8 is the fixed converter ). 57 But, if it does cause a change, that change should be reflected when the converter is 71 /* first, flush any extant converter */ 91 log_err("Error: u_getDefaultConverter() is still returning %s (expected %s) even though default converter was set back to %s (was %s)\n", nameAfterRestore, nameBeforeSet, defaultName , SET_TO);
|
/external/webrtc/webrtc/tools/converter/ |
converter.cc | 17 #include "webrtc/tools/converter/converter.h" 30 Converter::Converter(int width, int height) 35 bool Converter::ConvertRGBAToI420Video(std::string frames_dir, 109 bool Converter::AddYUVToFile(uint8_t* y_plane, 122 bool Converter::AddYUVPlaneToFile(uint8_t* yuv_plane, 135 bool Converter::ReadRGBAFrame(const char* input_file_name, int input_frame_size, 155 std::string Converter::FindFullFileName(std::string dir_name, 160 bool Converter:: FileExists(std::string file_name_to_check) [all...] |
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
ArgsWithSet.java | 9 @Parameter(names = "-s", converter = SetConverter.class)
|
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/junit-params/src/main/java/junitparams/converters/ |
NullableConverter.java | 4 public class NullableConverter implements Converter<Nullable, String>{
|
ParamConverter.java | 10 * @deprecated use {@link Converter}
|
/external/lzma/C/ |
Delta.h | 1 /* Delta.h -- Delta converter
|
/external/mockito/src/main/java/org/mockito/internal/util/collections/ |
ListUtil.java | 29 public static <From, To> LinkedList<To> convert(Collection<From> collection, Converter<From, To> converter) { 32 converted.add(converter.convert(f)); 41 public interface Converter<From, To> {
|
/external/testng/src/test/java/test/converter/ |
ConverterSample1.java | 1 package test.converter;
|
/external/libmojo/mojo/edk/js/ |
handle.cc | 49 v8::Handle<v8::Value> Converter<mojo::Handle>::ToV8(v8::Isolate* isolate, 56 bool Converter<mojo::Handle>::FromV8(v8::Isolate* isolate, 65 if (!Converter<gin::Handle<mojo::edk::js::HandleWrapper>>::FromV8( 73 v8::Handle<v8::Value> Converter<mojo::MessagePipeHandle>::ToV8( 75 return Converter<mojo::Handle>::ToV8(isolate, val); 78 bool Converter<mojo::MessagePipeHandle>::FromV8(v8::Isolate* isolate, 81 return Converter<mojo::Handle>::FromV8(isolate, val, out);
|
/frameworks/base/core/java/android/animation/ |
BidirectionalTypeConverter.java | 42 * Returns the inverse of this converter, where the from and to classes are reversed. 43 * The inverted converter uses this convert to call {@link #convertBack(Object)} for 46 * @return The inverse of this converter, where the from and to classes are reversed. 58 public InvertedConverter(BidirectionalTypeConverter<To, From> converter) { 59 super(converter.getTargetType(), converter.getSourceType()); 60 mConverter = converter;
|
/external/icu/icu4c/source/io/ |
ustream.cpp | 46 UConverter *converter; local 49 // use the default converter to convert chunks of text 50 converter = u_getDefaultConverter(&errorCode); 58 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode); 66 u_releaseDefaultConverter(converter); 86 UConverter *converter; local 89 // use the default converter to convert chunks of text 90 converter = u_getDefaultConverter(&errorCode); 119 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode); 163 u_releaseDefaultConverter(converter); [all...] |
/external/desugar/java/com/google/devtools/common/options/ |
Converters.java | 32 /** Standard converter for booleans. Accepts common shorthands/synonyms. */ 33 public static class BooleanConverter implements Converter<Boolean> { 63 /** Standard converter for Strings. */ 64 public static class StringConverter implements Converter<String> { 76 /** Standard converter for integers. */ 77 public static class IntegerConverter implements Converter<Integer> { 93 /** Standard converter for longs. */ 94 public static class LongConverter implements Converter<Long> { 110 /** Standard converter for doubles. */ 111 public static class DoubleConverter implements Converter<Double> [all...] |
/external/icu/icu4c/source/common/unicode/ |
ucnv.h | 28 * from UTF-16. You can open a converter with {@link ucnv_open() }. With that 29 * converter, you can get its properties, set options, convert your data and 30 * close the converter.</p> 32 * <p>Since many software programs recogize different converter names for 34 * iterate over the converter aliases. The functions {@link ucnv_getAvailableName() }, 38 * <p>When a converter encounters an illegal, irregular, invalid or unmappable character 41 * or {@link ucnv_setToUCallBack() } on the converter. The header ucnv_err.h defines 77 /** Maximum length of a converter name including the terminating NULL @stable ICU 2.0 */ 79 /** Maximum length of a converter name including path and terminating NULL @stable ICU 2.0 */ 167 /* Number of converter types for which we have conversion routines. * [all...] |
/external/icu/icu4c/source/tools/gencnval/ |
gencnval.c | 19 * converter name alias table to cnvalias.dat . 54 /* The combined tag and converter count can affect the number of lists 62 /* The maximum number of aliases that a standard tag/converter combination can have. 108 uint16_t converter; /* Index into stringStore */ member in struct:__anon20497 110 } Converter; 112 static Converter converters[MAX_CONV_COUNT]; 169 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName); 172 addConverter(const char *converter); 187 addTaggedAlias(uint16_t tag, const char *alias, uint16_t converter);*/ 309 /* write the table of aliases based on a tag/converter name combination * 424 char *converter, *alias; local [all...] |
/external/swiftshader/third_party/subzero/src/ |
IceConverter.h | 11 /// \brief Declares the LLVM to ICE converter. 28 class Converter : public Translator { 29 Converter() = delete; 30 Converter(const Converter &) = delete; 31 Converter &operator=(const Converter &) = delete; 34 Converter(llvm::Module *Mod, GlobalContext *Ctx) 38 ~Converter() override = default;
|
/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
|
/external/desugar/java/com/google/devtools/build/android/ |
Converters.java | 16 import com.google.devtools.common.options.Converter; 28 private static final Converter<String> IDENTITY_CONVERTER = new Converter<String>() { 38 /** Validating converter for Paths. A Path is considered valid if it resolves to a file. */ 39 public static class PathConverter implements Converter<Path> { 73 * Validating converter for Paths. A Path is considered valid if it resolves to a file and exists.
|
/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); 111 ByteBuffer converter = ByteBuffer.allocate(4); local 112 converter.order(ByteOrder.nativeOrder()); 113 converter.putInt(value); 114 return converter.array() 119 ByteBuffer converter = ByteBuffer.allocate(length); local 132 ByteBuffer converter = ByteBuffer.allocate(length); local 152 ByteBuffer converter = ByteBuffer.wrap(val); local [all...] |
/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...] |
/frameworks/av/media/libstagefright/wifi-display/source/ |
PlaybackSession.cpp | 23 #include "Converter.h" 60 const sp<Converter> &converter); 69 const sp<Converter> &converter() const; 111 sp<Converter> mConverter; 131 const sp<Converter> &converter) 136 mConverter(converter), 172 const sp<Converter> &WifiDisplaySource::PlaybackSession::Track::converter() const function in class:android::WifiDisplaySource::PlaybackSession::Track 517 const sp<Converter> &converter = local 563 sp<Converter> converter = videoTrack->converter(); local 678 sp<Converter> converter = videoTrack->converter(); local 969 sp<Converter> converter = new Converter(notify, codecLooper, format); local [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/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);
|