Searched refs:defs (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DBug6530694.java37 UIDefaults defs = UIManager.getDefaults();
38 defs.addResourceBundle("Bug6530694");
39 String str = defs.getString("testkey");
/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DColorCustomizationTest.java96 UIDefaults defs = new UIDefaults();
97 defs.put("Label.background", new ColorUIResource(Color.RED));
98 label.putClientProperty("Nimbus.Overrides", defs);
102 defs = new UIDefaults();
103 defs.put("Label.background", new ColorUIResource(Color.GREEN));
104 label.putClientProperty("Nimbus.Overrides", defs);
119 UIDefaults defs = new UIDefaults();
120 defs.put("Label.background", new ColorUIResource(Color.GREEN));
123 label.putClientProperty("Nimbus.Overrides", defs);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DDefineFinder.java43 public final Set<DDefine> defs = new HashSet<DDefine>(); field in class:DefineFinder
47 defs.add(def);
H A DRELAXNGCompiler.java72 final Set<DDefine> defs; field in class:RELAXNGCompiler
123 this.defs = deff.defs;
160 for( DDefine def : defs ) {
215 for( DDefine def : defs ) {
264 // for( DDefine def : defs ) {
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A DMakefile59 CC -o $@/libsaproc_audit.so -G -Kpic -z defs saproc_audit.cpp -lmapmalloc -ldl -lc
66 CC -xarch=amd64 -o $@/libsaproc_audit.so -G -Kpic -z defs saproc_audit.cpp -lmapmalloc -ldl -lc
73 CC -xarch=v8 -o $@/libsaproc_audit.so -G -Kpic -z defs saproc_audit.cpp -lmapmalloc -ldl -lc
80 CC -xarch=v9 -o $@/libsaproc_audit.so -G -Kpic -z defs saproc_audit.cpp -lmapmalloc -ldl -lc
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeTranslator.java120 tree.defs = translate(tree.defs);
134 tree.defs = translate(tree.defs);
393 tree.defs = translateVarDefs(tree.defs);
H A DTreeScanner.java68 scan(tree.defs);
80 scan(tree.defs);
307 scan(tree.defs);
H A DTreeCopier.java140 List<JCTree> defs = copy(t.defs, p);
141 return M.at(t.pos).ClassDef(mods, t.name, typarams, extending, implementing, defs);
321 List<JCTree> defs = copy(t.defs, p);
322 return M.at(t.pos).TopLevel(packageAnnotations, pid, defs);
411 List<JCVariableDecl> defs = copy(t.defs, p);
413 return M.at(t.pos).LetExpr(defs, expr);
H A DTreeMaker.java120 * @param defs a list of ClassDef, Import, and Skip
124 List<JCTree> defs) {
126 for (JCTree node : defs)
134 JCCompilationUnit tree = new JCCompilationUnit(packageAnnotations, pid, defs,
151 List<JCTree> defs)
158 defs,
489 public LetExpr LetExpr(List<JCVariableDecl> defs, JCTree expr) { argument
490 LetExpr tree = new LetExpr(defs, expr);
500 List<JCTree> defs)
507 defs);
122 TopLevel(List<JCAnnotation> packageAnnotations, JCExpression pid, List<JCTree> defs) argument
146 ClassDef(JCModifiers mods, Name name, List<JCTypeParameter> typarams, JCExpression extending, List<JCExpression> implementing, List<JCTree> defs) argument
499 AnonymousClassDef(JCModifiers mods, List<JCTree> defs) argument
[all...]
H A DJCTree.java418 * @param defs All definitions in this file (ClassDef, Import, and Skip)
434 public List<JCTree> defs; field in class:JCTree.JCCompilationUnit
445 List<JCTree> defs,
452 this.defs = defs;
467 for (JCTree tree : defs) {
485 for (typeDefs = defs; !typeDefs.isEmpty(); typeDefs = typeDefs.tail)
563 * @param defs all variables and methods defined in this class
572 public List<JCTree> defs; field in class:JCTree.JCClassDecl
579 List<JCTree> defs,
443 JCCompilationUnit(List<JCAnnotation> packageAnnotations, JCExpression pid, List<JCTree> defs, JavaFileObject sourcefile, PackageSymbol packge, ImportScope namedImportScope, StarImportScope starImportScope) argument
574 JCClassDecl(JCModifiers mods, Name name, List<JCTypeParameter> typarams, JCExpression extending, List<JCExpression> implementing, List<JCTree> defs, ClassSymbol sym) argument
2075 public List<JCVariableDecl> defs; field in class:JCTree.LetExpr
2077 LetExpr(List<JCVariableDecl> defs, JCTree expr) argument
2100 TopLevel(List<JCAnnotation> packageAnnotations, JCExpression pid, List<JCTree> defs) argument
2104 ClassDef(JCModifiers mods, Name name, List<JCTypeParameter> typarams, JCExpression extending, List<JCExpression> implementing, List<JCTree> defs) argument
2182 LetExpr(List<JCVariableDecl> defs, JCTree expr) argument
[all...]
H A DPretty.java333 for (List<JCTree> l = tree.defs;
429 printEnumBody(tree.defs);
431 printBlock(tree.defs);
495 if (init.def != null && init.def.defs != null) {
497 printBlock(init.def.defs);
872 printBlock(tree.def.defs);
1222 print("(let " + tree.defs + " in " + tree.expr + ")");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java165 /** All encountered class defs are entered into classdefs table.
459 owner.defs = owner.defs
593 odef.defs = odef.defs.prepend(cdef);
1211 cdef.defs = cdef.defs.prepend(
1217 cdef.defs = cdef.defs.prepend(
1351 List<JCVariableDecl> defs
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp59 // BuildOopMaps implements a simple forward reaching-defs solution. At each
73 // defs typed as oops are added to the OopMap. Only 1 instance of a
103 OopFlow( short *callees, Node **defs, Compile* c ) : _callees(callees), _defs(defs), argument
106 // Given reaching-defs for this block start, compute it for this block end
123 // Given reaching-defs for this block start, compute it for this block end
193 // Merge the reaching defs
210 Node **defs = NEW_ARENA_ARRAY(A,Node*,max_size+1); local
211 debug_only( memset(defs,0,(max_size+1)*sizeof(Node*)) );
212 OopFlow *flow = new (A) OopFlow(callees+1, defs
[all...]
H A Dreg_split.cpp227 // and defs a new live range, which is used by this node.
283 // its input, and defs a new live range, which is used by this node.
409 // or defs, not for supposed capacity problems.
471 Node_List *defs,*phis; local
488 defs = new Node_List();
508 // Create side arrays for propagating reaching defs info.
716 // block is initialized with the correct starting value for the defs which
977 // two defs and the GC would therefore miss the other. Thus
1139 // Add to defs list for later assignment of new live range number
1140 defs
[all...]
H A Dlive.cpp239 IndexSet *defs = &_defs[p->_pre_order-1]; local
247 !defs->member( r ) ) // and not defined locally
/openjdk7/hotspot/make/solaris/
H A DMakefile49 include ../../make/defs.make
51 include $(GAMMADIR)/make/defs.make
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java1516 List<JCTree> defs = classOrInterfaceBody(names.empty, false);
1518 body = toP(F.at(pos).AnonymousClassDef(mods, defs));
2230 ListBuffer<JCTree> defs = new ListBuffer<JCTree>();
2231 defs.append(resource());
2234 storeEnd(defs.elems.last(), S.endPos());
2241 defs.append(resource());
2243 return defs.toList();
2277 ListBuffer<JCTree> defs = new ListBuffer<JCTree>();
2287 defs.append(importDeclaration());
2297 defs
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java943 for (List<JCTree> defs = unit.defs;
944 defs.nonEmpty();
945 defs = defs.tail) {
946 if (defs.head instanceof JCClassDecl)
947 cdefs.append((JCClassDecl)defs.head);
1504 for (List<JCTree> it = tree.defs; it.tail != null; it = it.tail) {
1529 tree.defs = newdefs.toList();
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DNSApplicationAWT.m95 NSUserDefaults * defs = [NSUserDefaults standardUserDefaults];
97 [defs registerDefaults:noOpenDict];
/openjdk7/langtools/make/tools/GenStubs/
H A DGenStubs.java299 ListBuffer<JCTree> defs = new ListBuffer<JCTree>();
300 for (JCTree def: tree.defs) {
311 defs.add(def);
313 return m.TopLevel(tree.packageAnnotations, tree.pid, defs.toList());
/openjdk7/hotspot/make/bsd/
H A DMakefile58 include ../../make/defs.make
60 include $(GAMMADIR)/make/defs.make
/openjdk7/hotspot/make/linux/
H A DMakefile58 include ../../make/defs.make
60 include $(GAMMADIR)/make/defs.make
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java769 // Collect counts for both predefs. and custom defs.
774 // Now the remaining defs in allLayouts[i] need attr. indexes.
775 // Fill up unused flag bits with new defs.
905 // Sort the new attr defs into some "natural" order.
907 Object[][] defs = new Object[numAttrDefs][];
908 defList.toArray(defs);
909 Arrays.sort(defs, new Comparator() {
930 for (int i = 0; i < defs.length; i++) {
931 int header = ((Integer)defs[i][0]).intValue();
932 Attribute.Layout def = (Attribute.Layout) defs[
[all...]
H A DAttribute.java147 public static Attribute lookup(Map<Layout, Attribute> defs, int ctype, argument
149 if (defs == null) {
150 defs = standardDefs;
152 return defs.get(Layout.makeKey(ctype, name));
155 public static Attribute define(Map<Layout, Attribute> defs, int ctype, argument
158 defs.put(Layout.makeKey(ctype, name), a);
H A DPackageReader.java1400 Attribute.Layout[] defs = new Attribute.Layout[defList.size()];
1401 defList.toArray(defs);
1435 int[] totalCounts = new int[defs.length];
1472 if (defs[ai] == null) badAttrIndex(ai, ctype);
1473 Attribute canonical = defs[ai].canonicalInstance();
1482 if (defs[ai] == null) badAttrIndex(ai, ctype);
1483 Attribute canonical = defs[ai].canonicalInstance();
1502 for (int ai = 0; ai < defs.length; ai++) {
1503 Attribute.Layout def = defs[ai];
1524 for (int ai = 0; ai < defs
[all...]

Completed in 3314 milliseconds

12