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

1 2 3 4

  /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; }
Parser.java 32 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 tbl2 = new SymbolTable(tbl)
    [all...]
  /frameworks/compile/mclinker/unittests/
SymbolTableTest.h 16 class SymbolTable;
24 * \see SymbolTable
41 mcld::SymbolTable<>* m_pTestee;
SymbolTableTest.cpp 9 #include "mcld/LD/SymbolTable.h"
18 m_pTestee = new SymbolTable<>(m_StrTable);
37 mcld::SymbolTable<>::iterator it;
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.h 25 #include "process/SymbolTable.h"
41 static bool isSymbolVisible(const SymbolTable::Symbol& symbol, const Reference& ref,
48 static const SymbolTable::Symbol* resolveSymbol(const Reference& reference,
49 NameMangler* mangler, SymbolTable* symbols);
56 static const SymbolTable::Symbol* resolveSymbolCheckVisibility(const Reference& reference,
58 SymbolTable* symbols,
66 static const SymbolTable::Symbol* resolveAttributeCheckVisibility(const Reference& reference,
68 SymbolTable* symbols,
78 SymbolTable* symbols,
95 static bool linkReference(Reference* reference, IAaptContext* context, SymbolTable* symbols
    [all...]
ReferenceLinker.cpp 25 #include "process/SymbolTable.h"
48 ReferenceLinkerVisitor(IAaptContext* context, SymbolTable* symbols, StringPool* stringPool,
81 const SymbolTable::Symbol* symbol = ReferenceLinker::resolveAttributeCheckVisibility(
127 SymbolTable* mSymbols;
167 bool ReferenceLinker::isSymbolVisible(const SymbolTable::Symbol& symbol, const Reference& ref,
181 const SymbolTable::Symbol* ReferenceLinker::resolveSymbol(const Reference& reference,
183 SymbolTable* symbols) {
194 const SymbolTable::Symbol* ReferenceLinker::resolveSymbolCheckVisibility(
195 const Reference& reference, NameMangler* nameMangler, SymbolTable* symbols,
197 const SymbolTable::Symbol* symbol = resolveSymbol(reference, nameMangler, symbols)
    [all...]
XmlReferenceLinker.cpp 23 #include "process/SymbolTable.h"
40 ReferenceVisitor(IAaptContext* context, SymbolTable* symbols, xml::IPackageDeclStack* decls,
58 SymbolTable* mSymbols;
71 XmlVisitor(IAaptContext* context, SymbolTable* symbols, const Source& source,
151 SymbolTable* mSymbols;
  /external/icu/icu4c/source/common/unicode/
symtable.h 54 class U_COMMON_API SymbolTable /* not : public UObject because this is an interface/mixin class */ {
67 virtual ~SymbolTable();
  /frameworks/base/tools/aapt2/process/
IResourceTableConsumer.h 33 class SymbolTable;
38 virtual SymbolTable* getExternalSymbols() = 0;
SymbolTable.h 51 class SymbolTable {
78 SymbolTable() : mCache(200), mIdCache(200) {
105 DISALLOW_COPY_AND_ASSIGN(SymbolTable);
116 virtual std::unique_ptr<SymbolTable::Symbol> findByName(const ResourceName& name) = 0;
117 virtual std::unique_ptr<SymbolTable::Symbol> findById(ResourceId id) = 0;
122 virtual std::unique_ptr<SymbolTable::Symbol> findByReference(const Reference& ref) {
133 * Exposes the resources in a ResourceTable as symbols for SymbolTable.
142 std::unique_ptr<SymbolTable::Symbol> findByName(const ResourceName& name) override;
144 std::unique_ptr<SymbolTable::Symbol> findById(ResourceId id) override {
160 std::unique_ptr<SymbolTable::Symbol> findByName(const ResourceName& name) override
    [all...]
SymbolTable.cpp 20 #include "process/SymbolTable.h"
28 void SymbolTable::appendSource(std::unique_ptr<ISymbolSource> source) {
34 void SymbolTable::prependSource(std::unique_ptr<ISymbolSource> source) {
41 const SymbolTable::Symbol* SymbolTable::findByName(const ResourceName& name) {
65 const SymbolTable::Symbol* SymbolTable::findById(ResourceId id) {
84 const SymbolTable::Symbol* SymbolTable::findByReference(const Reference& ref) {
92 const SymbolTable::Symbol* symbol = nullptr
    [all...]
SymbolTable_test.cpp 17 #include "process/SymbolTable.h"
34 std::unique_ptr<SymbolTable::Symbol> s = symbolSource.findByName(
47 std::unique_ptr<SymbolTable::Symbol> s = symbolSource.findByName(
  /frameworks/base/tools/aapt2/test/
Context.h 24 #include "process/SymbolTable.h"
35 SymbolTable* getExternalSymbols() override {
70 SymbolTable mSymbols;
108 std::unique_ptr<SymbolTable::Symbol> symbol = util::make_unique<SymbolTable::Symbol>(
118 std::unique_ptr<SymbolTable::Symbol> symbol = util::make_unique<SymbolTable::Symbol>(
135 std::unique_ptr<SymbolTable::Symbol> findByName(const ResourceName& name) override {
143 std::unique_ptr<SymbolTable::Symbol> findById(ResourceId id) override {
151 std::list<std::unique_ptr<SymbolTable::Symbol>> mSymbols
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
GlobalMappingLayer.h 56 SymbolTable[Name] = Addr;
61 SymbolTable.erase(Name);
74 auto I = SymbolTable.find(Name);
75 if (I != SymbolTable.end())
102 std::map<std::string, TargetAddress> SymbolTable;
  /external/icu/icu4c/source/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/icu/android_icu4j/src/main/java/android/icu/text/
SymbolTable.java 38 public interface SymbolTable {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SymbolTable.java 39 public interface SymbolTable {
  /frameworks/compile/mclinker/include/mcld/LD/
SectionSymbolSet.h 28 typedef SymbolCategory SymbolTable;
40 bool finalize(LDSection& pOutSect, SymbolTable& pSymTab, bool relocatable);
LDContext.h 38 typedef std::vector<LDSymbol*> SymbolTable;
39 typedef SymbolTable::iterator sym_iterator;
40 typedef SymbolTable::const_iterator const_sym_iterator;
86 SymbolTable m_SymTab;
  /frameworks/compile/mclinker/include/mcld/
Module.h 51 typedef SymbolCategory SymbolTable;
52 typedef SymbolTable::iterator sym_iterator;
53 typedef SymbolTable::const_iterator const_sym_iterator;
128 const SymbolTable& getSymbolTable() const { return m_SymbolTable; }
129 SymbolTable& getSymbolTable() { return m_SymbolTable; }
171 SymbolTable m_SymbolTable;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
RuleCharacterIterator.java 16 import android.icu.text.SymbolTable;
49 private SymbolTable sym;
74 * its value. Variables are parsed using the SymbolTable API.
103 public RuleCharacterIterator(String text, SymbolTable sym,
137 if (c == SymbolTable.SYMBOL_REF && buf == null &&
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Tokenizer.java 17 import android.icu.text.SymbolTable;
33 TokenSymbolTable symbolTable = new TokenSymbolTable();
161 unicodeSet = new UnicodeSet(source,pos,symbolTable);
267 return symbolTable.itemsLookedUp;
275 symbolTable.add(var, body);
278 public class TokenSymbolTable implements SymbolTable {
288 * @see android.icu.text.SymbolTable#lookup(java.lang.String)
296 * @see android.icu.text.SymbolTable#lookupMatcher(int)
304 * @see android.icu.text.SymbolTable#parseReference(java.lang.String, java.text.ParsePosition, int)
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
RuleCharacterIterator.java 15 import com.ibm.icu.text.SymbolTable;
48 private SymbolTable sym;
73 * its value. Variables are parsed using the SymbolTable API.
102 public RuleCharacterIterator(String text, SymbolTable sym,
136 if (c == SymbolTable.SYMBOL_REF && buf == null &&
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
Tokenizer.java 16 import com.ibm.icu.text.SymbolTable;
32 TokenSymbolTable symbolTable = new TokenSymbolTable();
160 unicodeSet = new UnicodeSet(source,pos,symbolTable);
266 return symbolTable.itemsLookedUp;
274 symbolTable.add(var, body);
277 public class TokenSymbolTable implements SymbolTable {
287 * @see com.ibm.icu.text.SymbolTable#lookup(java.lang.String)
295 * @see com.ibm.icu.text.SymbolTable#lookupMatcher(int)
303 * @see com.ibm.icu.text.SymbolTable#parseReference(java.lang.String, java.text.ParsePosition, int)
  /external/google-breakpad/src/common/linux/
dump_symbols_unittest.cc 58 using google_breakpad::synth_elf::SymbolTable;
102 SymbolTable syms(kLittleEndian, 4, table);
142 SymbolTable syms(kLittleEndian, 8, table);

Completed in 467 milliseconds

1 2 3 4