Searched refs:SymbolTable (Results 1 - 25 of 80) sorted by relevance

1234

/external/webkit/Source/WebKit/mac/ForwardingHeaders/runtime/
H A DSymbolTable.h1 #include <JavaScriptCore/SymbolTable.h>
/external/webkit/Source/WebCore/ForwardingHeaders/runtime/
H A DSymbolTable.h3 #include <JavaScriptCore/SymbolTable.h>
/external/javassist/src/main/javassist/compiler/
H A DSymbolTable.java21 public final class SymbolTable extends HashMap { class in inherits:HashMap
22 private SymbolTable parent;
24 public SymbolTable() { this(null); } method in class:SymbolTable
26 public SymbolTable(SymbolTable p) { method in class:SymbolTable
31 public SymbolTable getParent() { return parent; }
H A DParser.java32 public ASTList parseMember(SymbolTable tbl) throws CompileError {
42 public ASTList parseMember1(SymbolTable tbl) throws CompileError {
74 private FieldDecl parseField(SymbolTable tbl, ASTList mods,
103 private MethodDecl parseMethod1(SymbolTable tbl, boolean isConstructor,
144 public MethodDecl parseMethod2(SymbolTable tbl, MethodDecl md)
183 private Declarator parseFormalType(SymbolTable tbl) throws CompileError {
204 private Declarator parseFormalParam(SymbolTable tbl)
237 public Stmnt parseStatement(SymbolTable tbl)
281 private Stmnt parseBlock(SymbolTable tbl) throws CompileError {
286 SymbolTable tbl
[all...]
H A DJavac.java38 SymbolTable stable;
66 stable = new SymbolTable();
212 SymbolTable stb = new SymbolTable(stable);
564 SymbolTable stb = new SymbolTable(stable);
589 public static ASTree parseExpr(String src, SymbolTable st)
/external/srec/srec/Semproc/include/
H A DSR_SymbolTable.h85 SymbolTable; typedef in typeref:struct:SymbolTable_t
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* sel
[all...]
H A DSR_SemanticProcessorImpl.h51 SymbolTable* symtable;
H A DSR_ExpressionParser.h191 SymbolTable* symtable, ExpressionEvaluator* evaluator,
/external/icu4c/common/unicode/
H A Dsymtable.h54 class U_COMMON_API SymbolTable /* not : public UObject because this is an interface/mixin class */ { class
67 virtual ~SymbolTable();
H A Duniset.h27 class SymbolTable;
393 const SymbolTable* symbols,
411 const SymbolTable* symbols,
609 const SymbolTable* symbols,
646 const SymbolTable* symbols,
1481 const SymbolTable* symbols,
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dsymbol-table.h144 // \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 { class in namespace:fst
162 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {} function in class:fst::SymbolTable
165 SymbolTable(const SymbolTable& table) : impl_(table.impl_) { function in class:fst::SymbolTable
171 ~SymbolTable() {
176 SymbolTable* Copy() const {
177 return new SymbolTable(*thi
307 explicit SymbolTable(SymbolTableImpl* impl) : impl_(impl) {} function in class:fst::SymbolTable
[all...]
H A Dfst.h39 const SymbolTable* isymbols; // Pointer to input symbols (if non-zero)
40 const SymbolTable* osymbols; // Pointer to output symbols (if non-zero)
44 const SymbolTable* isym = 0,
45 const SymbolTable* osym = 0)
196 virtual const SymbolTable* InputSymbols() const = 0;
199 virtual const SymbolTable* OutputSymbols() const = 0;
407 isymbols_(impl.isymbols_ ? new SymbolTable(impl.isymbols_) : 0),
408 osymbols_(impl.osymbols_ ? new SymbolTable(impl.osymbols_) : 0),
431 const SymbolTable* InputSymbols() const { return isymbols_; }
433 const SymbolTable* OutputSymbol
[all...]
H A Dmutable-fst.h54 virtual const SymbolTable* InputSymbols() const = 0;
56 virtual const SymbolTable* OutputSymbols() const = 0;
59 virtual SymbolTable* InputSymbols() = 0;
61 virtual SymbolTable* OutputSymbols() = 0;
64 virtual void SetInputSymbols(const SymbolTable* isyms) = 0;
66 virtual void SetOutputSymbols(const SymbolTable* osyms) = 0;
H A Drelabel.h100 const SymbolTable* new_isymbols,
101 const SymbolTable* new_osymbols) {
105 const SymbolTable* old_isymbols = fst->InputSymbols();
106 const SymbolTable* old_osymbols = fst->OutputSymbols();
192 const SymbolTable* new_isymbols,
193 const SymbolTable* new_osymbols,
204 const SymbolTable* old_isymbols = fst.InputSymbols();
205 const SymbolTable* old_osymbols = fst.OutputSymbols();
341 const SymbolTable* new_isymbols,
342 const SymbolTable* new_osymbol
[all...]
H A Dverify.h35 const SymbolTable *isyms = fst.InputSymbols();
36 const SymbolTable *osyms = fst.OutputSymbols();
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSVariableObject.cpp47 SymbolTable::const_iterator end = symbolTable().end();
48 for (SymbolTable::const_iterator it = symbolTable().begin(); it != end; ++it) {
H A DSymbolTable.h122 typedef HashMap<RefPtr<StringImpl>, SymbolTableEntry, IdentifierRepHash, HashTraits<RefPtr<StringImpl> >, SymbolTableIndexHashTraits> SymbolTable; typedef in namespace:JSC
124 class SharedSymbolTable : public SymbolTable, public RefCounted<SharedSymbolTable> {
H A DJSStaticScopeObject.h56 SymbolTable m_symbolTable;
H A DJSVariableObject.h34 #include "SymbolTable.h"
47 SymbolTable& symbolTable() const { return *m_symbolTable; }
69 JSVariableObject(JSGlobalData& globalData, Structure* structure, SymbolTable* symbolTable, Register* registers)
87 SymbolTable* m_symbolTable; // Maps name -> offset from "r" in register file.
130 SymbolTable::iterator iter = symbolTable().find(propertyName.impl());
/external/srec/tools/grxmlcompile/
H A Dfst-io.h49 const SymbolTable *isyms,
50 const SymbolTable *osyms,
51 const SymbolTable *ssyms,
78 void PrintId(int64 id, const SymbolTable *syms,
138 const SymbolTable *isyms_; // ilabel symbol table
139 const SymbolTable *osyms_; // olabel symbol table
140 const SymbolTable *ssyms_; // slabel symbol table
167 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0;
170 isyms = SymbolTable::ReadText(FLAGS_isymbols);
175 osyms = SymbolTable
[all...]
/external/icu4c/common/
H A Druleiter.h20 class SymbolTable;
51 const SymbolTable* sym;
72 * its value. Variables are parsed using the SymbolTable API.
102 RuleCharacterIterator(const UnicodeString& text, const SymbolTable* sym,
H A Druleiter.cpp22 RuleCharacterIterator::RuleCharacterIterator(const UnicodeString& theText, const SymbolTable* theSym,
45 if (c == SymbolTable::SYMBOL_REF && buf == 0 &&
/external/srec/srec/Semproc/src/
H A DSymbolTable.c2 * SymbolTable.c *
27 ESR_ReturnCode ST_Init(SymbolTable **ptr)
36 *ptr = NEW(SymbolTable, MTAG);
53 ESR_ReturnCode ST_Free(SymbolTable *self)
79 ESR_ReturnCode ST_putKeyValue(SymbolTable* self, const LCHAR* key, const LCHAR* value)
121 ESR_ReturnCode ST_Copy(SymbolTable* self, HashMap* dst)
149 ESR_ReturnCode ST_getKeyValue(SymbolTable* self, const LCHAR* key, LCHAR** value)
196 ESR_ReturnCode ST_getSymbolSlot(SymbolTable* ptr, Symbol** slot)
213 ESR_ReturnCode ST_reset(SymbolTable *ptr)
235 ESR_ReturnCode ST_reset_all(SymbolTable *pt
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp40 SymbolTable[Name] = Mem;
48 StringMap<uint8_t*>::iterator i = SymbolTable.begin();
49 StringMap<uint8_t*>::iterator e = SymbolTable.end();
H A DRuntimeDyldImpl.h53 StringMap<uint8_t*> SymbolTable; member in class:llvm::RuntimeDyldImpl
78 return SymbolTable.lookup(Name);

Completed in 373 milliseconds

1234