Searched refs:Convert (Results 1 - 25 of 95) sorted by relevance

1234

/external/llvm/tools/yaml2obj/
H A Dyaml2obj.cpp1 //===- yaml2obj - Convert YAML to a binary object file --------------------===//
65 int convertYAML(yaml::Input & YIn, raw_ostream &Out, ConvertFuncPtr Convert) { argument
69 return Convert(YIn, Out);
99 ConvertFuncPtr Convert = nullptr;
101 Convert = yaml2coff;
103 Convert = yaml2elf;
111 int Res = convertYAML(YIn, Out->os(), Convert);
/external/chromium_org/content/common/
H A Dinter_process_time_ticks_converter.cc47 DCHECK_EQ(target_range, Convert(source_range));
65 return LocalTimeDelta(Convert(remote_delta.value_));
68 int64 InterProcessTimeTicksConverter::Convert(int64 value) const { function in class:content::InterProcessTimeTicksConverter
H A Dinter_process_time_ticks_converter.h65 int64 Convert(int64 value) const;
/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}}
104 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}}
125 Agg<float> ce1 = { Convert<int>(123456789) }; // expected-error {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{silence}}
169 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/clang/test/SemaCXX/
H A Dwarn-float-conversion.cpp19 void Convert(float f, double d, long double ld) { function
/external/chromium_org/base/json/
H A Djson_value_converter.h44 // Convert() method.
47 // converter.Convert(json, &message);
49 // Convert() returns false when it fails. Here "fail" means that the value is
52 // Also note that Convert() will modify the passed |message| even when it
111 virtual bool Convert(const base::Value& value, FieldType* field) const = 0;
127 return value_converter_->Convert(value, &(dst->*field_pointer_));
144 virtual bool Convert(const base::Value& value, int* field) const OVERRIDE {
157 virtual bool Convert(
171 virtual bool Convert(
185 virtual bool Convert(cons
500 bool Convert(const base::Value& value, StructType* output) const { function in class:base::JSONValueConverter
[all...]
H A Djson_value_converter_unittest.cc112 EXPECT_TRUE(converter.Convert(*value.get(), &message));
154 EXPECT_TRUE(converter.Convert(*value.get(), &message));
196 EXPECT_FALSE(converter.Convert(*value.get(), &message));
198 // Convert() even it fails.
212 // Convert() still succeeds even if the input doesn't have "bar" field.
213 EXPECT_TRUE(converter.Convert(*value.get(), &message));
235 EXPECT_FALSE(converter.Convert(*value.get(), &message));
252 EXPECT_FALSE(converter.Convert(*value.get(), &message));
/external/chromium_org/third_party/markupsafe/
H A D_speedups.c188 "Convert the characters &, <, >, ', and \" in string s to HTML-safe\n"
/external/chromium_org/v8/src/
H A Dunicode.h224 static int Convert(uchar c,
232 static int Convert(uchar c,
239 static int Convert(uchar c,
246 static int Convert(uchar c,
253 static int Convert(uchar c,
H A Dtypes.cc796 typename TypeImpl<Config>::TypeHandle TypeImpl<Config>::Convert( function in class:v8::internal::TypeImpl
807 Convert<OtherType>(type->AsConstant()->Bound(), region), region);
809 TypeHandle outer = Convert<OtherType>(type->AsContext()->Outer(), region);
815 unioned->Set(i, Convert<OtherType>(type->AsUnion()->Get(i), region));
820 Convert<OtherType>(type->AsArray()->Element(), region),
821 Convert<OtherType>(type->AsArray()->Bound(), region), region);
824 Convert<OtherType>(type->AsFunction()->Result(), region),
825 Convert<OtherType>(type->AsFunction()->Receiver(), region),
826 Convert<OtherType>(type->AsFunction()->Bound(), region),
830 Convert<OtherTyp
[all...]
/external/chromium_org/google_apis/drive/
H A Ddrive_api_parser.cc56 !converter.Convert(*parent_value, &(*result)[i]))
247 if (!converter.Convert(value, this)) {
286 if (!converter.Convert(value, this)) {
351 if (!converter.Convert(value, this)) {
385 if (!converter.Convert(value, this)) {
422 if (!converter.Convert(value, this)) {
496 if (!converter.Convert(value, this)) {
537 if (!converter.Convert(value, this)) {
579 if (!converter.Convert(value, this)) {
623 if (!converter.Convert(valu
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dregister.h141 entry.converter = &FstRegisterer<F>::Convert;
147 static Fst<Arc> *Convert(const Fst<Arc> &fst) { return new F(fst); } function in class:fst::FstRegisterer
158 Fst<A> *Convert(const Fst<A> &fst, const string &ftype) { function in namespace:fst
164 LOG(ERROR) << "Fst::Convert: Unknown FST type \"" << ftype
/external/chromium_org/components/policy/core/browser/
H A Dpolicy_error_map.h97 void Convert(PendingError* error);
H A Dpolicy_error_map.cc219 Convert(error);
226 void PolicyErrorMap::Convert(PendingError* error) { function in class:policy::PolicyErrorMap
233 Convert(pending_[i]);
/external/chromium_org/media/base/
H A Daudio_converter.h42 // ac.Convert(output_audio_bus.get());
44 // Convert() will ask for input audio data from each InputCallback and convert
49 // removed from Convert() processing via AddInput() and RemoveInput().
78 void Convert(AudioBus* dest);
107 // Set of inputs for Convert().
H A Daudio_converter_perftest.cc44 converter.Convert(output_bus.get());
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dvideo_source.h83 void Convert(const VideoSource& target, bool force = false) const;
/external/chromium_org/media/audio/
H A Dvirtual_audio_input_stream.cc41 audio_converter_.Convert(audio_bus);
140 mixer_.Convert(audio_bus);
/external/llvm/lib/Support/Windows/
H A DProcess.inc154 // Convert the argument to UTF-16 to pass it to _wgetenv().
175 // Convert the result from UTF-16 to UTF-8.
/external/chromium_org/net/cert/
H A Dct_log_response_parser.cc118 if (!converter.Convert(*json.get(), &parsed_sth)) {
/external/chromium_org/third_party/lcov/bin/
H A Dgendesc124 Convert a test case description file into a format as understood by genhtml.
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dscreencastid.h67 static cricket::ScreencastIdList Convert(const std::vector<T>& list) { function in class:cricket::ScreencastId
/external/chromium_org/chrome/browser/local_discovery/
H A Dpwg_raster_converter.cc108 void Convert(base::RefCountedMemory* data,
149 void PwgUtilityProcessHostClient::Convert( function in class:local_discovery::__anon4109::PwgUtilityProcessHostClient
278 utility_client_->Convert(data, callback_.callback());
/external/chromium_org/chrome/browser/printing/
H A Dpdf_to_emf_converter.cc102 void Convert(base::RefCountedMemory* data,
145 void PdfToEmfUtilityProcessHostClient::Convert( function in class:printing::__anon4419::PdfToEmfUtilityProcessHostClient
299 utility_client_->Convert(data, callback_.callback());

Completed in 3687 milliseconds

1234