HomeSort by relevance Sort by last modified time
    Searched defs:Converter (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
conv.py 36 class Converter(grammar.Grammar):
  /external/junit-params/src/main/java/junitparams/converters/
Converter.java 6 * Defines the logic to convert parameter annotated with A to type T. Converter must have a public no-args constructor. Configuration is
7 * done via {@link Converter#initialize(java.lang.annotation.Annotation)} method<br>
10 * @param <A> type of annotation mentioning this converter
13 public interface Converter<A extends Annotation, T> {
16 * Initializes this converter - you can read your annotation config here.
  /external/python/cpython2/Lib/lib2to3/pgen2/
conv.py 36 class Converter(grammar.Grammar):
  /external/python/cpython3/Lib/lib2to3/pgen2/
conv.py 36 class Converter(grammar.Grammar):
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
conv.py 36 class Converter(grammar.Grammar):
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
conv.py 36 class Converter(grammar.Grammar):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 36 class Converter(grammar.Grammar):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 36 class Converter(grammar.Grammar):
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
Converter.java 20 * A converter can take a String and turn it into an instance of type T (the type parameter to the
21 * converter).
24 public interface Converter<T> {
RpcDefault.java 37 public Class<? extends Converter> converter() default Converter.class;
  /external/desugar/java/com/google/devtools/common/options/
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> {
Option.java 56 * instance of type T, since we'd need to ensure that {@link #toString()} and {@link #converter}
60 * <p>If an option's defaultValue() is the string "null", the option's converter will not be
116 * The converter that we'll use to convert the string representation of this option's value into
118 * Converters#DEFAULT_CONVERTERS}). Custom converters must implement the {@link Converter}
122 // Can't figure out how to coerce Converter.class into Class<? extends Converter<?>>
123 Class<? extends Converter> converter() default Converter.class;
130 * type {@code List<T>}, and the result type of the converter for this option must either matc
    [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;
  /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/webrtc/webrtc/tools/converter/
converter.h 23 class Converter {
25 Converter(int width, int height);
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/guava/guava/src/com/google/common/base/
Converter.java 37 * converter.reverse().convert(converter.convert(a)).equals(a)} is always true). However, it is
52 * <p>A converter always converts {@code null} to {@code null} and non-null references to non-null
62 * <p>Getting a converter:
65 * <li>Use a provided converter implementation, such as {@link Enums#stringConverter}, {@link
70 * a "fake" converter for a unit test. It is unnecessary (and confusing) to <i>mock</i> the
71 * {@code Converter} type using a mocking framework.
76 * <p>Using a converter:
79 * <li>Convert one instance in the "forward" direction using {@code converter.convert(a)}.
80 * <li>Convert multiple instances "forward" using {@code converter.convertAll(as)}
    [all...]
  /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,
  /external/tensorflow/tensorflow/contrib/lite/schema/
upgrade_schema.py 65 class Converter(object):
72 converter = Converter()
73 converter.Convert("a.tflite", "a.json")
74 converter.Convert("b.json", "b.tflite")
337 raise RuntimeError("No schema that the converter understands worked with "
343 Converter().Convert(FLAGS.input, FLAGS.output)
  /external/testng/src/main/java/org/testng/internal/annotations/
Converter.java 16 public class Converter {
  /frameworks/av/media/libmedia/include/media/
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/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...]
  /external/testng/src/main/java/org/testng/
Converter.java 28 public class Converter {
38 Converter c = new Converter();
  /packages/services/Telecomm/src/com/android/server/telecom/
ParcelableCallUtils.java 34 public static class Converter {
  /external/doclava/src/com/google/doclava/
Converter.java 48 public class Converter {
59 Converter.obtainClass(c);
82 mRootClasses = Converter.convertClasses(classes);
132 cl.init(Converter.obtainType(c),
133 new ArrayList<ClassInfo>(Arrays.asList(Converter.convertClasses(c.interfaces()))),
134 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.interfaceTypes()))),
135 new ArrayList<ClassInfo>(Arrays.asList(Converter.convertClasses(c.innerClasses()))),
137 Converter.convertMethods(c.constructors(false)))),
138 new ArrayList<MethodInfo>(Arrays.asList(Converter.convertMethods(c.methods(false)))),
139 new ArrayList<MethodInfo>(Arrays.asList(Converter.convertMethods(annotationElements)))
    [all...]

Completed in 858 milliseconds

1 2 3 4 5 6 7 8 9