HomeSort by relevance Sort by last modified time
    Searched defs:ActionNode (Results 1 - 4 of 4) sorted by null

  /prebuilts/go/darwin-x86/src/text/template/parse/
node.go 204 // ActionNode holds an action (something bounded by delimiters).
205 // Control actions have their own nodes; ActionNode represents simple
207 type ActionNode struct {
215 func (t *Tree) newAction(pos Pos, line int, pipe *PipeNode) *ActionNode {
216 return &ActionNode{tr: t, NodeType: NodeAction, Pos: pos, Line: line, Pipe: pipe}
219 func (a *ActionNode) String() string {
224 func (a *ActionNode) tree() *Tree {
228 func (a *ActionNode) Copy() Node {
  /prebuilts/go/linux-x86/src/text/template/parse/
node.go 204 // ActionNode holds an action (something bounded by delimiters).
205 // Control actions have their own nodes; ActionNode represents simple
207 type ActionNode struct {
215 func (t *Tree) newAction(pos Pos, line int, pipe *PipeNode) *ActionNode {
216 return &ActionNode{tr: t, NodeType: NodeAction, Pos: pos, Line: line, Pipe: pipe}
219 func (a *ActionNode) String() string {
224 func (a *ActionNode) tree() *Tree {
228 func (a *ActionNode) Copy() Node {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
syn.h 64 class ActionNode;
115 ActionNode *source; /* where did this predicate come from? */
206 class ActionNode : public Node {
237 } ActionNode;
  /external/v8/src/regexp/
jsregexp.h 582 class ActionNode: public SeqRegExpNode {
593 static ActionNode* SetRegister(int reg, int val, RegExpNode* on_success);
594 static ActionNode* IncrementRegister(int reg, RegExpNode* on_success);
595 static ActionNode* StorePosition(int reg,
598 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success);
599 static ActionNode* BeginSubmatch(int stack_pointer_reg,
602 static ActionNode* PositiveSubmatchSuccess(int stack_pointer_reg,
607 static ActionNode* EmptyMatchCheck(int start_register,
656 ActionNode(ActionType action_type, RegExpNode* on_success)
    [all...]

Completed in 107 milliseconds