Home
last modified time | relevance | path

Searched defs:IdentifierNode (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/text/template/parse/
Dnode.go346 type IdentifierNode struct { struct
347 NodeType
348 Pos
349 tr *Tree
350 Ident string // The identifier's name.
361 func (i *IdentifierNode) SetPos(pos Pos) *IdentifierNode {
369 func (i *IdentifierNode) SetTree(t *Tree) *IdentifierNode {
374 func (i *IdentifierNode) String() string {
378 func (i *IdentifierNode) writeTo(sb *strings.Builder) {
382 func (i *IdentifierNode) tree() *Tree {
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h354 struct IdentifierNode : public Node { struct
355 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() function
363 struct VcallThunkIdentifierNode : public IdentifierNode { argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Demangle/
DMicrosoftDemangleNodes.h353 struct IdentifierNode : public Node { struct
354 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() function
362 struct VcallThunkIdentifierNode : public IdentifierNode { argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Demangle/
DMicrosoftDemangleNodes.h353 struct IdentifierNode : public Node { struct
354 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() function
362 struct VcallThunkIdentifierNode : public IdentifierNode { argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Demangle/
DMicrosoftDemangleNodes.h353 struct IdentifierNode : public Node { struct
354 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() argument
362 struct VcallThunkIdentifierNode : public IdentifierNode { argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Demangle/
DMicrosoftDemangleNodes.h353 struct IdentifierNode : public Node { struct
354 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() function
362 struct VcallThunkIdentifierNode : public IdentifierNode { argument
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h354 struct IdentifierNode : public Node { struct
355 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() function
363 struct VcallThunkIdentifierNode : public IdentifierNode { argument
/aosp_15_r20/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/engine/ast/
H A DIdentifierNode.java27 public abstract class IdentifierNode implements AstNode { class