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

1 2

  /external/libchrome/base/json/
json_value_converter.cc 10 bool BasicValueConverter<int>::Convert(
15 bool BasicValueConverter<std::string>::Convert(
20 bool BasicValueConverter<string16>::Convert(
25 bool BasicValueConverter<double>::Convert(
30 bool BasicValueConverter<bool>::Convert(
json_value_converter.h 47 // Convert() method.
50 // converter.Convert(json, &message);
52 // Convert() returns false when it fails. Here "fail" means that the value is
55 // Also note that Convert() will modify the passed |message| even when it
75 // and specify a function to convert a StringPiece to your type.
114 virtual bool Convert(const base::Value& value, FieldType* field) const = 0;
129 return value_converter_->Convert(value, &(dst->*field_pointer_));
146 bool Convert(const base::Value& value, int* field) const override;
158 bool Convert(const base::Value& value, std::string* field) const override;
170 bool Convert(const base::Value& value, string16* field) const override
    [all...]
json_parser.cc 45 // First deep copy to convert JSONStringValue to std::string and swap that
69 // to convert any JSONStringValues to std::string.
95 // First deep copy to convert JSONStringValue to std::string and swap that
115 // to convert any JSONStringValues to std::string.
325 void JSONParser::StringBuilder::Convert() {
343 Convert();
608 string.Convert();
640 string.Convert();
755 // Used to convert the UTF-16 code units to a code point and then to a UTF-8
817 dest->Convert();
    [all...]
  /external/clang/test/Sema/
warn-double-promotion.c 27 void Convert(float f, double d, long double ld) {
  /external/clang/test/SemaCXX/
warn-float-conversion.cpp 19 void Convert(float f, double d, long double ld) {
  /external/opencv3/modules/imgproc/perf/opencl/
perf_3vs4.cpp 20 Pure = 0, Split, Convert
23 CV_ENUM(Modes, Pure, Split, Convert)
65 else if (mode == Convert)
119 else if (mode == Convert)
  /toolchain/binutils/binutils-2.25/elfcpp/
elfcpp_swap.h 201 // Convert is a template based on size and on whether the target is
207 struct Convert
233 { return Convert<size, big_endian>::convert_host(*wv); }
237 { *wv = Convert<size, big_endian>::convert_host(v); }
  /external/webrtc/talk/media/base/
screencastid.h 93 static cricket::ScreencastIdList Convert(const std::vector<T>& list) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 101 /// Convert - Create a new persistent APSInt with the same value as 'From'
103 const llvm::APSInt &Convert(const llvm::APSInt& To,
109 return getValue(TargetType.convert(From));
112 const llvm::APSInt &Convert(QualType T, const llvm::APSInt &From) {
117 return getValue(TargetType.convert(From));
  /system/connectivity/shill/mobile_operator_db/
serviceproviders_converter.py 47 """ Convert the ServiceProviders XML into protobuf format. """
81 def Convert(self):
617 converter.Convert()
  /external/llvm/lib/Target/X86/
X86CallFrameOptimization.cpp 96 enum InstClassification { Convert, Skip, Exit };
264 return Convert;
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-cxx11-nowarn.cpp 36 struct Convert {
37 constexpr Convert(T v) : v(v) {}
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}}
p7-0x.cpp 35 struct Convert {
36 constexpr Convert(T v) : v(v) {}
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}}
  /external/libchrome/base/strings/
string_number_conversions.cc 57 // Utility to convert a character to a digit in a given base
64 static bool Convert(CHAR c, uint8_t* digit) {
76 static bool Convert(CHAR c, uint8_t* digit) {
92 return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
444 // convert to 8-bit and then use the 8-bit version.
  /external/libweave/third_party/chromium/base/strings/
string_number_conversions.cc 56 // Utility to convert a character to a digit in a given base
63 static bool Convert(CHAR c, uint8_t* digit) {
75 static bool Convert(CHAR c, uint8_t* digit) {
91 return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
383 // convert to 8-bit and then use the 8-bit version.
  /external/protobuf/gtest/scripts/
pump.py 568 def Convert(file_path):
814 ast = Convert(file_path)
  /external/v8/src/
api.h 283 static inline Local<To> Convert(v8::internal::Handle<From> obj) {
319 return Utils::Convert<v8::internal::Object, T>(obj);
328 *local = Utils::Convert<v8::internal::Object, T>(handle);
339 return Convert<v8::internal::From, v8::To>(obj); \
347 return Convert<v8::internal::JSTypedArray, v8::Type##Array>(obj); \
types.cc     [all...]
  /external/v8/test/cctest/
types-fuzz.h 235 TypeHandle Convert(TypeHandle2 t) {
236 return Type::template Convert<Type2>(t, region_);
test-types.cc     [all...]
  /external/libweave/third_party/chromium/base/json/
json_parser.cc 44 // First deep copy to convert JSONStringValue to std::string and swap that
68 // to convert any JSONStringValues to std::string.
94 // First deep copy to convert JSONStringValue to std::string and swap that
114 // to convert any JSONStringValues to std::string.
320 void JSONParser::StringBuilder::Convert() {
338 Convert();
603 string.Convert();
635 string.Convert();
750 // Used to convert the UTF-16 code units to a code point and then to a UTF-8
812 dest->Convert();
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/
gflags.py 632 # If the callee does not care about tabs we simply convert them to
    [all...]
  /external/chromium-trace/catapult/third_party/python_gflags/
gflags.py 632 # If the callee does not care about tabs we simply convert them to
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_unittest.cc 62 void Convert(const webrtc::NetEqNetworkStatistics& stats_raw,
82 void Convert(const webrtc::RtcpStatistics& stats_raw,
198 Convert(stats_raw, &stats);
243 Convert(stats_raw, &stats);
    [all...]

Completed in 1732 milliseconds

1 2