MCPcopy Create free account
hub / github.com/google/gapid / PushBack

Method PushBack

gapis/api/graph_visualization.go:40–43  ·  view source on GitHub ↗

PushBack adds a level in the back of the current Label.

(name string, id int)

Source from the content-addressed store, hash-verified

38
39// PushBack adds a level in the back of the current Label.
40func (label *Label) PushBack(name string, id int) {
41 label.LevelsName = append(label.LevelsName, name)
42 label.LevelsID = append(label.LevelsID, id)
43}
44
45// PushFront adds a level in the front of the current Label..
46func (label *Label) PushFront(name string, id int) {

Callers 7

makeChunksMethod · 0.95
TestLabelFunction · 0.95
GetCommandLabelMethod · 0.95
GetCommandLabelMethod · 0.95
GetSubCommandLabelMethod · 0.95
getLabelFromHierarchyFunction · 0.95

Calls

no outgoing calls

Tested by 1

TestLabelFunction · 0.76