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

1 2

  /external/openfst/src/script/
convert.cc 20 #include <fst/script/convert.h>
25 FstClass *Convert(const FstClass &ifst, const string &new_type) {
29 Apply<Operation<ConvertArgs> >("Convert", ifst.ArcType(),
35 REGISTER_FST_OPERATION(Convert, StdArc, ConvertArgs);
36 REGISTER_FST_OPERATION(Convert, LogArc, ConvertArgs);
37 REGISTER_FST_OPERATION(Convert, Log64Arc, ConvertArgs);
  /external/chromium_org/content/common/
inter_process_time_ticks_converter.cc 47 DCHECK_EQ(target_range, Convert(source_range));
65 return LocalTimeDelta(Convert(remote_delta.value_));
68 int64 InterProcessTimeTicksConverter::Convert(int64 value) const {
  /external/openfst/src/include/fst/script/
convert.h 32 void Convert(ConvertArgs *args) {
36 Fst<Arc> *result = Convert(fst, new_type);
42 %newobject Convert;
44 FstClass *Convert(const FstClass& f, const string &new_type);
fst-class.h 232 static FstClassImplBase *Convert(const FstClass &other) {
233 LOG(ERROR) << "Doesn't make sense to convert any class to type FstClass.";
313 static MutableFstClass *Read(const string &fname, bool convert = false);
325 static FstClassImplBase *Convert(const FstClass &other) {
326 LOG(ERROR) << "Doesn't make sense to convert any class to type "
369 static FstClassImplBase *Convert(const FstClass &other) {
  /external/chromium_org/tools/cygprofile/
mergetraces.py 95 def Convert (call_lines, startAddr, endAddr):
167 trace_calls = Convert(trace_calls, trace_start, trace_end)
  /external/chromium_org/media/base/
audio_converter.cc 160 void AudioConverter::Convert(AudioBus* dest) {
  /external/openfst/src/include/fst/
register.h 104 &FstRegisterer<F>::Convert);
107 static Fst<Arc> *Convert(const Fst<Arc> &fst) { return new F(fst); }
118 Fst<A> *Convert(const Fst<A> &fst, const string &ftype) {
124 LOG(ERROR) << "Fst::Convert: Unknown FST type \"" << ftype
  /external/chromium_org/chrome/browser/policy/
policy_error_map.cc 131 Convert(error);
137 void PolicyErrorMap::Convert(const PendingError& error) {
163 Convert(pending_[i]);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
screencastid.h 67 static cricket::ScreencastIdList Convert(const std::vector<T>& list) {
  /external/chromium_org/v8/test/cctest/
test-declarative-accessors.cc 149 static v8::Handle<v8::Value> Convert(int32_t value, v8::Isolate* isolate) {
154 static v8::Handle<v8::Value> Convert(float value, v8::Isolate*) {
159 static v8::Handle<v8::Value> Convert(double value, v8::Isolate*) {
178 v8::Handle<v8::Value> expected = Convert(value, helper->isolate_);
  /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));
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
register.h 141 entry.converter = &FstRegisterer<F>::Convert;
147 static Fst<Arc> *Convert(const Fst<Arc> &fst) { return new F(fst); }
158 Fst<A> *Convert(const Fst<A> &fst, const string &ftype) {
164 LOG(ERROR) << "Fst::Convert: Unknown FST type \"" << ftype
  /external/chromium_org/base/json/
json_value_converter.h 44 // 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
72 // and specify a function to convert a StringPiece to your type.
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(
    [all...]
json_parser.cc 43 // First deep copy to convert JSONStringValue to std::string and swap that
67 // to convert any JSONStringValues to std::string.
93 // First deep copy to convert JSONStringValue to std::string and swap that
113 // to convert any JSONStringValues to std::string.
315 void JSONParser::StringBuilder::Convert() {
333 Convert();
598 string.Convert();
630 string.Convert();
745 // Used to convert the UTF-16 code units to a code point and then to a UTF-8
799 dest->Convert();
    [all...]
  /external/chromium_org/ppapi/proxy/
serialized_var.cc 376 SerializedVar SerializedVarReturnValue::Convert(Dispatcher* dispatcher,
428 // Convert the array written by the pepper code to the serialized structure.
  /external/chromium/base/
string_number_conversions.cc 99 // Utility to convert a character to a digit in a given base
106 static bool Convert(CHAR c, uint8* digit) {
118 static bool Convert(CHAR c, uint8* digit) {
133 return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
498 // convert to 8-bit and then use the 8-bit version.
  /external/chromium_org/base/strings/
string_number_conversions.cc 102 // Utility to convert a character to a digit in a given base
109 static bool Convert(CHAR c, uint8* digit) {
121 static bool Convert(CHAR c, uint8* digit) {
136 return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
477 // convert to 8-bit and then use the 8-bit version.
  /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 {{override}}
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 {{override}}
126 Agg<float> ce1 = { Convert<int>(123456789) }; // expected-warning {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{override}}
169 Agg<short> ce1 = { Convert<int>(100000) }; // expected-warning {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{override}} 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 {{override}}
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 {{override}}
125 Agg<float> ce1 = { Convert<int>(123456789) }; // expected-error {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{override}}
168 Agg<short> ce1 = { Convert<int>(100000) }; // expected-error {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{override}} expected-warning {{changes value from 100000 to -31072}}
  /external/chromium_org/content/browser/speech/
speech_recognizer_impl.cc 43 scoped_refptr<AudioChunk> Convert(const uint8* data, size_t size);
134 scoped_refptr<AudioChunk> SpeechRecognizerImpl::OnDataConverter::Convert(
142 audio_converter_.Convert(output_bus_.get());
159 // to Convert(). If so, we have a serious issue in our design since we might
275 // Convert audio from native format to fixed format used by WebSpeech.
277 event_args.audio_data = audio_converter_->Convert(data, size);
545 // and the idea is to simplify the audio conversion since each Convert()
  /external/chromium_org/v8/src/
api.h 284 static inline Local<To> Convert(v8::internal::Handle<From> obj) {
328 return Utils::Convert<v8::internal::Object, T>(obj);
336 return Convert<v8::internal::From, v8::To>(obj); \
344 return Convert<v8::internal::JSTypedArray, v8::TypedArray>(obj); \
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags.py 632 # If the callee does not care about tabs we simply convert them to
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/earth/
earth.cc 130 union Convert {
133 Convert(int x) { i = x; }
134 Convert(float x) { f = x; }
140 Convert u(f);
145 Convert u(i);
515 // convert region # into x0, y0, x1, y1 rectangle
679 // Convert Pepper Simple event to a PPAPI C++ event
716 // Convert Pepper Simple message to PPAPI C++ vars
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/
earth.cc 132 union Convert {
135 Convert(int x) { i = x; }
136 Convert(float x) { f = x; }
142 Convert u(f);
147 Convert u(i);
559 // convert region # into x0, y0, x1, y1 rectangle
  /external/chromium_org/third_party/python_gflags/
gflags.py 632 # If the callee does not care about tabs we simply convert them to
    [all...]

Completed in 1403 milliseconds

1 2