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

1 2 3 4 5 6 7 8 91011>>

  /art/tools/cpp-define-generator/
make_header.py 31 def convert(input): function
32 """Find all defines in the compiler generated assembly and convert them to #define pragmas"""
39 # Convert the found constants to #define pragmas.
56 print(convert(open(args.input, "r").read()))
  /external/junit-params/src/main/java/junitparams/converters/
ParamConverter.java 5 * Implement this interface if you want to convert params from some
15 T convert(Object param, String options) throws ConversionFailedException; method in interface:ParamConverter
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
25 T convert(Object param) throws ConversionFailedException; method in interface:Converter
NullableConverter.java 12 public String convert(Object param) throws ConversionFailedException { method in class:NullableConverter
  /external/skia/third_party/icu/
make_data_cpp.py 29 def convert(fmt, name, src_path, dst_path): function
48 convert(cpp, sys.argv[1], sys.argv[2], sys.argv[3])
  /external/jcommander/src/main/java/com/beust/jcommander/
IStringConverter.java 38 T convert(String value); method in interface:IStringConverter
  /external/skia/experimental/xps_to_png/
xps_to_png.cs 23 static void convert(double dpi, string path, string out_path) { method in class:Program
70 // Executes convert, catching thrown exceptions, and printing them
74 convert(dpi, path, out_path);
80 // For each command line argument, convert xps to sequence of pngs.
92 dpi = System.Convert.ToDouble(arg.Remove(0, flag.Length));
  /external/skqp/experimental/xps_to_png/
xps_to_png.cs 23 static void convert(double dpi, string path, string out_path) { method in class:Program
70 // Executes convert, catching thrown exceptions, and printing them
74 convert(dpi, path, out_path);
80 // For each command line argument, convert xps to sequence of pngs.
92 dpi = System.Convert.ToDouble(arg.Remove(0, flag.Length));
  /external/guice/core/src/com/google/inject/spi/
TypeConverter.java 30 Object convert(String value, TypeLiteral<?> toType); method in interface:TypeConverter
  /external/jcommander/src/main/java/com/beust/jcommander/converters/
BooleanConverter.java 34 public Boolean convert(String value) { method in class:BooleanConverter
FileConverter.java 26 * Convert a string into a file.
32 public File convert(String value) { method in class:FileConverter
NoConverter.java 30 public String convert(String value) { method in class:NoConverter
PathConverter.java 27 * Convert a string into a path.
33 public Path convert(String value) { method in class:PathConverter
StringConverter.java 30 public String convert(String value) { method in class:StringConverter
  /external/jcommander/src/test/java/com/beust/jcommander/
HostPortConverter.java 23 public HostPort convert(String value) { method in class:HostPortConverter
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Ascii.java 24 public static byte[] convert(String s) { method in class:Ascii
36 public static String convert(byte[] b) { method in class:Ascii
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
DateHelper.java 30 static public Date convert(long secondsSince) { method in class:DateHelper
38 * @param date date to convert
41 static public long convert(Date date) { method in class:DateHelper
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
BooleanTypeImpl.java 39 PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException { method in class:BooleanTypeImpl
ByteTypeImpl.java 40 PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException { method in class:ByteTypeImpl
CharTypeImpl.java 40 PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException { method in class:CharTypeImpl
DoubleTypeImpl.java 40 PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException { method in class:DoubleTypeImpl
FloatTypeImpl.java 40 PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException { method in class:FloatTypeImpl
IntegerTypeImpl.java 40 PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException { method in class:IntegerTypeImpl
LongTypeImpl.java 40 PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException { method in class:LongTypeImpl
PrimitiveTypeImpl.java 39 abstract PrimitiveValue convert(PrimitiveValue value) throws InvalidTypeException; method in class:PrimitiveTypeImpl

Completed in 766 milliseconds

1 2 3 4 5 6 7 8 91011>>