Searched refs:state (Results 26 - 50 of 85) sorted by relevance

1234

/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Ddomimplementationfeaturexmlversion2.java85 boolean state;
88 state = domImpl.hasFeature("xml", "2.0");
89 assertTrue("domimplementationFeaturexmlVersion2Assert", state);
H A Delementhasattribute01.java85 boolean state;
88 state = element.hasAttribute("");
89 assertFalse("elementhasattribute01", state);
H A Delementhasattribute04.java67 boolean state;
74 state = element.hasAttribute("domestic");
75 assertTrue("elementhasattribute04", state);
H A DhasAttribute01.java67 boolean state;
71 state = testNode.hasAttribute("domestic");
72 assertFalse("throw_False", state);
H A DhasAttribute03.java67 boolean state;
71 state = testNode.hasAttribute("nomatch");
72 assertFalse("throw_False", state);
H A DhasAttributeNS01.java72 boolean state;
76 state = testNode.hasAttributeNS(namespaceURI, localName);
77 assertFalse("throw_False", state);
H A DhasAttributeNS02.java71 boolean state;
75 state = testNode.hasAttributeNS(namespaceURI, localName);
76 assertFalse("throw_False", state);
H A DhasAttributeNS03.java71 boolean state;
76 state = testNode.hasAttributeNS(namespaceURI, localName);
77 assertFalse("throw_False", state);
H A DhasAttributes01.java67 boolean state;
71 state = addrNode.hasAttributes();
72 assertFalse("throw_False", state);
H A DhasAttributes02.java67 boolean state;
71 state = addrNode.hasAttributes();
72 assertTrue("throw_True", state);
H A DisSupported01.java73 boolean state;
76 state = rootNode.isSupported("XXX", "1.0");
77 assertFalse("throw_False", state);
H A DisSupported02.java73 boolean state;
76 state = rootNode.isSupported("XML", "9.0");
77 assertFalse("throw_False", state);
H A DisSupported04.java75 boolean state;
78 state = rootNode.isSupported("xml", "1.0");
79 assertTrue("throw_True", state);
H A DisSupported05.java75 boolean state;
78 state = rootNode.isSupported("core", "2.0");
79 assertTrue("throw_True", state);
H A DisSupported06.java75 boolean state;
78 state = rootNode.isSupported("xml", "2.0");
79 assertTrue("throw_True", state);
H A DisSupported07.java75 boolean state;
78 state = rootNode.isSupported("XML", "");
79 assertTrue("throw_True", state);
H A DisSupported09.java75 boolean state;
78 state = rootNode.isSupported("XML", "1.0");
79 assertTrue("throw_True", state);
H A DisSupported10.java75 boolean state;
78 state = rootNode.isSupported("CORE", "2.0");
79 assertTrue("throw_True", state);
H A DisSupported11.java75 boolean state;
78 state = rootNode.isSupported("XML", "2.0");
79 assertTrue("throw_True", state);
H A DisSupported13.java63 boolean state;
66 state = rootNode.isSupported("Core", "");
67 assertTrue("Core", state);
H A DisSupported14.java63 boolean state;
68 state = rootNode.isSupported("Core", nullString);
69 assertTrue("Core", state);
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DElementRemoveAttributeNS.java53 boolean state;
63 state = element.hasAttributeNS(
65 assertFalse("elementremoveattributens01", state);
/libcore/luni/src/main/java/java/util/concurrent/
H A DFutureTask.java40 * on a "state" field updated via CAS to track completion, along
48 * The run state of this task, initially NEW. The run state
49 * transitions to a terminal state only in methods set,
50 * setException, and cancel. During completion, state may take on
57 * Possible state transitions:
63 private volatile int state; field in class:FutureTask
75 private Object outcome; // non-volatile, protected by state reads/writes
84 * @param s completed state value
107 this.state
[all...]
H A DPhaser.java68 * state of the phaser. If necessary, you can perform any
78 * state, that may be checked using method {@link #isTerminated}. Upon
111 * only by registered parties, the current state of a phaser may be
119 * returns snapshots of these state queries in a form convenient for
241 * Primary state representation, holding four bit-fields:
249 * distinguished by the otherwise illegal state of having zero
254 * state decoding and encoding simple, and keeping race windows
257 * All state updates are performed via CAS except initial
267 private volatile long state; field in class:Phaser
349 * @param adjust value to subtract from state;
[all...]
/libcore/luni/src/main/java/java/security/
H A DSignature.java69 * Represents the current state of this {@code Signature}. The three
73 protected int state = UNINITIALIZED; field in class:Signature
219 state = VERIFY;
266 state = VERIFY;
281 state = SIGN;
299 state = SIGN;
305 * This {@code Signature} instance is reset to the state of its last
315 if (state != SIGN) {
325 * This {@code Signature} instance is reset to the state of its last
349 if (state !
503 stateToString(int state) argument
[all...]

Completed in 753 milliseconds

1234