HomeSort by relevance Sort by last modified time
    Searched refs:node (Results 876 - 900 of 5153) sorted by null

<<31323334353637383940>>

  /external/v8/src/compiler/
js-builtin-reducer.cc 7 #include "src/compiler/node-matchers.h"
8 #include "src/compiler/node-properties.h"
22 explicit JSCallReduction(Node* node) : node_(node) {}
24 // Determines whether the node is a JSCallFunction operation that targets a
68 Node* left() { return GetJSCallInput(0); }
69 Node* right() { return GetJSCallInput(1); }
77 Node* GetJSCallInput(int index) {
85 Node* node_
    [all...]
value-numbering-reducer.cc 10 #include "src/compiler/node.h"
18 size_t HashCode(Node* node) {
19 size_t h = base::hash_combine(node->op()->HashCode(), node->InputCount());
20 for (int j = 0; j < node->InputCount(); ++j) {
21 h = base::hash_combine(h, node->InputAt(j)->id());
27 bool Equals(Node* a, Node* b) {
52 Reduction ValueNumberingReducer::Reduce(Node* node)
    [all...]
scheduler.h 9 #include "src/compiler/node.h"
42 // Placement of a node changes during scheduling. The placement state
55 // Per-node data tracked during scheduling.
58 int unscheduled_count_; // Number of unscheduled uses of this node.
59 Placement placement_; // Whether the node is fixed, schedulable,
60 // coupled to another node, or not yet known.
69 ZoneQueue<Node*> schedule_queue_; // Worklist of schedulable nodes.
70 ZoneVector<SchedulerData> node_data_; // Per-node data for all nodes.
78 inline SchedulerData* GetData(Node* node);
    [all...]
typer.cc 13 #include "src/compiler/node.h"
14 #include "src/compiler/node-properties.h"
26 void Decorate(Node* node) final;
86 Reduction Reduce(Node* node) override {
87 if (node->op()->ValueOutputCount() == 0) return NoChange();
88 switch (node->opcode()) {
91 return UpdateType(node, TypeBinaryOp(node, x##Typer))
    [all...]
js-native-context-specialization.h 50 Reduction Reduce(Node* node) final;
53 Reduction ReduceJSLoadNamed(Node* node);
54 Reduction ReduceJSStoreNamed(Node* node);
55 Reduction ReduceJSLoadProperty(Node* node);
56 Reduction ReduceJSStoreProperty(Node* node);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 49 import org.w3c.dom.Node;
62 * traverse and serialize a DOM Node (Level 2 or Level 3) as specified in
108 /** Is the Node a Level 3 DOM node */
240 * @param pos Node in the tree where to start traversal
244 public void traverse(Node pos) throws org.xml.sax.SAXException {
247 // Determine if the Node is a DOM Level 3 Core Node.
248 if (pos.getNodeType() != Node.DOCUMENT_NODE) {
269 Node top = pos;
    [all...]
  /external/snakeyaml/src/test/java/examples/
IgnoreTagsExampleTest.java 29 import org.yaml.snakeyaml.nodes.Node;
64 public Object construct(Node node) {
65 if (node.getTag().startsWith("!KnownTag")) {
66 return original.construct(node);
68 switch (node.getNodeId()) {
70 return yamlConstructors.get(Tag.STR).construct(node);
72 return yamlConstructors.get(Tag.SEQ).construct(node);
74 return yamlConstructors.get(Tag.MAP).construct(node);
76 throw new YAMLException("Unexpected node");
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue94/
ChangeRuntimeClassTest.java 25 import org.yaml.snakeyaml.nodes.Node;
79 private Construct getConstructor(Node node) {
80 Class<?> cl = getClassForNode(node);
85 node.setType(cl);
87 Construct constructor = yamlClassConstructors.get(node.getNodeId());
91 public Object construct(Node node) {
92 return getConstructor(node).construct(node);
    [all...]
  /external/toybox/toys/other/
switch_root.c 30 static int del_node(struct dirtree *node)
32 if (node->st.st_dev == TT.rootdev && dirtree_notdotdot(node)) {
34 if (S_ISDIR(node->st.st_mode)) {
35 if (!node->again) return DIRTREE_COMEAGAIN;
38 unlinkat(dirtree_parentfd(node), node->name, flag);
  /external/toybox/toys/posix/
chgrp.c 45 static int do_chgrp(struct dirtree *node)
50 if (!dirtree_notdotdot(node)) return 0;
51 if ((flags & FLAG_R) && !node->again && S_ISDIR(node->st.st_mode))
54 fd = dirtree_parentfd(node);
55 ret = fchownat(fd, node->name, TT.owner, TT.group,
59 char *path = dirtree_path(node, 0);
  /frameworks/base/core/java/com/android/internal/widget/
ExploreByTouchHelper.java 49 /** Virtual node identifier value for invalid nodes. */
52 /** Virtual node identifier value for the host view's node. */
82 /** Node provider that handles creating nodes and performing actions. */
110 * @return The accessibility node provider for this helper.
301 * Constructs and returns an {@link AccessibilityEvent} for the host node.
354 * construct a node.
371 * @return An {@link AccessibilityNodeInfo} for the parent node.
374 final AccessibilityNodeInfo node = AccessibilityNodeInfo.obtain(mView); local
375 mView.onInitializeAccessibilityNodeInfo(node);
435 final AccessibilityNodeInfo node = AccessibilityNodeInfo.obtain(); local
    [all...]