Searched refs:symbols (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/hotspot/make/windows/
H A Dbuild_vm_def.sh26 # The .def file exports vtbl symbols which allow the Serviceability
64 $DUMPBIN /symbols *.obj | "$GREP" "??_7.*@@6B@" | "$GREP" -v "type_info" | "$AWK" '{print $7}' | "$SORT" | "$UNIQ" > vm2.def
67 $DUMPBIN /OUT:vm3.def /symbols *.obj
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DDecimalFormatSymbolsProviderImpl.java52 static HashMap<Locale, FooDecimalFormatSymbols> symbols = new HashMap<Locale, FooDecimalFormatSymbols>(4); field in class:DecimalFormatSymbolsProviderImpl
63 FooDecimalFormatSymbols fdfs = symbols.get(locale);
68 symbols.put(locale, fdfs);
H A DDateFormatSymbolsProviderImpl.java52 static Map<Locale, FooDateFormatSymbols> symbols = new HashMap<Locale, FooDateFormatSymbols>(4); field in class:DateFormatSymbolsProviderImpl
63 FooDateFormatSymbols fdfs = symbols.get(locale);
68 symbols.put(locale, fdfs);
/openjdk7/hotspot/agent/src/os/bsd/
H A Dsymtab.c53 struct elf_symbol *symbols; member in struct:symtab
134 // number of symbols
156 symtab->symbols = calloc(n , sizeof(*symtab->symbols));
157 if (symtab->symbols == NULL)
160 // copy symbols info our symtab and enter them info the hash table
165 // skip non-object and non-function symbols
169 // skip empty strings and undefined symbols
172 symtab->symbols[j].name = sym_name;
173 symtab->symbols[
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormat.java82 * <em>symbols</em>. The pattern may be set directly using
84 * symbols are stored in a <code>DecimalFormatSymbols</code> object. When using
85 * the <code>NumberFormat</code> factory methods, the pattern and symbols are
139 * <p>The prefixes, suffixes, and various symbols used for infinity, digits,
142 * be taken that the symbols and strings do not conflict, or parsing will be
381 * Creates a DecimalFormat using the default pattern and symbols
408 // Always applyPattern after the symbols are set
409 this.symbols = new DecimalFormatSymbols(def);
415 * Creates a DecimalFormat using the given pattern and the symbols
433 // Always applyPattern after the symbols ar
460 DecimalFormat(String pattern, DecimalFormatSymbols symbols) argument
3098 private DecimalFormatSymbols symbols = null; // LIU new DecimalFormatSymbols(); field in class:DecimalFormat
[all...]
H A DNumberFormat.java767 DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(desiredLocale);
769 DecimalFormat format = new DecimalFormat(numberPatterns[entry], symbols);
/openjdk7/jdk/test/java/awt/TextArea/TextAreaCursorTest/
H A DHoveringAndDraggingTest.java85 for( int symbols=0; symbols<100; ++symbols ) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciObjectFactory.java71 public GrowableArray<ciSymbol> symbols() { method in class:ciObjectFactory
/openjdk7/hotspot/agent/src/os/linux/
H A Dsymtab.c52 struct elf_symbol *symbols; member in struct:symtab
393 // number of symbols
412 symtab->symbols = (struct elf_symbol *)calloc(n , sizeof(struct elf_symbol));
414 // copy symbols info our symtab and enter them info the hash table
419 // skip non-object and non-function symbols
423 // skip empty strings and undefined symbols
426 symtab->symbols[j].name = sym_name;
427 symtab->symbols[j].offset = syms->st_value - baseaddr;
428 symtab->symbols[j].size = syms->st_size;
431 item.data = (void *)&(symtab->symbols[
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java926 SymbolTable symbols,
938 new RuleCharacterIterator(pattern, symbols, pos);
939 applyPattern(chars, symbols, rebuiltPat, options);
967 * @param symbols symbol table to use to parse and dereference
974 void applyPattern(RuleCharacterIterator chars, SymbolTable symbols, argument
1064 } else if (symbols != null) {
1065 UnicodeMatcher m = symbols.lookupMatcher(c); // may be null
1102 nested.applyPattern(chars, symbols, patBuf, options);
1106 nested.applyPropertyPattern(chars, patBuf, symbols);
1227 // symbols nosymbol
924 applyPattern(String pattern, ParsePosition pos, SymbolTable symbols, int options) argument
1702 applyPropertyAlias(String propertyAlias, String valueAlias, SymbolTable symbols) argument
1744 applyPropertyPattern(String pattern, ParsePosition ppos, SymbolTable symbols) argument
1838 applyPropertyPattern(RuleCharacterIterator chars, StringBuffer rebuiltPat, SymbolTable symbols) argument
[all...]
/openjdk7/jdk/test/java/util/PluggableLocale/
H A Dfooprovider.jar ... availList static String[] dialect static java.util.HashMap symbols public void " href="/source/s?defs=% ...
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DPreprocessor.java83 symbols = p.symbols;
278 symbols.put (token.name, symbol.trim ());
283 symbols.put (token.name, '(' + scanner.getStringToEOL () . trim ());
299 symbols.remove (token.name);
538 if ((not && symbols.containsKey (token.name)) || (!not && !symbols.containsKey (token.name)))
564 if ((not && symbols.containsKey (token.name)) || (!not && !symbols.containsKey (token.name)))
1320 String string = (String)symbols
1401 private Hashtable symbols; field in class:Preprocessor
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DCalendar.java1418 DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale);
1419 String[] strings = getFieldStrings(field, style, symbols);
1499 DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale);
1500 String[] strings = getFieldStrings(field, style, symbols);
1526 private String[] getFieldStrings(int field, int style, DateFormatSymbols symbols) { argument
1530 strings = symbols.getEras();
1534 strings = (style == LONG) ? symbols.getMonths() : symbols.getShortMonths();
1538 strings = (style == LONG) ? symbols.getWeekdays() : symbols
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFileParser.java406 private MemoizedObject[] symbols; field in class:ELFFileParser.ELFFileImpl.ELFSectionHeaderImpl
437 symbols = new MemoizedObject[num_entries];
441 symbols[i] = new MemoizedObject() {
491 if (symbols != null) {
492 return symbols.length;
501 return (ELFSymbol)symbols[index].getValue();
560 // private MemoizedObject[] symbols;
623 * representation of the symbols. 0 means the symbol has no
792 * ELFSection.getELFSymbol(String) to retrieve symbols by name.
1063 System.out.println("------> Start: reading " + num + " symbols
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DSymbolTable.java59 public void addDecimalFormatting(QName name, DecimalFormatting symbols) { argument
61 _decimalFormats.put(name, symbols);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c1917 lookup_library_symbol(void *library, char **symbols, int nsymbols) argument
1924 addr = md_find_library_entry(library, symbols[i]);
1933 "Cannot find library symbol '%s'", symbols[0]);
2051 static char *symbols[] = JAVA_CRW_DEMO_SYMBOLS; local
2054 symbols, (int)(sizeof(symbols)/sizeof(char*)));
2057 static char *symbols[] = JAVA_CRW_DEMO_CLASSNAME_SYMBOLS; local
2060 symbols, (int)(sizeof(symbols)/sizeof(char*)));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java80 private SymbolTable symbols; field in class:VM
581 if (symbols == null) {
582 symbols = SymbolTable.getTheTable();
584 return symbols;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DAbstractTranslet.java273 // Contains decimal number formatting symbols used by FormatNumberCall
280 public void addDecimalFormat(String name, DecimalFormatSymbols symbols) { argument
281 // Instanciate hashtable for formatting symbols if needed
287 // Construct a DecimalFormat object containing the symbols we got
289 if (symbols != null) {
290 df.setDecimalFormatSymbols(symbols);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DInstanceKlass.java677 SymbolTable symbols = VM.getVM().getSymbolTable();
678 Symbol nameSym = symbols.probe(name);
679 Symbol sigSym = symbols.probe(sig);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/
H A DXPath.java877 final String[] symbols = {
884 for (int i = 0; i < symbols.length; i++) {
885 fSymbolMapping.put(fSymbolTable.addSymbol(symbols[i]), new Integer(i));
1285 // symbols
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltDatetime.java1040 // symbols that shouldn't be output so that they are not defaulted to
1083 * @param symbols list of symbols to strip.
1087 private static String strip(String symbols, String pattern) argument
1108 else if (symbols.indexOf(ch) > -1)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java123 private MemoizedObject[] symbols; field in class:COFFFileParser.COFFFileImpl.COFFHeaderImpl
164 // Set up symbols
165 symbols = new MemoizedObject[numberOfSymbols];
168 symbols[i] = new MemoizedObject() {
197 return (COFFSymbol) symbols[index].getValue();
1571 if (done()) throw new NoSuchElementException("No more symbols");
1786 // Make sure that ends of inner and outer symbols line
1878 Assert.that(offs != 0, "should not have null end offset for procedure symbols");
1962 Assert.that(offs != 0, "should not have null end offset for thunk symbols");
2055 Assert.that(offs != 0, "should not have null end offset for block symbols");
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_64.s25 # Darwin uses _ prefixed global symbols
H A Dbsd_x86_32.s26 # Darwin uses _ prefixed global symbols
/openjdk7/jdk/make/common/
H A DRelease.gmk1081 $(MKDIR) -p $(OUTPUTDIR)/symbols/META-INF/sym
1085 -Acom.sun.tools.javac.sym.Dest=$(OUTPUTDIR)/symbols/META-INF/sym/rt.jar \
1088 -C $(OUTPUTDIR)/symbols META-INF $(BOOT_JAR_JFLAGS)

Completed in 157 milliseconds

12