Lines Matching refs:label
55 label string member
66 GetOutputFiles(label string, archType ArchType) ([]string, bool)
70 GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error)
130 func (m MockBazelContext) GetOutputFiles(label string, archType ArchType) ([]string, bool) {
131 result, ok := m.LabelToOutputFiles[label]
135 func (m MockBazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error) {
136 result, ok := m.LabelToCcInfo[label]
156 func (bazelCtx *bazelContext) GetOutputFiles(label string, archType ArchType) ([]string, bool) {
157 rawString, ok := bazelCtx.cquery(label, cquery.GetOutputFiles, archType)
166 func (bazelCtx *bazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, erro…
167 result, ok := bazelCtx.cquery(label, cquery.GetCcInfo, archType)
177 func (n noopBazelContext) GetOutputFiles(label string, archType ArchType) ([]string, bool) {
181 func (n noopBazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error) {
185 func (n noopBazelContext) GetPrebuiltCcStaticLibraryFiles(label string, archType ArchType) ([]strin…
273 func (context *bazelContext) cquery(label string, requestType cqueryRequest,
275 key := cqueryKey{label, requestType, archType}
397 …"_allowlist_function_transition": attr.label(default = "@bazel_tools//tools/allowlists/function_tr…
455 labelString := fmt.Sprintf("\"@%s\"", val.label)
536 # Note that it's fine for there to be multiple architectures for the same label,
538 fail("expected exactly 1 platform for " + str(target.label) + " but got " + str(platforms))
548 id_string = str(target.label) + "|" + get_arch(target)
762 return key.label + "|" + getArchString(key)