Searched defs:Convert (Results 1 - 25 of 35) sorted by relevance

12

/external/libchrome/base/json/
H A Djson_value_converter.cc10 bool BasicValueConverter<int>::Convert( function in class:base::internal::BasicValueConverter
15 bool BasicValueConverter<std::string>::Convert( function in class:base::internal::BasicValueConverter
20 bool BasicValueConverter<string16>::Convert( function in class:base::internal::BasicValueConverter
25 bool BasicValueConverter<double>::Convert( function in class:base::internal::BasicValueConverter
30 bool BasicValueConverter<bool>::Convert( function in class:base::internal::BasicValueConverter
H A Djson_value_converter.h46 // Convert() method.
49 // converter.Convert(json, &message);
51 // Convert() returns false when it fails. Here "fail" means that the value is
54 // Also note that Convert() will modify the passed |message| even when it
113 virtual bool Convert(const base::Value& value, FieldType* field) const = 0;
128 return value_converter_->Convert(value, &(dst->*field_pointer_));
145 bool Convert(const base::Value& value, int* field) const override;
157 bool Convert(const base::Value& value, std::string* field) const override;
169 bool Convert(const base::Value& value, string16* field) const override;
180 bool Convert(cons
495 bool Convert(const base::Value& value, StructType* output) const { function in class:base::JSONValueConverter
[all...]
H A Djson_parser.cc166 void JSONParser::StringBuilder::Convert() { function in class:base::internal::JSONParser::StringBuilder
182 Convert();
474 string.Convert();
497 string.Convert();
666 dest->Convert();
/external/brotli/csharp/org/brotli/dec/
H A DIntReader.cs27 internal static void Convert(Org.Brotli.Dec.IntReader ir, int intLen) method in class:Org.Brotli.Dec.IntReader
/external/libmojo/mojo/public/cpp/bindings/
H A Dtype_converter.h28 // static X Convert(const Y& input);
32 // static Y Convert(const X& input);
53 // static geometry::PointPtr Convert(const gfx::Point& input) {
62 // static gfx::Point Convert(const geometry::PointPtr& input) {
91 static T Convert(const T& obj) { return obj; } function in struct:mojo::TypeConverter
96 static std::vector<T> Convert(const Container& container) { function in struct:mojo::TypeConverter
111 return TypeConverter<T, U>::Convert(obj);
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
H A Dreinterpret_string_to_float_op.cc33 float Convert(const string& in) { function in namespace:tensorflow
44 out_data(i) = Convert(in_data(i));
/external/v8/src/
H A Dfield-type.cc75 AstType* FieldType::Convert(Zone* zone) { function in class:v8::internal::FieldType
H A Dapi.h222 static inline Local<To> Convert(v8::internal::Handle<From> obj) { function in class:v8::Utils
260 return Utils::Convert<v8::internal::Object, T>(obj);
269 *local = Utils::Convert<v8::internal::Object, T>(handle);
280 return Convert<v8::internal::From, v8::To>(obj); \
288 return Convert<v8::internal::JSTypedArray, v8::Type##Array>(obj); \
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dtype_conversion_unittest.cc46 static test::RectPtr Convert(const RedmondRect& input) { function in struct:mojo::TypeConverter
58 static RedmondRect Convert(const test::RectPtr& input) { function in struct:mojo::TypeConverter
70 static test::NamedRegionPtr Convert(const RedmondNamedRegion& input) { function in struct:mojo::TypeConverter
80 static RedmondNamedRegion Convert(const test::NamedRegionPtr& input) { function in struct:mojo::TypeConverter
H A Dsample_service_unittest.cc19 static int32_t Convert(const sample::BarPtr& bar) { function in struct:mojo::TypeConverter
/external/tensorflow/tensorflow/core/lib/strings/
H A Dbase64.cc48 inline uint32 Convert(char x) { function in namespace:tensorflow::__anon26707
62 const uint32 packed = (Convert(codes[0]) << 18) | (Convert(codes[1]) << 12) |
63 (Convert(codes[2]) << 6) | (Convert(codes[3]));
64 // Convert() return value has upper 25 bits set if input is invalid.
/external/webrtc/talk/media/base/
H A Dscreencastid.h93 static cricket::ScreencastIdList Convert(const std::vector<T>& list) { function in class:cricket::ScreencastId
/external/clang/test/SemaCXX/
H A Dwarn-float-conversion.cpp24 void Convert(float f, double d, long double ld) { function
/external/tensorflow/tensorflow/contrib/lite/schema/
H A Dupgrade_schema.py73 converter.Convert("a.tflite", "a.json")
74 converter.Convert("b.json", "b.tflite")
132 # Convert to json using flatc
306 def Convert(self, input_file, output_file): member in class:Converter
343 Converter().Convert(FLAGS.input, FLAGS.output)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h101 /// Convert - Create a new persistent APSInt with the same value as 'From'
103 const llvm::APSInt &Convert(const llvm::APSInt& To, function in class:clang::ento::BasicValueFactory
112 const llvm::APSInt &Convert(QualType T, const llvm::APSInt &From) { function in class:clang::ento::BasicValueFactory
/external/llvm/lib/Target/X86/
H A DX86CallFrameOptimization.cpp96 enum InstClassification { Convert, Skip, Exit }; enumerator in enum:__anon14578::X86CallFrameOptimization::InstClassification
269 return Convert;
/external/perfetto/tools/proto_to_cpp/
H A Dproto_to_cpp.cc123 void Convert(const std::string& src_proto);
201 void ProtoToCpp::Convert(const std::string& src_proto) { function in class:ProtoToCpp
490 proto_to_cpp.Convert(argv[1]);
/external/libchrome/base/strings/
H A Dstring_number_conversions.cc65 static bool Convert(CHAR c, uint8_t* digit) { function in class:base::__anon10948::BaseCharToDigit
77 static bool Convert(CHAR c, uint8_t* digit) { function in class:base::__anon10948::BaseCharToDigit
93 return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
/external/protobuf/gtest/scripts/
H A Dpump.py568 def Convert(file_path): function
814 ast = Convert(file_path)
/external/tensorflow/tensorflow/core/graph/
H A Dgraph_constructor_test.cc49 void Convert(const string& gdef_ascii) { function in class:tensorflow::__anon26298::GraphConstructorTest
58 Convert(gdef_ascii);
78 Convert(gdef_ascii);
91 Convert(gdef_ascii);
99 Convert(gdef_ascii);
/external/v4l2_codec2/
H A DC2VDAAdaptorProxy.cpp24 static ::arc::VideoFramePlane Convert(const android::VideoFramePlane& plane) { function in struct:mojo::TypeConverter
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp35 struct Convert { struct
36 constexpr Convert(T v) : v(v) {} function in struct:Convert
40 template<typename T> Convert<T> ConvertVar();
58 Agg<char> ce1 = { Convert<float>(1.0) }; // expected-error {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}}
107 Agg<float> ce1 = { Convert<double>(1e300) }; // expected-error {{constant expression evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{silence}}
128 Agg<float> ce1 = { Convert<int>(123456789) }; // expected-error {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{silence}}
172 Agg<short> ce1 = { Convert<int>(100000) }; // expected-error {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{silence}} expected-warning {{changes value from 100000 to -31072}}
H A Dp7-cxx11-nowarn.cpp36 struct Convert { struct
37 constexpr Convert(T v) : v(v) {} function in struct:Convert
41 template<typename T> Convert<T> ConvertVar();
59 Agg<char> ce1 = { Convert<float>(1.0) }; // expected-warning {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}}
105 Agg<float> ce1 = { Convert<double>(1e300) }; // expected-warning {{constant expression evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{silence}}
126 Agg<float> ce1 = { Convert<int>(123456789) }; // expected-warning {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{silence}}
170 Agg<short> ce1 = { Convert<int>(100000) }; // expected-warning {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{silence}} expected-warning {{changes value from 100000 to -31072}}
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp914 bool Convert = true; local
917 Convert = false;
943 if (Convert) {
/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
H A DStoreTile.h37 #include "memory/Convert.h"
353 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
361 // Convert from SrcFormat --> DstFormat
366 // Convert from SOA --> AOS
375 // Convert from SrcFormat --> DstFormat
380 // Convert from SOA --> AOS
402 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
409 // Convert from SOA --> AOS
417 // Convert from SOA --> AOS
438 INLINE static void Convert(cons function in struct:ConvertPixelsSOAtoAOS
545 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
953 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
967 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
981 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
995 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
1009 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
1023 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
1037 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
1051 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) function in struct:ConvertPixelsSOAtoAOS
[all...]

Completed in 721 milliseconds

12