Home
last modified time | relevance | path

Searched refs:foundName (Results 1 – 4 of 4) sorted by relevance

/aosp12/build/soong/ui/build/
H A Dfinder.go104 for _, foundName := range entries.FileNames {
105 …if foundName == "BUILD.bazel" || foundName == "WORKSPACE" || strings.HasSuffix(foundName, ".bzl") {
106 matches = append(matches, foundName)
/aosp12/build/soong/finder/
H A Dfinder.go246 for _, foundName := range entries.FileNames {
247 if foundName == fileName {
248 matches = append(matches, foundName)
268 for _, foundName := range entries.FileNames {
269 if foundName == fileName {
270 matches = append(matches, foundName)
H A Dfinder_test.go135 for _, foundName := range entries.FileNames {
136 if foundName == "findme.txt" || strings.HasSuffix(foundName, ".findme_ext") {
137 matches = append(matches, foundName)
/aosp12/system/tools/aidl/tests/
H A Daidl_test_service.cpp425 String16 foundName; in VerifyName() local
426 Status status = service->GetName(&foundName); in VerifyName()
429 *returned_value = foundName == name; in VerifyName()