Lines Matching refs:moduleInfo

23 	testModuleA = &moduleInfo{variantName: "testModuleA"}
24 testModuleB = &moduleInfo{variantName: "testModuleB"}
25 testModuleC = &moduleInfo{variantName: "testModuleC"}
26 testModuleD = &moduleInfo{variantName: "testModuleD"}
27 testModuleE = &moduleInfo{variantName: "testModuleE"}
28 testModuleF = &moduleInfo{variantName: "testModuleF"}
32 in []*moduleInfo
34 with []*moduleInfo
35 out []*moduleInfo
41 in: []*moduleInfo{testModuleA, testModuleB, testModuleC},
43 with: []*moduleInfo{testModuleD, testModuleE},
44 out: []*moduleInfo{testModuleD, testModuleE, testModuleB, testModuleC},
50 in: []*moduleInfo{testModuleA, testModuleB, testModuleC},
52 with: []*moduleInfo{testModuleD, testModuleE},
53 out: []*moduleInfo{testModuleA, testModuleD, testModuleE, testModuleC},
59 in: []*moduleInfo{testModuleA, testModuleB, testModuleC},
61 with: []*moduleInfo{testModuleD, testModuleE},
62 out: []*moduleInfo{testModuleA, testModuleB, testModuleD, testModuleE},
68 in: []*moduleInfo{testModuleA},
70 with: []*moduleInfo{testModuleD, testModuleE},
71 out: []*moduleInfo{testModuleD, testModuleE},
77 in: []*moduleInfo{testModuleA, testModuleB, testModuleC, nil}[0:3],
79 with: []*moduleInfo{testModuleD, testModuleE},
80 out: []*moduleInfo{testModuleD, testModuleE, testModuleB, testModuleC},
86 in: []*moduleInfo{testModuleA, testModuleB, testModuleC, nil}[0:3],
88 with: []*moduleInfo{testModuleD, testModuleE},
89 out: []*moduleInfo{testModuleA, testModuleD, testModuleE, testModuleC},
95 in: []*moduleInfo{testModuleA, testModuleB, testModuleC, nil}[0:3],
97 with: []*moduleInfo{testModuleD, testModuleE},
98 out: []*moduleInfo{testModuleA, testModuleB, testModuleD, testModuleE},
104 in: []*moduleInfo{testModuleA, nil}[0:1],
106 with: []*moduleInfo{testModuleD, testModuleE},
107 out: []*moduleInfo{testModuleD, testModuleE},
115 in := make([]*moduleInfo, len(testCase.in), cap(testCase.in))
142 func sameArray(a, b []*moduleInfo) bool { argument