Searched refs:recursive (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/sample/nio/file/
H A DWatchDir.java54 private final boolean recursive; field in class:WatchDir
93 WatchDir(Path dir, boolean recursive) throws IOException { argument
95 this.recursive = recursive;
97 if (recursive) {
141 if (recursive && (kind == ENTRY_CREATE)) {
172 boolean recursive = false;
177 recursive = true;
183 new WatchDir(dir, recursive).processEvents();
H A DCopy.java155 boolean recursive = false;
170 case 'r' : recursive = true; break;
198 if (recursive) {
204 // not recursive so source must not be a directory
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DWithSecurityManager.java46 boolean recursive = args[1].equals("tree");
59 if (recursive) {
78 if (!recursive)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIClass.java93 @XmlAttribute(name="recursive", namespace=Const.XJC_EXTENSION_URI)
94 private String recursive; field in class:BIClass
108 return recursive;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DTest.java58 public void addDependencies(Group g, boolean recursive) { argument
59 addDependencies(g, recursive, null);
62 public void addDependencies(Group g, boolean recursive, argument
71 } else if (recursive && n instanceof Group) {
72 addDependencies((Group) n, recursive, filter);
/openjdk7/jdk/src/share/classes/java/io/
H A DFilePermission.java139 // does path indicate a directory? (wildcard or recursive)
142 // is it a recursive directory specification?
143 private transient boolean recursive; field in class:FilePermission
172 sb.append("recursive = "+recursive+"\n");
203 recursive = true;
235 recursive = true;
240 //recursive = false;
246 //recursive = false;
349 if (this.recursive) {
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTreeUI.java501 final boolean recursive; field in class:AquaTreeUI.KeyboardExpandCollapseAction
506 public KeyboardExpandCollapseAction(final boolean expand, final boolean recursive) { argument
508 this.recursive = recursive;
524 expandNode(tree.getRowForPath(path), recursive);
540 collapseNode(tree.getRowForPath(path), recursive);
549 void expandNode(final int row, final boolean recursive) { argument
554 if (!recursive) return;
568 void collapseNode(final int row, final boolean recursive) { argument
572 if (recursive) {
[all...]
/openjdk7/jdk/test/sun/security/provider/PolicyFile/
H A DCanonPath.java264 FilePermission recursive = new FilePermission
277 if (standard.implies(recursive) || standard.implies(wild)) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.hpp211 void verify_adr_type(bool recursive = false) const;
213 void verify_adr_type(bool recursive = false) const {}
H A Dcfgnode.cpp862 void PhiNode::verify_adr_type(bool recursive) const {
873 if (recursive) {
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParseException.java307 static ParseException recursive (Scanner scanner, String type, String name) method in class:ParseException
309 return arg2 ("recursive", scanner, type, name);
H A DParser.java2143 throw ParseException.recursive (scanner, entry.fullName (),
2393 throw ParseException.recursive (scanner, entry.fullName (), (token.name == null)? "" : token.name);
3394 // They are different because when the recursive one is looking for
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp462 // recursive. Simpler to recurse but we can't trim expression stack as we call
1646 // Because we redispatch "recursive" interpreter entries thru this same entry point
1649 // state are NULL but on "recursive" dispatches they are what you'd expect.
1995 // Return from interpreted method we return result appropriate to the caller (i.e. "recursive"
2004 __ cmpptr(STATE(_prev_link), (int32_t)NULL_WORD); // returning from "recursive" interpreter call?
2019 // returning to interpreter method from "recursive" interpreter call
2094 __ cmpptr(STATE(_prev_link), (int32_t)NULL_WORD); // returning from "recursive" interpreter call?
2147 ExternalAddress recursive(CAST_FROM_FN_PTR(address, RecursiveInterpreterActivation));
2148 __ pushptr(recursive.addr()); // make it look good in the debugger
2180 __ cmpptr(STATE(_prev_link), (int32_t)NULL_WORD); // returning from recursive interprete
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.cpp962 _recursions--; // this is simple recursive enter
963 TEVENT (Inflated exit - recursive) ;
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp246 // in case of recursive initialization!
358 // etc), but not recursive entry into verify_code().
464 DTRACE_CLASSINIT_PROBE_WAIT(recursive, instanceKlass::cast(this_oop()), -1,wait);
520 // etc), but not recursive entry into call_class_initializer().

Completed in 107 milliseconds