Home
last modified time | relevance | path

Searched refs:node (Results 1 – 25 of 2426) sorted by relevance

12345678910>>...98

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DDepthFirstAdapter.java6 import com.google.clearsilver.jsilver.syntax.node.*;
10 public void inStart(Start node) in inStart() argument
12 defaultIn(node); in inStart()
15 public void outStart(Start node) in outStart() argument
17 defaultOut(node); in outStart()
20 public void defaultIn(@SuppressWarnings("unused") Node node) in defaultIn() argument
25 public void defaultOut(@SuppressWarnings("unused") Node node) in defaultOut() argument
31 public void caseStart(Start node) in caseStart() argument
33 inStart(node); in caseStart()
34 node.getPCommand().apply(this); in caseStart()
[all …]
DReversedDepthFirstAdapter.java6 import com.google.clearsilver.jsilver.syntax.node.*;
10 public void inStart(Start node) in inStart() argument
12 defaultIn(node); in inStart()
15 public void outStart(Start node) in outStart() argument
17 defaultOut(node); in outStart()
20 public void defaultIn(@SuppressWarnings("unused") Node node) in defaultIn() argument
25 public void defaultOut(@SuppressWarnings("unused") Node node) in defaultOut() argument
31 public void caseStart(Start node) in caseStart() argument
33 inStart(node); in caseStart()
34 node.getEOF().apply(this); in caseStart()
[all …]
DAnalysisAdapter.java6 import com.google.clearsilver.jsilver.syntax.node.*;
13 public Object getIn(Node node) in getIn() argument
20 return this.in.get(node); in getIn()
23 public void setIn(Node node, Object o) in setIn() argument
32 this.in.put(node, o); in setIn()
36 this.in.remove(node); in setIn()
40 public Object getOut(Node node) in getOut() argument
47 return this.out.get(node); in getOut()
50 public void setOut(Node node, Object o) in setOut() argument
59 this.out.put(node, o); in setOut()
[all …]
DAnalysis.java5 import com.google.clearsilver.jsilver.syntax.node.*;
9 Object getIn(Node node); in getIn() argument
10 void setIn(Node node, Object o); in setIn() argument
11 Object getOut(Node node); in getOut() argument
12 void setOut(Node node, Object o); in setOut() argument
14 void caseStart(Start node); in caseStart() argument
15 void caseAMultipleCommand(AMultipleCommand node); in caseAMultipleCommand() argument
16 void caseACommentCommand(ACommentCommand node); in caseACommentCommand() argument
17 void caseADataCommand(ADataCommand node); in caseADataCommand() argument
18 void caseAVarCommand(AVarCommand node); in caseAVarCommand() argument
[all …]
/external/v8/src/ast/
Dast-literal-reindexer.cc14 void AstLiteralReindexer::VisitVariableDeclaration(VariableDeclaration* node) { in VisitVariableDeclaration() argument
15 VisitVariableProxy(node->proxy()); in VisitVariableDeclaration()
19 void AstLiteralReindexer::VisitExportDeclaration(ExportDeclaration* node) { in VisitExportDeclaration() argument
20 VisitVariableProxy(node->proxy()); in VisitExportDeclaration()
24 void AstLiteralReindexer::VisitEmptyStatement(EmptyStatement* node) {} in VisitEmptyStatement() argument
28 SloppyBlockFunctionStatement* node) { in VisitSloppyBlockFunctionStatement() argument
29 Visit(node->statement()); in VisitSloppyBlockFunctionStatement()
33 void AstLiteralReindexer::VisitContinueStatement(ContinueStatement* node) {} in VisitContinueStatement() argument
36 void AstLiteralReindexer::VisitBreakStatement(BreakStatement* node) {} in VisitBreakStatement() argument
39 void AstLiteralReindexer::VisitDebuggerStatement(DebuggerStatement* node) {} in VisitDebuggerStatement() argument
[all …]
Dast-expression-rewriter.cc16 #define REWRITE_THIS(node) \ argument
18 if (!RewriteExpression(node)) return; \
54 VariableDeclaration* node) { in VisitVariableDeclaration() argument
61 FunctionDeclaration* node) { in VisitFunctionDeclaration() argument
63 AST_REWRITE_PROPERTY(FunctionLiteral, node, fun); in VisitFunctionDeclaration()
67 void AstExpressionRewriter::VisitImportDeclaration(ImportDeclaration* node) { in VisitImportDeclaration() argument
73 void AstExpressionRewriter::VisitExportDeclaration(ExportDeclaration* node) { in VisitExportDeclaration() argument
79 void AstExpressionRewriter::VisitBlock(Block* node) { in VisitBlock() argument
80 VisitStatements(node->statements()); in VisitBlock()
85 ExpressionStatement* node) { in VisitExpressionStatement() argument
[all …]
Dast-numbering.cc26 bool Renumber(FunctionLiteral* node);
30 #define DEFINE_VISIT(type) void Visit##type(type* node) override;
34 bool Finish(FunctionLiteral* node);
36 void VisitVariableProxyReference(VariableProxy* node);
37 void VisitPropertyReference(Property* node);
69 void ReserveFeedbackSlots(Node* node) { in ReserveFeedbackSlots() argument
70 node->AssignFeedbackVectorSlots(isolate_, properties_.get_spec(), in ReserveFeedbackSlots()
89 void AstNumberingVisitor::VisitVariableDeclaration(VariableDeclaration* node) { in VisitVariableDeclaration() argument
91 VisitVariableProxy(node->proxy()); in VisitVariableDeclaration()
95 void AstNumberingVisitor::VisitExportDeclaration(ExportDeclaration* node) { in VisitExportDeclaration() argument
[all …]
Dprettyprinter.cc39 void CallPrinter::Find(AstNode* node, bool print) { in Find() argument
44 Visit(node); in Find()
49 Visit(node); in Find()
92 void CallPrinter::VisitBlock(Block* node) { in VisitBlock() argument
93 FindStatements(node->statements()); in VisitBlock()
97 void CallPrinter::VisitVariableDeclaration(VariableDeclaration* node) {} in VisitVariableDeclaration() argument
100 void CallPrinter::VisitFunctionDeclaration(FunctionDeclaration* node) {} in VisitFunctionDeclaration() argument
103 void CallPrinter::VisitImportDeclaration(ImportDeclaration* node) { in VisitImportDeclaration() argument
107 void CallPrinter::VisitExportDeclaration(ExportDeclaration* node) {} in VisitExportDeclaration() argument
110 void CallPrinter::VisitExpressionStatement(ExpressionStatement* node) { in VisitExpressionStatement() argument
[all …]
/external/ltrace/
Dexpr.c29 expr_init_common(struct expr_node *node, enum expr_node_kind kind) in expr_init_common() argument
31 node->kind = kind; in expr_init_common()
32 node->lhs = NULL; in expr_init_common()
33 node->own_lhs = 0; in expr_init_common()
34 memset(&node->u, 0, sizeof(node->u)); in expr_init_common()
38 expr_init_self(struct expr_node *node) in expr_init_self() argument
40 expr_init_common(node, EXPR_OP_SELF); in expr_init_self()
44 expr_init_named(struct expr_node *node, in expr_init_named() argument
47 expr_init_common(node, EXPR_OP_NAMED); in expr_init_named()
48 node->u.name.s = name; in expr_init_named()
[all …]
/external/v8/src/compiler/
Descape-analysis-reducer.cc24 Reduction EscapeAnalysisReducer::Reduce(Node* node) { in Reduce() argument
25 switch (node->opcode()) { in Reduce()
28 return ReduceLoad(node); in Reduce()
31 return ReduceStore(node); in Reduce()
33 return ReduceAllocate(node); in Reduce()
35 return ReduceFinishRegion(node); in Reduce()
37 return ReduceReferenceEqual(node); in Reduce()
39 return ReduceObjectIsSmi(node); in Reduce()
44 if (node->op()->EffectInputCount() > 0) { in Reduce()
45 return ReduceFrameStateUses(node); in Reduce()
[all …]
Dnode-properties.cc18 int NodeProperties::PastValueIndex(Node* node) { in PastValueIndex() argument
19 return FirstValueIndex(node) + node->op()->ValueInputCount(); in PastValueIndex()
24 int NodeProperties::PastContextIndex(Node* node) { in PastContextIndex() argument
25 return FirstContextIndex(node) + in PastContextIndex()
26 OperatorProperties::GetContextInputCount(node->op()); in PastContextIndex()
31 int NodeProperties::PastFrameStateIndex(Node* node) { in PastFrameStateIndex() argument
32 return FirstFrameStateIndex(node) + in PastFrameStateIndex()
33 OperatorProperties::GetFrameStateInputCount(node->op()); in PastFrameStateIndex()
38 int NodeProperties::PastEffectIndex(Node* node) { in PastEffectIndex() argument
39 return FirstEffectIndex(node) + node->op()->EffectInputCount(); in PastEffectIndex()
[all …]
Dmachine-operator-reducer.cc47 Node* const node = graph()->NewNode(machine()->Word32And(), lhs, rhs); in Word32And() local
48 Reduction const reduction = ReduceWord32And(node); in Word32And()
49 return reduction.Changed() ? reduction.replacement() : node; in Word32And()
71 Node* const node = graph()->NewNode(machine()->Int32Add(), lhs, rhs); in Int32Add() local
72 Reduction const reduction = ReduceInt32Add(node); in Int32Add()
73 return reduction.Changed() ? reduction.replacement() : node; in Int32Add()
78 Node* const node = graph()->NewNode(machine()->Int32Sub(), lhs, rhs); in Int32Sub() local
79 Reduction const reduction = ReduceInt32Sub(node); in Int32Sub()
80 return reduction.Changed() ? reduction.replacement() : node; in Int32Sub()
130 Reduction MachineOperatorReducer::Reduce(Node* node) { in Reduce() argument
[all …]
Djs-intrinsic-lowering.cc32 Reduction JSIntrinsicLowering::Reduce(Node* node) { in Reduce() argument
33 if (node->opcode() != IrOpcode::kJSCallRuntime) return NoChange(); in Reduce()
35 Runtime::FunctionForId(CallRuntimeParametersOf(node->op()).id()); in Reduce()
39 return ReduceConstructDouble(node); in Reduce()
41 return ReduceCreateIterResultObject(node); in Reduce()
43 return ReduceDeoptimizeNow(node); in Reduce()
45 return ReduceDoubleHi(node); in Reduce()
47 return ReduceDoubleLo(node); in Reduce()
49 return ReduceIncrementStatsCounter(node); in Reduce()
51 return ReduceIsInstanceType(node, JS_ARRAY_TYPE); in Reduce()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDefaultBaseIterators.java302 public DTMAxisIterator setStartNode(int node) in setStartNode() argument
305 if (node == DTMDefaultBase.ROOTNODE) in setStartNode()
306 node = getDocument(); in setStartNode()
309 _startNode = node; in setStartNode()
310 _currentNode = (node == DTM.NULL) ? DTM.NULL in setStartNode()
311 : _firstch(makeNodeIdentity(node)); in setStartNode()
328 int node = _currentNode; in next() local
329 _currentNode = _nextsib(node); in next()
330 return returnNode(makeNodeHandle(node)); in next()
356 public DTMAxisIterator setStartNode(int node) in setStartNode() argument
[all …]
/external/e2fsprogs/lib/ext2fs/
Drbtree.c25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) in __rb_rotate_left() argument
27 struct rb_node *right = node->rb_right; in __rb_rotate_left()
28 struct rb_node *parent = ext2fs_rb_parent(node); in __rb_rotate_left()
30 if ((node->rb_right = right->rb_left)) in __rb_rotate_left()
31 ext2fs_rb_set_parent(right->rb_left, node); in __rb_rotate_left()
32 right->rb_left = node; in __rb_rotate_left()
38 if (node == parent->rb_left) in __rb_rotate_left()
45 ext2fs_rb_set_parent(node, right); in __rb_rotate_left()
48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) in __rb_rotate_right() argument
50 struct rb_node *left = node->rb_left; in __rb_rotate_right()
[all …]
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc33 InstructionOperand UseOperand(Node* node, ImmediateMode mode) { in UseOperand() argument
34 if (CanBeImmediate(node, mode)) { in UseOperand()
35 return UseImmediate(node); in UseOperand()
37 return UseRegister(node); in UseOperand()
42 InstructionOperand UseRegisterOrImmediateZero(Node* node) { in UseRegisterOrImmediateZero() argument
43 if (IsIntegerConstant(node) && (GetIntegerConstantValue(node) == 0)) { in UseRegisterOrImmediateZero()
44 return UseImmediate(node); in UseRegisterOrImmediateZero()
46 return UseRegister(node); in UseRegisterOrImmediateZero()
51 InstructionOperand UseImmediateOrTemp(Node* node, int32_t value) { in UseImmediateOrTemp() argument
52 if (GetIntegerConstantValue(node) == value) { in UseImmediateOrTemp()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dextent.h73 arena_t *extent_node_arena_get(const extent_node_t *node);
74 void *extent_node_addr_get(const extent_node_t *node);
75 size_t extent_node_size_get(const extent_node_t *node);
76 bool extent_node_zeroed_get(const extent_node_t *node);
77 bool extent_node_committed_get(const extent_node_t *node);
78 bool extent_node_achunk_get(const extent_node_t *node);
79 prof_tctx_t *extent_node_prof_tctx_get(const extent_node_t *node);
80 void extent_node_arena_set(extent_node_t *node, arena_t *arena);
81 void extent_node_addr_set(extent_node_t *node, void *addr);
82 void extent_node_size_set(extent_node_t *node, size_t size);
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DExpressionEvaluator.java23 import com.google.clearsilver.jsilver.syntax.node.AAddExpression;
24 import com.google.clearsilver.jsilver.syntax.node.AAndExpression;
25 import com.google.clearsilver.jsilver.syntax.node.ADecimalExpression;
26 import com.google.clearsilver.jsilver.syntax.node.ADescendVariable;
27 import com.google.clearsilver.jsilver.syntax.node.ADivideExpression;
28 import com.google.clearsilver.jsilver.syntax.node.AEqExpression;
29 import com.google.clearsilver.jsilver.syntax.node.AExistsExpression;
30 import com.google.clearsilver.jsilver.syntax.node.AFunctionExpression;
31 import com.google.clearsilver.jsilver.syntax.node.AGtExpression;
32 import com.google.clearsilver.jsilver.syntax.node.AGteExpression;
[all …]
/external/v8/src/compiler/ppc/
Dinstruction-selector-ppc.cc32 InstructionOperand UseOperand(Node* node, ImmediateMode mode) { in UseOperand() argument
33 if (CanBeImmediate(node, mode)) { in UseOperand()
34 return UseImmediate(node); in UseOperand()
36 return UseRegister(node); in UseOperand()
39 bool CanBeImmediate(Node* node, ImmediateMode mode) { in CanBeImmediate() argument
41 if (node->opcode() == IrOpcode::kInt32Constant) in CanBeImmediate()
42 value = OpParameter<int32_t>(node); in CanBeImmediate()
43 else if (node->opcode() == IrOpcode::kInt64Constant) in CanBeImmediate()
44 value = OpParameter<int64_t>(node); in CanBeImmediate()
74 void VisitRR(InstructionSelector* selector, ArchOpcode opcode, Node* node) { in VisitRR() argument
[all …]
/external/tinyxml/
Dtinyxml.cpp157 TiXmlNode* node = firstChild; in ~TiXmlNode() local
160 while ( node ) in ~TiXmlNode()
162 temp = node; in ~TiXmlNode()
163 node = node->next; in ~TiXmlNode()
178 TiXmlNode* node = firstChild; in Clear() local
181 while ( node ) in Clear()
183 temp = node; in Clear()
184 node = node->next; in Clear()
193 TiXmlNode* TiXmlNode::LinkEndChild( TiXmlNode* node ) in LinkEndChild() argument
195 node->parent = this; in LinkEndChild()
[all …]
/external/v8/src/compiler/mips64/
Dinstruction-selector-mips64.cc27 InstructionOperand UseOperand(Node* node, InstructionCode opcode) { in UseOperand() argument
28 if (CanBeImmediate(node, opcode)) { in UseOperand()
29 return UseImmediate(node); in UseOperand()
31 return UseRegister(node); in UseOperand()
34 bool CanBeImmediate(Node* node, InstructionCode opcode) { in CanBeImmediate() argument
36 if (node->opcode() == IrOpcode::kInt32Constant) in CanBeImmediate()
37 value = OpParameter<int32_t>(node); in CanBeImmediate()
38 else if (node->opcode() == IrOpcode::kInt64Constant) in CanBeImmediate()
39 value = OpParameter<int64_t>(node); in CanBeImmediate()
70 Node* node) { in VisitRR() argument
[all …]
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc22 bool CanBeImmediate(Node* node) { in CanBeImmediate() argument
23 switch (node->opcode()) { in CanBeImmediate()
27 const int64_t value = OpParameter<int64_t>(node); in CanBeImmediate()
31 const double value = OpParameter<double>(node); in CanBeImmediate()
104 bool CanBeBetterLeftOperand(Node* node) const { in CanBeBetterLeftOperand()
105 return !selector()->IsLive(node); in CanBeBetterLeftOperand()
110 void InstructionSelector::VisitLoad(Node* node) { in VisitLoad() argument
111 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitLoad()
142 outputs[0] = g.DefineAsRegister(node); in VisitLoad()
146 g.GetEffectiveAddressMemoryOperand(node, inputs, &input_count); in VisitLoad()
[all …]
/external/blktrace/
Drbtree.c25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) in __rb_rotate_left() argument
27 struct rb_node *right = node->rb_right; in __rb_rotate_left()
28 struct rb_node *parent = rb_parent(node); in __rb_rotate_left()
30 if ((node->rb_right = right->rb_left)) in __rb_rotate_left()
31 rb_set_parent(right->rb_left, node); in __rb_rotate_left()
32 right->rb_left = node; in __rb_rotate_left()
38 if (node == parent->rb_left) in __rb_rotate_left()
45 rb_set_parent(node, right); in __rb_rotate_left()
48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) in __rb_rotate_right() argument
50 struct rb_node *left = node->rb_left; in __rb_rotate_right()
[all …]
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc29 bool CanBeImmediate(Node* node, InstructionCode opcode) { in CanBeImmediate() argument
30 Int32Matcher m(node); in CanBeImmediate()
81 void VisitRR(InstructionSelector* selector, ArchOpcode opcode, Node* node) { in VisitRR() argument
83 selector->Emit(opcode, g.DefineAsRegister(node), in VisitRR()
84 g.UseRegister(node->InputAt(0))); in VisitRR()
88 void VisitRRR(InstructionSelector* selector, ArchOpcode opcode, Node* node) { in VisitRRR() argument
90 selector->Emit(opcode, g.DefineAsRegister(node), in VisitRRR()
91 g.UseRegister(node->InputAt(0)), in VisitRRR()
92 g.UseRegister(node->InputAt(1))); in VisitRRR()
99 InstructionCode* opcode_return, Node* node, in TryMatchShift() argument
[all …]
/external/v8/src/compiler/mips/
Dinstruction-selector-mips.cc27 InstructionOperand UseOperand(Node* node, InstructionCode opcode) { in UseOperand() argument
28 if (CanBeImmediate(node, opcode)) { in UseOperand()
29 return UseImmediate(node); in UseOperand()
31 return UseRegister(node); in UseOperand()
34 bool CanBeImmediate(Node* node, InstructionCode opcode) { in CanBeImmediate() argument
35 Int32Matcher m(node); in CanBeImmediate()
65 Node* node) { in VisitRRR() argument
67 selector->Emit(opcode, g.DefineAsRegister(node), in VisitRRR()
68 g.UseRegister(node->InputAt(0)), in VisitRRR()
69 g.UseRegister(node->InputAt(1))); in VisitRRR()
[all …]

12345678910>>...98