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

/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/src/share/vm/opto/
H A Dlive.cpp239 IndexSet *defs = &_defs[p->_pre_order-1]; local
247 !defs->member( r ) ) // and not defined locally
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...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
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);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java449 * @param defs The list of class member declarations.
452 List<JCTree> normalizeDefs(List<JCTree> defs, ClassSymbol c) { argument
460 for (List<JCTree> l = defs; l.nonEmpty(); l = l.tail) {
2195 genStats(tree.defs, env);
2224 cdef.defs = normalizeDefs(cdef.defs, c);
2231 for (List<JCTree> l = cdef.defs; l.nonEmpty(); l = l.tail) {
2240 for (List<JCTree> l = cdef.defs; l.nonEmpty(); l = l.tail) {
2245 cdef.defs = List.nil(); // discard trees
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
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...]

Completed in 63 milliseconds