/external/openfst/src/lib/ |
symbol-table-ops.cc | 112 SymbolTable *isymbols = SymbolTable::Read(in, filename); local 113 if (isymbols == NULL) { 119 return isymbols; 121 delete isymbols;
|
fst.cc | 172 : source(src), header(hdr), isymbols(isym), osymbols(osym) { 178 : source(src), header(0), isymbols(isym), osymbols(osym) {
|
/external/openfst/src/bin/ |
fstcompile.cc | 28 DEFINE_string(isymbols, "", "Input label symbol table");
|
fstdraw.cc | 25 DEFINE_string(isymbols, "", "Input label symbol table");
|
fstprint.cc | 26 DEFINE_string(isymbols, "", "Input label symbol table");
|
fstrelabel.cc | 33 DEFINE_string(isymbols, "", "Input label symbol table");
|
fstsymbols.cc | 29 DEFINE_string(isymbols, "", "Input label symbol table"); 68 LOG(ERROR) << "save isymbols requested but there are no input symbols.";
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
fst.h | 39 const SymbolTable* isymbols; // Pointer to input symbols (if non-zero) member in struct:fst::FstReadOptions 46 : source(src), header(hdr), isymbols(isym), osymbols(osym) {} 486 if (opts.isymbols) { 488 isymbols_ = opts.isymbols->Copy();
|
replace.h | 154 const SymbolTable* isymbols = fst_array_[1]->InputSymbols(); local 157 if (!CompatSymbols(isymbols, fst_array_[i]->InputSymbols())) {
|
/external/openfst/src/include/fst/ |
fst.h | 64 const SymbolTable* isymbols; // Pointer to input symbols. If non-zero, use member in struct:fst::FstReadOptions 65 // this info (read and skip stream isymbols) 816 if (opts.isymbols) { 818 isymbols_ = opts.isymbols->Copy();
|