HomeSort by relevance Sort by last modified time
    Searched refs:Node (Results 101 - 125 of 4910) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
DOMSerializer.java 25 import org.w3c.dom.Node;
65 * Serializes the DOM node. Throws an exception only if an I/O
70 * @param node the DOM node to serialize
73 public void serialize(Node node) throws IOException;
TransformStateSetter.java 25 import org.w3c.dom.Node;
43 * Set the current node.
45 * @param n The current node.
47 void setCurrentNode(Node n);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/modifiers/
NodeWithAccessModifiers.java 3 import com.github.javaparser.ast.Node;
6 * A node that can be public, protected, and/or private.
8 public interface NodeWithAccessModifiers<N extends Node> extends NodeWithPublicModifier<N>, NodeWithPrivateModifier<N>, NodeWithProtectedModifier<N> {
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
AbstractSimpleNode.java 31 abstract class AbstractSimpleNode extends Node {
35 components = new ArrayList<Node>();
  /external/swiftshader/third_party/LLVM/unittests/ADT/
ilistTest.cpp 19 struct Node : ilist_node<Node> {
22 Node() {}
23 Node(int _Value) : Value(_Value) {}
27 ilist<Node> List;
28 List.push_back(Node(1));
33 List.push_back(Node(2));
38 const ilist<Node> &ConstList = List;
  /external/testng/src/main/java/org/testng/xml/dom/
ITagSetter.java 3 import org.w3c.dom.Node;
6 void setProperty(String name, T parent, Node node);
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMLocator.java 23 import org.w3c.dom.Node;
27 * Indicates the position of a node in a source DOM, intended
32 * to indicate the source node that originated a result node.
37 * Return the node where the event occurred.
39 * @return The node that is the location for the event.
41 public Node getOriginatingNode();
  /libcore/luni/src/main/java/org/w3c/dom/
UserDataHandler.java 16 * When associating an object to a key on a node using
17 * <code>Node.setUserData()</code> the application can provide a handler
18 * that gets called when the node the object is associated to is being
28 * The node is cloned, using <code>Node.cloneNode()</code>.
32 * The node is imported, using <code>Document.importNode()</code>.
36 * The node is deleted.
43 * The node is renamed, using <code>Document.renameNode()</code>.
47 * The node is adopted, using <code>Document.adoptNode()</code>.
52 * This method is called whenever the node for which this handler i
    [all...]
Notation.java 19 * <code>nodeName</code> attribute inherited from <code>Node</code> is set
23 * <p>A <code>Notation</code> node does not have any parent.
26 public interface Notation extends Node {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
builtin.go 162 typs[4] = functype(nil, []*Node{anonfield(typs[1])}, []*Node{anonfield(typs[3])})
165 typs[7] = functype(nil, []*Node{anonfield(typs[6])}, nil)
168 typs[10] = functype(nil, []*Node{anonfield(typs[9])}, []*Node{anonfield(typs[6])})
170 typs[12] = functype(nil, []*Node{anonfield(typs[11])}, nil)
172 typs[14] = functype(nil, []*Node{anonfield(typs[13])}, nil)
174 typs[16] = functype(nil, []*Node{anonfield(typs[15])}, nil)
176 typs[18] = functype(nil, []*Node{anonfield(typs[17])}, nil)
178 typs[20] = functype(nil, []*Node{anonfield(typs[19])}, nil
    [all...]
types_acc.go 5 // This file implements convertions between *types.Node and *Node.
15 func asNode(n *types.Node) *Node { return (*Node)(unsafe.Pointer(n)) }
16 func asTypesNode(n *Node) *types.Node { return (*types.Node)(unsafe.Pointer(n)) }
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
builtin.go 162 typs[4] = functype(nil, []*Node{anonfield(typs[1])}, []*Node{anonfield(typs[3])})
165 typs[7] = functype(nil, []*Node{anonfield(typs[6])}, nil)
168 typs[10] = functype(nil, []*Node{anonfield(typs[9])}, []*Node{anonfield(typs[6])})
170 typs[12] = functype(nil, []*Node{anonfield(typs[11])}, nil)
172 typs[14] = functype(nil, []*Node{anonfield(typs[13])}, nil)
174 typs[16] = functype(nil, []*Node{anonfield(typs[15])}, nil)
176 typs[18] = functype(nil, []*Node{anonfield(typs[17])}, nil)
178 typs[20] = functype(nil, []*Node{anonfield(typs[19])}, nil
    [all...]
types_acc.go 5 // This file implements convertions between *types.Node and *Node.
15 func asNode(n *types.Node) *Node { return (*Node)(unsafe.Pointer(n)) }
16 func asTypesNode(n *Node) *types.Node { return (*types.Node)(unsafe.Pointer(n)) }
  /external/v8/src/compiler/
state-values-utils.h 26 Node* GetNodeForValues(Node** values, size_t count,
32 typedef std::array<Node*, kMaxInputCount> WorkingBuffer;
35 Node* node; member in struct:v8::internal::compiler::StateValuesCache::NodeKey
37 explicit NodeKey(Node* node) : node(node) {}
41 // ValueArray - array of nodes ({node} has to be nullptr)
87 Node* node; member in struct:v8::internal::compiler::StateValuesAccess::TypedNode
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-template.cpp 28 template <typename T> class Node {
31 Node(){ } // Node<BinomialNode<int>*>::Node() remains undefined.
32 ~Node() {}
36 template<typename T> class BinomialNode : Node<BinomialNode<T>*> {
44 BinomialNode<int> *node = new BinomialNode<int>(1); local
45 delete node;
  /external/v8/src/builtins/
builtins-async.cc 15 Node* AsyncBuiltinsAssembler::Await(
16 Node* context, Node* generator, Node* value, Node* outer_promise,
20 Node* const wrapped_value = AllocateAndInitJSPromise(context);
25 Node* const native_context = LoadNativeContext(context);
27 Node* const closure_context = create_closure_context(native_context);
28 Node* const map = LoadContextElement(
32 Node* const on_resolve_shared_fun
    [all...]
builtins-promise.cc 16 typedef compiler::Node Node;
20 Node* PromiseBuiltinsAssembler::AllocateJSPromise(Node* context) {
21 Node* const native_context = LoadNativeContext(context);
22 Node* const promise_fun =
24 Node* const initial_map =
26 Node* const instance = AllocateJSObjectFromMap(initial_map);
30 void PromiseBuiltinsAssembler::PromiseInit(Node* promise) {
36 Node* PromiseBuiltinsAssembler::AllocateAndInitJSPromise(Node* context)
    [all...]
builtins-regexp.cc 28 Node* RegExpBuiltinsAssembler::FastLoadLastIndex(Node* regexp) {
35 Node* RegExpBuiltinsAssembler::SlowLoadLastIndex(Node* context, Node* regexp) {
37 Node* const name = HeapConstant(isolate()->factory()->lastIndex_string());
42 Node* RegExpBuiltinsAssembler::LoadLastIndex(Node* context, Node* regexp,
50 void RegExpBuiltinsAssembler::FastStoreLastIndex(Node* regexp, Node* value)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciDriverOverride.c 57 PCI_DRIVER_OVERRIDE_LIST *Node;
65 Node = DRIVER_OVERRIDE_FROM_LINK (CurrentLink);
69 *DriverImageHandle = Node->DriverImageHandle;
73 if (*DriverImageHandle == Node->DriverImageHandle) {
81 // Get next node
83 Node = DRIVER_OVERRIDE_FROM_LINK (CurrentLink->ForwardLink);
84 *DriverImageHandle = Node->DriverImageHandle;
114 PCI_DRIVER_OVERRIDE_LIST *Node;
121 Node = AllocatePool (sizeof (PCI_DRIVER_OVERRIDE_LIST));
122 if (Node == NULL) {
    [all...]
PciResourceSupport.c 92 This function inserts a resource node into the resource list.
95 @param Bridge PCI resource node for bridge.
96 @param ResNode Resource node want to be inserted.
185 @param Bridge PCI resource node for bridge.
196 PCI_RESOURCE_NODE *Node;
247 Node = RESOURCE_NODE_FROM_LINK (CurrentLink);
248 if (Node->ResourceUsage == PciResUsagePadding) {
250 PaddingAperture = Node->Length;
256 Offset = Aperture & (Node->Alignment);
260 Aperture = Aperture + (Node->Alignment + 1) - Offset;
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
TreeVisitor.java 24 import com.github.javaparser.ast.Node;
31 * Iterate over all the nodes in (a part of) the AST. In contrast to the visit methods in Node, these methods are
37 public void visitLeavesFirst(Node node) {
38 for (Node child : node.getChildNodes()) {
41 process(node);
45 * Performs a pre-order node traversal starting with a given node. When each node is visited, {@link #process(Node)
    [all...]
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
Shims.java 18 TestBase(Context context, Node hierarchy) {}
20 Node computeExpected(Intent intent) { return null; }
21 static Node describeTaskHierarchy(Context context) { return null; }
40 class Node implements Parcelable, Comparable<Node> {
45 public static final Creator<Node> CREATOR = new Creator<Node>() {
47 public Node createFromParcel(Parcel in) {
48 return new Node(in);
52 public Node[] newArray(int size)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_graph.h 31 #define ITER_NODE(x) reinterpret_cast<Graph::Node *>((x).get())
38 class Node;
53 Edge(Node *dst, Node *src, Type kind);
56 inline Node *getOrigin() const { return origin; }
57 inline Node *getTarget() const { return target; }
63 Node *origin;
64 Node *target;
93 inline Node *getNode() const { assert(e); return d ?
105 class Node
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellEnvVar.c 98 ENV_VAR_LIST *Node;
105 for ( Node = (ENV_VAR_LIST*)GetFirstNode(List)
107 ; Node = (ENV_VAR_LIST*)GetFirstNode(List)
109 ASSERT(Node != NULL);
110 RemoveEntryList(&Node->Link);
111 if (Node->Key != NULL) {
112 FreePool(Node->Key);
114 if (Node->Val != NULL) {
115 FreePool(Node->Val);
117 FreePool(Node);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
CFGPrinter.h 35 static std::string getSimpleNodeLabel(const BasicBlock *Node,
37 if (!Node->getName().empty())
38 return Node->getNameStr();
43 WriteAsOperand(OS, Node, false);
47 static std::string getCompleteNodeLabel(const BasicBlock *Node,
52 if (Node->getName().empty()) {
53 WriteAsOperand(OS, Node, false);
57 OS << *Node;
75 std::string getNodeLabel(const BasicBlock *Node,
78 return getSimpleNodeLabel(Node, Graph)
    [all...]

Completed in 378 milliseconds

1 2 3 45 6 7 8 91011>>