HomeSort by relevance Sort by last modified time
    Searched refs:Node (Results 76 - 100 of 3612) sorted by null

1 2 34 5 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/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 {
  /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...]
control-equivalence.h 10 #include "src/compiler/node.h"
43 // Run the main algorithm starting from the {exit} control node. This causes
49 void Run(Node* exit);
52 size_t ClassOf(Node* node) {
53 DCHECK_NE(kInvalidClass, GetClass(node));
54 return GetClass(node);
65 Node* from; // Node that this bracket originates from.
66 Node* to; // Node that this bracket points to
77 Node* node; \/\/ Node that this stack entry belongs to. member in struct:v8::internal::compiler::final::DFSStackEntry
    [all...]
verifier.h 17 class Node;
21 // each node, etc.
31 // Verifies consistency of node inputs and uses:
32 // - node inputs should agree with the input count computed from
33 // the node's operator.
37 // - if the node has control uses, it should produce control.
38 // - if the node has effect uses, it should produce effect.
39 // - if the node has frame state uses, it must be a frame state.
40 static void VerifyNode(Node* node);
    [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/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl_impl.h 24 // Compile uses |pc| to emit a CodeGen::Node that conditionally continues
27 virtual CodeGen::Node Compile(PolicyCompiler* pc,
28 CodeGen::Node then_node,
29 CodeGen::Node else_node) const = 0;
42 // Compile uses |pc| to emit a CodeGen::Node that executes the
44 virtual CodeGen::Node Compile(PolicyCompiler* pc) const = 0;
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
builtin.go 135 typs[4] = functype(nil, []*Node{anonfield(typs[1])}, []*Node{anonfield(typs[3])})
138 typs[7] = functype(nil, []*Node{anonfield(typs[6]), anonfield(typs[6]), anonfield(typs[6])}, nil)
140 typs[9] = functype(nil, []*Node{anonfield(typs[8])}, nil)
143 typs[12] = functype(nil, []*Node{anonfield(typs[11])}, []*Node{anonfield(typs[8])})
145 typs[14] = functype(nil, []*Node{anonfield(typs[13])}, nil)
147 typs[16] = functype(nil, []*Node{anonfield(typs[15])}, nil)
149 typs[18] = functype(nil, []*Node{anonfield(typs[17])}, nil)
151 typs[20] = functype(nil, []*Node{anonfield(typs[19])}, nil
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
builtin.go 135 typs[4] = functype(nil, []*Node{anonfield(typs[1])}, []*Node{anonfield(typs[3])})
138 typs[7] = functype(nil, []*Node{anonfield(typs[6]), anonfield(typs[6]), anonfield(typs[6])}, nil)
140 typs[9] = functype(nil, []*Node{anonfield(typs[8])}, nil)
143 typs[12] = functype(nil, []*Node{anonfield(typs[11])}, []*Node{anonfield(typs[8])})
145 typs[14] = functype(nil, []*Node{anonfield(typs[13])}, nil)
147 typs[16] = functype(nil, []*Node{anonfield(typs[15])}, nil)
149 typs[18] = functype(nil, []*Node{anonfield(typs[17])}, nil)
151 typs[20] = functype(nil, []*Node{anonfield(typs[19])}, nil
    [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...]
  /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...]
  /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...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 53 /// isPassiveNode - Return true if the node is a non-scheduled leaf.
55 static bool isPassiveNode(SDNode *Node) {
56 if (isa<ConstantSDNode>(Node)) return true;
57 if (isa<ConstantFPSDNode>(Node)) return true;
58 if (isa<RegisterSDNode>(Node)) return true;
59 if (isa<RegisterMaskSDNode>(Node)) return true;
60 if (isa<GlobalAddressSDNode>(Node)) return true;
61 if (isa<BasicBlockSDNode>(Node)) return true;
62 if (isa<FrameIndexSDNode>(Node)) return true;
63 if (isa<ConstantPoolSDNode>(Node)) return true
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
LeafNodeImpl.java 19 import org.w3c.dom.Node;
31 * This class represents a Node that has a parent Node, but no children.
45 public Node getNextSibling() {
53 public Node getParentNode() {
57 public Node getPreviousSibling() {
65 boolean isParentOf(Node node) {
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellEnvVar.c 92 ENV_VAR_LIST *Node;
99 for ( Node = (ENV_VAR_LIST*)GetFirstNode(List)
101 ; Node = (ENV_VAR_LIST*)GetFirstNode(List)
103 ASSERT(Node != NULL);
104 RemoveEntryList(&Node->Link);
105 if (Node->Key != NULL) {
106 FreePool(Node->Key);
108 if (Node->Val != NULL) {
109 FreePool(Node->Val);
111 FreePool(Node);
    [all...]

Completed in 980 milliseconds

1 2 34 5 6 7 8 91011>>