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

1 2 3

  /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/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);
compile.h 60 using fst::Convert;
71 fst = Convert<Arc>(*fst, args->fst_type);
73 FSTERROR() << "Failed to convert FST to desired type: "
register.h 110 Class::Convert<Arc>))
fst-class.h 206 static FstClassImplBase *Convert(const FstClass &other) {
207 LOG(ERROR) << "Doesn't make sense to convert any class to type FstClass.";
272 static MutableFstClass *Read(const string &fname, bool convert = false);
284 static FstClassImplBase *Convert(const FstClass &other) {
285 LOG(ERROR) << "Doesn't make sense to convert any class to type "
328 static FstClassImplBase *Convert(const FstClass &other) {
fstscript.h 37 #include <fst/script/convert.h>
97 REGISTER_FST_OPERATION(Convert, Arc, ConvertArgs);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
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}}
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}}
  /external/openfst/src/include/fst/
register.h 103 &FstRegisterer<F>::Convert);
106 static Fst<Arc> *Convert(const Fst<Arc> &fst) { return new F(fst); }
117 Fst<A> *Convert(const Fst<A> &fst, const string &ftype) {
123 LOG(ERROR) << "Fst::Convert: Unknown FST type \"" << ftype
  /external/openfst/src/bin/
fstconvert.cc 23 #include <fst/script/convert.h>
52 ofst = s::Convert(*ifst, FLAGS_fst_type);
  /external/v8/src/
unicode.h 287 static int Convert(uchar c,
294 static int Convert(uchar c,
301 static int Convert(uchar c,
308 static int Convert(uchar c,
315 static int Convert(uchar c,
unicode.cc     [all...]
unicode-inl.h 66 int length = T::Convert(c, n, result, &allow_caching);
  /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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 100 /// Convert - Create a new persistent APSInt with the same value as 'From'
102 const llvm::APSInt &Convert(const llvm::APSInt& To,
108 return getValue(TargetType.convert(From));
111 const llvm::APSInt &Convert(QualType T, const llvm::APSInt &From) {
116 return getValue(TargetType.convert(From));
  /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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 29 (* Convert bool 0/1 to double 0.0 or 1.0 *)
51 (* Convert condition to a bool by comparing equal to 0.0 *)
145 (* Convert condition to a bool by comparing equal to 0.0. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 38 (* Convert bool 0/1 to double 0.0 or 1.0 *)
69 (* Convert condition to a bool by comparing equal to 0.0 *)
163 (* Convert condition to a bool by comparing equal to 0.0. *)
  /external/chromium/chrome/browser/resources/net_internals/
resizableverticalsplitview.js 102 // Convert from page coordinates, to view coordinates.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 29 (* Convert bool 0/1 to double 0.0 or 1.0 *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 29 (* Convert bool 0/1 to double 0.0 or 1.0 *)
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 259 const llvm::APSInt &Result = BasicVals.Convert(resultTy, RHS);
285 ConvertedRHS = &BasicVals.Convert(SymbolType, RHS);
291 ConvertedRHS = &BasicVals.Convert(SymbolType, RHS);
294 ConvertedRHS = &BasicVals.Convert(resultTy, RHS);
477 // Convert the two constants to a common type, then combine them.
479 // resultTy may not be the best type to convert to, but it's
485 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
486 const llvm::APSInt &second = IntType.convert(*RHSValue);
863 // Convert the signedness of the integer (if necessary).
882 // Convert the bitwidth of rightI. This should deal with overflo
    [all...]
  /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/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 67 (* Convert bool 0/1 to double 0.0 or 1.0 *)
99 (* Convert condition to a bool by comparing equal to 0.0 *)
220 (* Convert condition to a bool by comparing equal to 0.0. *)
  /build/core/
cleanspec.mk 79 # Convert absolute path to relative path, e.g. when using mm.

Completed in 3211 milliseconds

1 2 3