Searched refs:deleted (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DRow.java68 * object has been deleted. <code>true</code> indicates that it has
69 * been deleted; <code>false</code> indicates that it has not.
72 private boolean deleted; field in class:Row
190 * Sets this <code>Row</code> object's <code>deleted</code> field
196 deleted = true;
201 * Retrieves the value of this <code>Row</code> object's <code>deleted</code> field,
203 * deleted.
204 * @return <code>true</code> if a column value has been deleted; <code>false</code>
210 return(deleted);
214 * Sets the <code>deleted</cod
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeIteratorImpl.java345 Node deleted = matchNodeOrParent(node);
347 if (deleted == null) return;
350 fCurrentNode = previousNode(deleted);
354 Node next = nextNode(deleted, false);
361 fCurrentNode = previousNode(deleted);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventRequestManagerImpl.java97 boolean deleted = false; field in class:EventRequestManagerImpl.EventRequestImpl
124 return deleted? " (deleted)" :
139 if (!deleted) {
142 deleted = true;
159 if (deleted) {
173 if (isEnabled() || deleted) {
183 if (isEnabled() || deleted) {
264 if (isEnabled() || deleted) {
276 if (isEnabled() || deleted) {
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineException.sh61 System.out.println("a1: Calling the original a2/a3. 'The @@@ deleted lines should appear");
81 System.out.println("a3: @@ delete this line"); // If this line is deleted, the test passes!
/openjdk7/jdk/test/sun/management/windows/
H A Drevokeall.c348 BOOL deleted; local
361 deleted = FALSE;
377 deleted = TRUE;
381 if (!deleted) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp593 // the new methods, or have been deleted (exist only in the
618 enum { matched, added, deleted, undetermined } method_was = undetermined; enumerator in enum:__anon392
628 // Old method, at the end, is deleted
630 method_was = deleted;
637 // or deleted
641 method_was = deleted;
654 method_was = deleted;
668 // reached the end without a match; so method was deleted
669 method_was = deleted;
731 case deleted
[all...]
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLet.java1137 boolean deleted = tmpFile.delete();
1138 if (!deleted) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.cpp394 MachNode *MachNode::peephole( Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted, Compile* C ) { argument
H A Dmachnode.hpp278 virtual MachNode *peephole( Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted, Compile* C );
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp456 instructions->at_put(j, NULL); // NULL-instructions are deleted by assign_reg_num
4657 bool deleted;
4660 deleted = remove_from_list(active_first_addr(anyKind), i);
4663 deleted = remove_from_list(inactive_first_addr(anyKind), i);
4666 assert(deleted, "interval has not been found in list");
6105 // only blocks with exactly one successor can be deleted. Such blocks
6187 // have been deleted
6275 // Note: the original block with only a return statement cannot be deleted completely
6298 // Note: currently the edge between the blocks is not deleted

Completed in 296 milliseconds