Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SkipChildren (0.18 sec)

  1. src/debug/dwarf/entry.go

    			r.cu = e
    		}
    	} else {
    		r.lastChildren = false
    	}
    	return e, nil
    }
    
    // SkipChildren skips over the child entries associated with
    // the last [Entry] returned by [Reader.Next]. If that [Entry] did not have
    // children or [Reader.Next] has not been called, SkipChildren is a no-op.
    func (r *Reader) SkipChildren() {
    	if r.err != nil || !r.lastChildren {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf_test.go

    				}
    				if strings.Contains(lne.File.Name, `\`) {
    					t.Errorf("filename should not contain backslash: %v", lne.File.Name)
    				}
    			}
    		}
    		rdr.SkipChildren()
    	}
    }
    
    func TestIssue38192(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	t.Parallel()
    
    	// Build a test program that contains a translation unit whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    			if err != nil {
    				fatalf("malformed __cgo__ name: %s", name)
    			}
    			types[i] = t.Type
    			p.recordTypedefs(t.Type, f.NamePos[names[i]])
    		}
    		if e.Tag != dwarf.TagCompileUnit {
    			r.SkipChildren()
    		}
    	}
    
    	// Record types and typedef information.
    	for i, n := range names {
    		if strings.HasSuffix(n.Go, "GetTypeID") && types[i].String() == "func() CFTypeID" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Reader).AddressSize", Method, 5},
    		{"(*Reader).ByteOrder", Method, 14},
    		{"(*Reader).Next", Method, 0},
    		{"(*Reader).Seek", Method, 0},
    		{"(*Reader).SeekPC", Method, 7},
    		{"(*Reader).SkipChildren", Method, 0},
    		{"(*StructType).Common", Method, 0},
    		{"(*StructType).Defn", Method, 0},
    		{"(*StructType).Size", Method, 0},
    		{"(*StructType).String", Method, 0},
    		{"(*TypedefType).Common", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top