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

1 2 3 4 5 6

  /external/webkit/Source/WebKit/mac/ForwardingHeaders/runtime/
SymbolTable.h 1 #include <JavaScriptCore/SymbolTable.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
SymbolTable.h 3 #include <JavaScriptCore/SymbolTable.h>
  /external/javassist/src/main/javassist/compiler/
SymbolTable.java 21 public final class SymbolTable extends HashMap {
22 private SymbolTable parent;
24 public SymbolTable() { this(null); }
26 public SymbolTable(SymbolTable p) {
31 public SymbolTable getParent() { return parent; }
  /frameworks/compile/mclinker/unittests/
SymbolTableTest.h 17 class SymbolTable;
26 * \see SymbolTable
44 mcld::SymbolTable<>* m_pTestee;
SymbolTableTest.cpp 9 #include "mcld/LD/SymbolTable.h"
20 m_pTestee = new SymbolTable<>(m_StrTable);
42 mcld::SymbolTable<>::iterator it;
  /external/openfst/src/include/fst/
symbol-table-ops.h 38 SymbolTable *PruneSymbolTable(const Fst<Arc> &fst, const SymbolTable &syms,
51 SymbolTable *pruned = new SymbolTable(syms.Name() + "_pruned");
62 SymbolTable *CompactSymbolTable(const SymbolTable &syms);
66 // in left will be assigned to value assigned from the left SymbolTable.
75 // SymbolTable *bnew = MergeSymbolTable(a.OutputSymbols(),
82 SymbolTable *MergeSymbolTable(const SymbolTable &left, const SymbolTable &right
    [all...]
symbol-table.h 125 // does not exists, return SymbolTable::kNoSymbol.
132 // does not exists, return SymbolTable::kNoSymbol.
205 // \class SymbolTable
208 // The SymbolTable implements the mappings of labels to strings and reverse.
214 // SymbolTable for the words in the language model can share this symbol
217 class SymbolTable {
222 SymbolTable() : impl_(new SymbolTableImpl("<unspecified>")) {}
225 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
228 SymbolTable(const SymbolTable& table) : impl_(table.impl_)
    [all...]
  /external/srec/srec/Semproc/include/
SR_SymbolTable.h 85 SymbolTable;
96 SREC_SEMPROC_API ESR_ReturnCode ST_Init(SymbolTable** self);
102 SREC_SEMPROC_API ESR_ReturnCode ST_Free(SymbolTable* self);
109 ESR_ReturnCode ST_Copy(SymbolTable* self, HashMap* dst);
117 SREC_SEMPROC_API ESR_ReturnCode ST_putKeyValue(SymbolTable* self, const LCHAR* key, const LCHAR* value);
125 SREC_SEMPROC_API ESR_ReturnCode ST_getKeyValue(SymbolTable* self, const LCHAR* key, LCHAR** value);
132 SREC_SEMPROC_API ESR_ReturnCode ST_getSymbolSlot(SymbolTable* self, Symbol** slot);
138 SREC_SEMPROC_API ESR_ReturnCode ST_reset(SymbolTable* self);
139 SREC_SEMPROC_API ESR_ReturnCode ST_reset_all(SymbolTable* self);
148 SREC_SEMPROC_API ESR_ReturnCode ST_putSpecialKeyValue(SymbolTable* self, const const LCHAR* key, const LCHAR* value)
    [all...]
  /external/openfst/src/include/fst/script/
print.h 33 const SymbolTable *isyms;
34 const SymbolTable *osyms;
35 const SymbolTable *ssyms;
42 const SymbolTable *isyms,
43 const SymbolTable *osyms,
44 const SymbolTable *ssyms,
64 const SymbolTable *isyms,
65 const SymbolTable *osyms,
66 const SymbolTable *ssyms,
74 const SymbolTable *isyms = NULL
    [all...]
relabel.h 35 const SymbolTable *, const SymbolTable *, bool,
36 const SymbolTable *, const SymbolTable *,
70 typedef args::Package<MutableFstClass*, const SymbolTable*,
71 const SymbolTable*> RelabelArgs3;
73 void Relabel(args::Package<MutableFstClass*, const SymbolTable*,
74 const SymbolTable*> *args) {
82 const SymbolTable *old_isyms, const SymbolTable *relabel_isyms
    [all...]
compile.h 36 const fst::SymbolTable *isyms;
37 const fst::SymbolTable *osyms;
38 const fst::SymbolTable *ssyms;
46 const string &fst_type, const fst::SymbolTable *isyms,
47 const fst::SymbolTable *osyms,
48 const fst::SymbolTable *ssyms,
84 const SymbolTable *isyms,
85 const SymbolTable *osyms, const SymbolTable *ssyms,
draw.h 36 const SymbolTable *isyms;
37 const SymbolTable *osyms;
38 const SymbolTable *ssyms;
54 const SymbolTable *isyms,
55 const SymbolTable *osyms,
56 const SymbolTable *ssyms,
92 const SymbolTable *isyms,
93 const SymbolTable *osyms,
94 const SymbolTable *ssyms,
print-impl.h 46 const SymbolTable *isyms,
47 const SymbolTable *osyms,
48 const SymbolTable *ssyms,
77 void PrintId(int64 id, const SymbolTable *syms,
137 const SymbolTable *isyms_; // ilabel symbol table
138 const SymbolTable *osyms_; // olabel symbol table
139 const SymbolTable *ssyms_; // slabel symbol table
  /external/icu4c/common/unicode/
symtable.h 54 class U_COMMON_API SymbolTable /* not : public UObject because this is an interface/mixin class */ {
67 virtual ~SymbolTable();
  /external/openfst/src/lib/
symbol-table-ops.cc 21 SymbolTable *MergeSymbolTable(const SymbolTable &left, const SymbolTable &right,
24 // copied version of SymbolTable of left or right if either symbol table is
26 SymbolTable *merged = new SymbolTable("merge_" + left.Name() + "_" +
85 SymbolTable *CompactSymbolTable(const SymbolTable &syms) {
91 SymbolTable *compact = new SymbolTable(syms.Name() + "_compact")
    [all...]
  /external/openfst/src/script/
relabel.cc 26 const SymbolTable *old_isyms, const SymbolTable *relabel_isyms,
28 const SymbolTable *old_osyms, const SymbolTable *relabel_osyms,
46 const SymbolTable *new_isymbols,
47 const SymbolTable *new_osymbols) {
compile.cc 28 const SymbolTable *isyms,
29 const SymbolTable *osyms, const SymbolTable *ssyms,
draw.cc 27 const SymbolTable *isyms,
28 const SymbolTable *osyms,
29 const SymbolTable *ssyms,
print.cc 27 const SymbolTable *isyms,
28 const SymbolTable *osyms,
29 const SymbolTable *ssyms,
  /external/openfst/src/bin/
fstrelabel.cc 45 using fst::SymbolTable;
79 const SymbolTable* old_isymbols = FLAGS_isymbols.empty()
81 : SymbolTable::ReadText(FLAGS_isymbols, opts);
82 const SymbolTable* relabel_isymbols = FLAGS_relabel_isymbols.empty()
84 : SymbolTable::ReadText(FLAGS_relabel_isymbols, opts);
87 const SymbolTable* old_osymbols = FLAGS_osymbols.empty()
89 : SymbolTable::ReadText(FLAGS_osymbols, opts);
90 const SymbolTable* relabel_osymbols = FLAGS_relabel_osymbols.empty()
92 : SymbolTable::ReadText(FLAGS_relabel_osymbols, opts);
fstcompile.cc 41 using fst::SymbolTable;
64 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0;
70 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
75 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
80 ssyms = SymbolTable::ReadText(FLAGS_ssymbols);
fstsymbols.cc 43 using fst::SymbolTable;
64 const SymbolTable *isyms = fst->InputSymbols();
73 const SymbolTable *osyms = fst->OutputSymbols();
87 fst->SetInputSymbols(SymbolTable::ReadText(FLAGS_isymbols, opts));
92 fst->SetOutputSymbols(SymbolTable::ReadText(FLAGS_osymbols, opts));
99 SymbolTable *isyms = RelabelSymbolTable(fst->InputSymbols(), ipairs);
109 SymbolTable *osyms = RelabelSymbolTable(fst->OutputSymbols(), opairs);
fstdraw.cc 48 using fst::SymbolTable;
78 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0;
84 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
89 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
94 ssyms = SymbolTable::ReadText(FLAGS_ssymbols);
  /external/icu4c/common/
ruleiter.h 20 class SymbolTable;
51 const SymbolTable* sym;
72 * its value. Variables are parsed using the SymbolTable API.
101 RuleCharacterIterator(const UnicodeString& text, const SymbolTable* sym,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.h 144 // \class SymbolTable
147 // The SymbolTable implements the mappings of labels to strings and reverse.
153 // SymbolTable for the words in the language model can share this symbol
156 class SymbolTable {
162 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
165 SymbolTable(const SymbolTable& table) : impl_(table.impl_) {
171 ~SymbolTable() {
176 SymbolTable* Copy() const {
177 return new SymbolTable(*this)
    [all...]

Completed in 194 milliseconds

1 2 3 4 5 6