HomeSort by relevance Sort by last modified time
    Searched refs:ChainNode (Results 1 - 6 of 6) sorted by null

  /prebuilts/go/darwin-x86/src/text/template/parse/
node.go 442 // ChainNode holds a term followed by a chain of field accesses (identifier starting with '.').
445 type ChainNode struct {
453 func (t *Tree) newChain(pos Pos, node Node) *ChainNode {
454 return &ChainNode{tr: t, NodeType: NodeChain, Pos: pos, Node: node}
458 func (c *ChainNode) Add(field string) {
469 func (c *ChainNode) String() string {
480 func (c *ChainNode) tree() *Tree {
484 func (c *ChainNode) Copy() Node {
485 return &ChainNode{tr: c.tr, NodeType: NodeChain, Pos: c.Pos, Node: c.Node, Field: append([]string{}, c.Field...)}
  /prebuilts/go/linux-x86/src/text/template/parse/
node.go 442 // ChainNode holds a term followed by a chain of field accesses (identifier starting with '.').
445 type ChainNode struct {
453 func (t *Tree) newChain(pos Pos, node Node) *ChainNode {
454 return &ChainNode{tr: t, NodeType: NodeChain, Pos: pos, Node: node}
458 func (c *ChainNode) Add(field string) {
469 func (c *ChainNode) String() string {
480 func (c *ChainNode) tree() *Tree {
484 func (c *ChainNode) Copy() Node {
485 return &ChainNode{tr: c.tr, NodeType: NodeChain, Pos: c.Pos, Node: c.Node, Field: append([]string{}, c.Field...)}
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /prebuilts/go/darwin-x86/src/text/template/
exec.go 428 case *parse.ChainNode:
492 func (s *state) evalChainNode(dot reflect.Value, chain *parse.ChainNode, args []parse.Node, final reflect.Value) reflect.Value {
748 case *parse.ChainNode:
  /prebuilts/go/linux-x86/src/text/template/
exec.go 428 case *parse.ChainNode:
492 func (s *state) evalChainNode(dot reflect.Value, chain *parse.ChainNode, args []parse.Node, final reflect.Value) reflect.Value {
748 case *parse.ChainNode:

Completed in 110 milliseconds