HomeSort by relevance Sort by last modified time
    Searched defs:Node (Results 1 - 25 of 1545) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/issue5125.dir/
bug.go 7 type Node interface {
12 node Node
  /prebuilts/go/linux-x86/test/fixedbugs/issue5125.dir/
bug.go 7 type Node interface {
12 node Node
  /external/llvm/unittests/ADT/
ilistTest.cpp 20 struct Node : ilist_node<Node> {
23 Node() {}
24 Node(int Value) : Value(Value) {}
25 Node(const Node&) = default;
26 ~Node() { Value = -1; }
30 ilist<Node> List;
31 List.push_back(Node(1));
36 List.push_back(Node(2))
    [all...]
  /external/clang/test/CXX/expr/expr.post/expr.ref/
p3.cpp 4 template<typename T> struct Node {
8 Node<T> n[1];
14 Node<int> n;
  /external/llvm/lib/Analysis/
Interval.cpp 31 // node lives in the interval.
45 for (const BasicBlock *Node : Nodes)
46 OS << *Node << "\n";
  /external/swiftshader/third_party/LLVM/unittests/ADT/
ilistTest.cpp 19 struct Node : ilist_node<Node> {
22 Node() {}
23 Node(int _Value) : Value(_Value) {}
27 ilist<Node> List;
28 List.push_back(Node(1));
33 List.push_back(Node(2));
38 const ilist<Node> &ConstList = List;
  /build/soong/cmd/fileslist/
fileslist.go 50 type Node struct {
58 func newNode(hostPath string, devicePath string, stat os.FileInfo) Node {
59 return Node{Name: devicePath, path: hostPath, stat: stat}
62 // Scan a Node and returns true if it should be added to the result.
63 func (n *Node) scan() bool {
95 allOutput := make([]Node, 0, 1024) // Store all outputs.
98 ch := make(chan Node) // Pass nodes to goroutines.
108 output := make([]Node, 0, 1024) // Local output list.
109 for node := range ch {
110 if node.scan()
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/PiSmmStatusCodeOnFrameworkSmmStatusCodeThunk/
PiSmmStatusCodeOnFrameworkSmmStatusCodeThunk.h 34 LIST_ENTRY Node;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/
DatahubStatusCodeHandlerDxe.h 45 LIST_ENTRY Node;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
StatusCodeRuntimeDxe.h 51 LIST_ENTRY Node;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Dxe/
Service.h 809 LIST_ENTRY Node;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/ReportStatusCodeRouter/Smm/
ReportStatusCodeRouterSmm.h 35 LIST_ENTRY Node;
  /external/perfetto/tools/
find_scan_roots.py 24 class Node(object):
39 n = Node(child)
64 root = Node("")
  /external/v8/src/builtins/
builtins-arguments.h 10 typedef compiler::Node Node;
19 Node* EmitFastNewStrictArguments(Node* context, Node* function);
20 Node* EmitFastNewSloppyArguments(Node* context, Node* function);
21 Node* EmitFastNewRestParameter(Node* context, Node* function)
    [all...]
builtins-regexp.h 13 typedef compiler::Node Node;
22 void BranchIfFastRegExp(Node* const context, Node* const object,
23 Node* const map, Label* const if_isunmodified,
27 Node* FastLoadLastIndex(Node* regexp);
28 Node* SlowLoadLastIndex(Node* context, Node* regexp)
    [all...]
builtins-wasm.cc 13 typedef compiler::Node Node;
16 Node* context = SmiConstant(Smi::kZero);
  /prebuilts/go/darwin-x86/doc/progs/
gobs1.go 17 type Node struct {
19 Left, Right *Node
  /prebuilts/go/darwin-x86/src/go/format/
format.go 22 // Node formats node in canonical gofmt style and writes the result to dst.
24 // The node type must be *ast.File, *printer.CommentedNode, []ast.Decl,
26 // or ast.Stmt. Node does not modify node. Imports are not sorted for
27 // nodes representing partial source files (for instance, if the node is
33 func Node(dst io.Writer, fset *token.FileSet, node interface{}) error {
37 switch n := node.(type) {
41 if f, ok := n.Node.(*ast.File); ok
    [all...]
  /prebuilts/go/darwin-x86/test/bench/garbage/
tree.go 47 type Node struct {
49 left, right *Node
52 func bottomUpTree(item, depth int) *Node {
54 return &Node{item: item}
56 return &Node{item, bottomUpTree(2*item-1, depth-1), bottomUpTree(2*item, depth-1)}
59 func (n *Node) itemCheck() int {
  /prebuilts/go/linux-x86/doc/progs/
gobs1.go 17 type Node struct {
19 Left, Right *Node
  /prebuilts/go/linux-x86/src/go/format/
format.go 22 // Node formats node in canonical gofmt style and writes the result to dst.
24 // The node type must be *ast.File, *printer.CommentedNode, []ast.Decl,
26 // or ast.Stmt. Node does not modify node. Imports are not sorted for
27 // nodes representing partial source files (for instance, if the node is
33 func Node(dst io.Writer, fset *token.FileSet, node interface{}) error {
37 switch n := node.(type) {
41 if f, ok := n.Node.(*ast.File); ok
    [all...]
  /prebuilts/go/linux-x86/test/bench/garbage/
tree.go 47 type Node struct {
49 left, right *Node
52 func bottomUpTree(item, depth int) *Node {
54 return &Node{item: item}
56 return &Node{item, bottomUpTree(2*item-1, depth-1), bottomUpTree(2*item, depth-1)}
59 func (n *Node) itemCheck() int {
  /external/clang/test/CodeGenCXX/
constructor-template.cpp 28 template <typename T> class Node {
31 Node(){ } // Node<BinomialNode<int>*>::Node() remains undefined.
32 ~Node() {}
36 template<typename T> class BinomialNode : Node<BinomialNode<T>*> {
44 BinomialNode<int> *node = new BinomialNode<int>(1); local
45 delete node;
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/ArmVirtPL031FdtClientLib/
ArmVirtPL031FdtClientLib.c 33 INT32 Node;
43 Status = FdtClient->FindCompatibleNode (FdtClient, "arm,pl031", &Node);
45 DEBUG ((EFI_D_WARN, "%a: No 'arm,pl031' compatible DT node found\n",
50 Status = FdtClient->GetNodeProperty (FdtClient, Node, "reg",
54 "%a: No 'reg' property found in 'arm,pl031' compatible DT node\n",
76 Status = FdtClient->SetNodeProperty (FdtClient, Node, "status",
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciDriverOverride.c 80 PCI_DRIVER_OVERRIDE_LIST *Node;
88 Node = DRIVER_OVERRIDE_FROM_LINK (CurrentLink);
92 *DriverImageHandle = Node->DriverImageHandle;
96 if (*DriverImageHandle == Node->DriverImageHandle) {
104 // Get next node
106 Node = DRIVER_OVERRIDE_FROM_LINK (CurrentLink->ForwardLink);
107 *DriverImageHandle = Node->DriverImageHandle;
140 PCI_DRIVER_OVERRIDE_LIST *Node;
147 Node = AllocatePool (sizeof (PCI_DRIVER_OVERRIDE_LIST));
148 if (Node == NULL) {
    [all...]

Completed in 488 milliseconds

1 2 3 4 5 6 7 8 91011>>