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

/libcore/dom/src/test/java/org/w3c/domts/
H A DUserDataMonitor.java39 * @param operation
51 short operation,
57 new UserDataNotification(operation, key, data, src, dst));
50 handle( short operation, String key, Object data, Node src, Node dst) argument
H A DUserDataNotification.java22 private final short operation; field in class:UserDataNotification
32 public UserDataNotification(short operation, argument
37 this.operation = operation;
45 * Get value of operation parameter
47 * @return value of operation parameter
50 return operation;
/libcore/luni/src/main/java/org/w3c/dom/
H A DUserDataHandler.java57 * @param operation Specifies the type of operation that is being
66 public void handle(short operation, argument
/libcore/luni/src/test/java/libcore/xml/
H A DXsltXPathConformanceTestSuite.java195 * <scenario operation="standard">
216 String operation = scenarioElement.getAttribute("operation");
251 if (!operation.equals("execution-error")) {
264 principalStylesheet, principal, operation, compareAs);
321 private final String operation; field in class:XsltXPathConformanceTestSuite.XsltTest
331 String operation, String compareAs) {
340 this.operation = operation;
381 if (operation
329 XsltTest(String category, String id, String purpose, String spec, File principalData, File principalStylesheet, File principal, String operation, String compareAs) argument
[all...]
H A DDomTest.java1703 public void handle(short operation, String key, Object data, Node src, Node dst) { argument
1704 calls.add(notification(operation, key, data, src, dst));
1708 private String notification(short operation, String key, Object data, Node src, Node dst) { argument
1709 return "op:" + operation + " key:" + key + " data:" + data + " src:" + src + " dst:" + dst;
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentImpl.java123 * @param operation the operation type to use when notifying user data
129 private NodeImpl shallowCopy(short operation, Node node) { argument
170 AttrImpl elementAttrCopy = (AttrImpl) shallowCopy(operation, elementAttr);
171 notifyUserDataHandlers(operation, elementAttr, elementAttrCopy);
213 * @param operation either {@link UserDataHandler#NODE_CLONED} or
219 Node cloneOrImportNode(short operation, Node node, boolean deep) { argument
220 NodeImpl copy = shallowCopy(operation, node);
225 copy.appendChild(cloneOrImportNode(operation, list.item(i), deep));
229 notifyUserDataHandlers(operation, nod
529 notifyUserDataHandlers( short operation, Node source, NodeImpl destination) argument
[all...]

Completed in 224 milliseconds