HomeSort by relevance Sort by last modified time
    Searched refs:convert (Results 101 - 125 of 1163) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/catch2/include/internal/
catch_matchers_floating.cpp 53 auto convert(T t) -> Converter<T> {
65 auto lc = convert(lhs);
66 auto rc = convert(rhs);
  /external/catch2/projects/SelfTest/UsageTests/
ToStringWhich.tests.cpp 56 static std::string convert( const has_maker& ) { function in struct:Catch::StringMaker
62 static std::string convert( const has_maker_and_operator& ) { function in struct:Catch::StringMaker
161 static std::string convert(stringmaker_range const&) { function in struct:Catch::StringMaker
  /external/clang/test/SemaTemplate/
member-access-expr.cpp 67 T convert(const U& value) { function
72 convert<int>(x2);
73 convert<long>(x2); // expected-note{{instantiation}}
  /build/make/core/clang/
config.mk 7 define convert-to-clang-flags
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
driver.py 31 def __init__(self, grammar, convert=None, logger=None):
36 self.convert = convert
41 p = parse.Parser(self.grammar, self.convert)
  /external/desugar/java/com/google/devtools/common/options/
EnumConverter.java 51 * Implements {@link #convert(String)}.
54 public T convert(String input) throws OptionsParsingException { method in class:EnumConverter
  /external/desugar/java/com/google/devtools/common/options/testing/
ConverterTester.java 66 * Adds a set of valid inputs which are expected to convert to equal values.
87 * {@link Converter#convert} method when converting any of the inputs.
97 wrapped.add(new WrappedItem(input, converter.convert(input)));
107 * Tests the convert method of the wrapped Converter class, verifying the properties listed in the
129 converted = converter.convert(input);
130 convertedAgain = converter.convert(input);
131 convertedDifferentConverterInstance = converter2.convert(input);
  /external/guava/guava-tests/test/com/google/common/primitives/
DoublesTest.java 509 assertEquals((Double) 1.0, converter.convert("1.0"));
510 assertEquals((Double) 0.0, converter.convert("0.0"));
511 assertEquals((Double) (-1.0), converter.convert("-1.0"));
512 assertEquals((Double) 1.0, converter.convert("1"));
513 assertEquals((Double) 0.0, converter.convert("0"));
514 assertEquals((Double) (-1.0), converter.convert("-1"));
515 assertEquals((Double) 1e6, converter.convert("1e6"));
516 assertEquals((Double) 1e-6, converter.convert("1e-6"));
521 Doubles.stringConverter().convert("notanumber");
528 assertNull(Doubles.stringConverter().convert(null))
    [all...]
FloatsTest.java 496 assertEquals((Float) 1.0f, converter.convert("1.0"));
497 assertEquals((Float) 0.0f, converter.convert("0.0"));
498 assertEquals((Float) (-1.0f), converter.convert("-1.0"));
499 assertEquals((Float) 1.0f, converter.convert("1"));
500 assertEquals((Float) 0.0f, converter.convert("0"));
501 assertEquals((Float) (-1.0f), converter.convert("-1"));
502 assertEquals((Float) 1e6f, converter.convert("1e6"));
503 assertEquals((Float) 1e-6f, converter.convert("1e-6"));
508 Floats.stringConverter().convert("notanumber");
515 assertNull(Floats.stringConverter().convert(null))
    [all...]
  /external/guice/core/src/com/google/inject/internal/
TypeConverterBindingProcessor.java 58 public Object convert(String value, TypeLiteral<?> toType) {
78 public Object convert(String value, TypeLiteral<?> toType) {
104 public Object convert(String value, TypeLiteral<?> toType) {
129 public Object convert(String value, TypeLiteral<?> toType) {
  /external/guice/core/src/com/google/inject/spi/
ModuleAnnotatedMethodScannerBinding.java 64 + Errors.convert(source)
  /external/junit-params/src/test/java/junitparams/
ParamsConverterTest.java 107 public Integer convert(Object param, String options) { method in class:ParamsConverterTest.LetterToNumberConverter
113 public Date convert(Object param, String options) { method in class:ParamsConverterTest.StringToDateConverter
145 public Date convert(Object param) throws ConversionFailedException { method in class:ParamsConverterTest.FormattedDateConverter
160 public Date convert(Object param) throws ConversionFailedException { method in class:ParamsConverterTest.SimpleDateConverter
  /external/libaom/libaom/common/
y4minput.h 52 y4m_convert_func convert; member in struct:y4m_input
  /external/libvpx/libvpx/
y4minput.h 51 y4m_convert_func convert; member in struct:y4m_input
  /external/llvm/include/llvm/Transforms/Scalar/
Float2Int.h 41 Value *convert(Instruction *I, Type *ToTy);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
XmlBox.java 42 byteBuffer.put(Utf8.convert(xml));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleMeanBox.java 35 byteBuffer.put(Utf8.convert(meaning));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/vodafone/
ContentDistributorIdBox.java 62 byteBuffer.put(Utf8.convert(contentDistributorId));
CoverUriBox.java 58 byteBuffer.put(Utf8.convert(coverUri));
LyricsUriBox.java 59 byteBuffer.put(Utf8.convert(lyricsUri));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
Float2Int.h 41 Value *convert(Instruction *I, Type *ToTy);
  /external/tensorflow/tensorflow/lite/python/
convert_test.py 22 from tensorflow.lite.python import convert
48 tflite_model = convert.toco_convert(sess.graph_def, [in_tensor],
56 # result = convert.toco_convert(sess.graph_def, [in_tensor], [in_tensor])
66 got_name = convert.tensor_name(out_tensors[i])
76 tflite_model = convert.toco_convert(
90 convert.toco_convert(
103 tflite_model = convert.toco_convert_graph_def(
137 tflite_model = convert.toco_convert_graph_def(
182 convert.toco_convert_graph_def(
386 convert.convert_dtype_to_tflite_type(lite_constants.FLOAT)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
DoublesTest.java 399 assertEquals((Double) 1.0, converter.convert("1.0"));
400 assertEquals((Double) 0.0, converter.convert("0.0"));
401 assertEquals((Double) (-1.0), converter.convert("-1.0"));
402 assertEquals((Double) 1.0, converter.convert("1"));
403 assertEquals((Double) 0.0, converter.convert("0"));
404 assertEquals((Double) (-1.0), converter.convert("-1"));
405 assertEquals((Double) 1e6, converter.convert("1e6"));
406 assertEquals((Double) 1e-6, converter.convert("1e-6"));
411 Doubles.stringConverter().convert("notanumber");
418 assertNull(Doubles.stringConverter().convert(null))
    [all...]
  /external/tensorflow/tensorflow/python/data/ops/
readers.py 22 from tensorflow.python.data.util import convert
54 self._compression_type = convert.optional_param_to_tensor(
59 self._buffer_size = convert.optional_param_to_tensor(
104 self._compression_type = convert.optional_param_to_tensor(
109 self._buffer_size = convert.optional_param_to_tensor(
141 self._buffer_output_elements = convert.optional_param_to_tensor(
145 self._prefetch_input_elements = convert.optional_param_to_tensor(
312 self._header_bytes = convert.optional_param_to_tensor(
314 self._footer_bytes = convert.optional_param_to_tensor(
316 self._buffer_size = convert.optional_param_to_tensor
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
pytree_idempotency.py 26 dr = driver.Driver(gr, convert=pytree.convert)

Completed in 5357 milliseconds

1 2 3 45 6 7 8 91011>>