Searched defs:symtab (Results 1 - 12 of 12) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUnionGen.java47 void generate (Hashtable symtab, UnionEntry entry, PrintWriter stream); argument
H A DParser.java88 Hashtable symtab, SymtabFactory stFac, ExprFactory exprFac, String [] genKeywords)
102 symbolTable = (symtab == null) ? new Hashtable () : symtab;
87 Parser(Preprocessor preprocessor, Arguments arguments, Hashtable overrides, Hashtable symtab, SymtabFactory stFac, ExprFactory exprFac, String [] genKeywords) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/
H A DAptEnv.java46 public Symtab symtab; // javac's predefined symbols field in class:AptEnv
70 symtab = Symtab.instance(context);
/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java49 symtab = Symtab.instance(context);
52 Scope emptyScope = new Scope(symtab.unnamedPackage); // any owner will do
90 ClassSymbol cc = createClass(names.fromString("C"), symtab.unnamedPackage);
94 PackageSymbol p = new PackageSymbol(names.fromString("p"), symtab.rootPackage);
107 PackageSymbol pkg = new PackageSymbol(names.fromString("pkg"), symtab.rootPackage);
174 if (owner != symtab.unnamedPackage)
248 Symtab symtab; field in class:HashCollisionTest
H A DStarImportTest.java138 symtab = Symtab.instance(context);
173 PackageSymbol p = new PackageSymbol(name, symtab.rootPackage);
197 ClassSymbol c = createClass(name, symtab.unnamedPackage);
214 PackageSymbol pkg = new PackageSymbol(names.fromString("pkg"), symtab.rootPackage);
306 if (owner != symtab.unnamedPackage)
312 Symtab symtab; field in class:StarImportTest.Test
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DCompoundScopeTest.java115 CompoundScope root = new CompoundScope(symtab.noSymbol);
116 CompoundScope sub = new CompoundScope(symtab.noSymbol);
148 Scope s = new Scope(symtab.noSymbol);
170 symtab = Symtab.instance(context);
236 Symtab symtab; field in class:CompoundScopeTest.Test
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.h31 #include "symtab.h"
41 struct symtab* symtab; member in struct:lib_info
H A Dsymtab.c31 #include "symtab.h"
50 typedef struct symtab { struct
58 struct symtab* build_symtab(int fd) {
60 struct symtab* symtab = NULL; local
126 // guarantee(symtab == NULL, "multiple symtab");
127 symtab = calloc(1, sizeof(*symtab));
128 if (symtab
204 destroy_symtab(struct symtab* symtab) argument
214 search_symbol(struct symtab* symtab, uintptr_t base, const char *sym_name, int *sym_size) argument
236 nearest_symbol(struct symtab* symtab, uintptr_t offset, uintptr_t* poffset) argument
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.h31 #include "symtab.h"
41 struct symtab* symtab; member in struct:lib_info
H A Dsymtab.c30 #include "symtab.h"
49 typedef struct symtab { struct
255 static struct symtab* build_symtab_internal(int fd, const char *filename, bool try_debuginfo);
259 static struct symtab *build_symtab_from_debug_link(const char *name,
268 struct symtab *symtab = build_symtab_internal(fd, NULL, /* try_debuginfo */ false); local
270 return symtab;
300 // and return its symtab
301 static struct symtab* build_symtab_from_build_id(Elf64_Nhdr *note)
304 struct symtab *symta local
326 struct symtab* symtab = NULL; local
496 destroy_symtab(struct symtab* symtab) argument
507 search_symbol(struct symtab* symtab, uintptr_t base, const char *sym_name, int *sym_size) argument
531 nearest_symbol(struct symtab* symtab, uintptr_t offset, uintptr_t* poffset) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPopulationCoding.java47 long[] symtab; // int map of favored value -> token [1..#fValues] field in class:PopulationCoding
182 // Reset symtab.
183 symtab = null;
187 if (symtab == null)
188 symtab = makeSymtab();
189 int pos = Arrays.binarySearch(symtab, (long)value << 32);
191 if (pos < symtab.length && value == (int)(symtab[pos] >>> 32))
192 return (int)symtab[pos];
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DUtil.java121 static void setSymbolTable (Hashtable symtab) argument
123 symbolTable = symtab;

Completed in 59 milliseconds