Home | History | Annotate | Download | only in android

Lines Matching refs:Exists

253 // local source directory. If none are provided, use the default if it exists.
511 // pathForSource creates a SourcePath from pathComponents, but does not check that it exists.
538 // existsWithDependencies returns true if the path exists, and adds appropriate dependencies to rerun if the
540 func existsWithDependencies(ctx PathContext, path SourcePath) (exists bool, err error) {
572 exists, err := existsWithDependencies(ctx, path)
576 if !exists {
579 } else if exists, _, err := ctx.Fs().Exists(path.String()); err != nil {
581 } else if !exists {
588 // path exists, or an empty OptionalPath if it doesn't exist. Dependencies are added
597 exists, err := existsWithDependencies(ctx, path)
602 if !exists {
622 // OverlayPath returns the overlay for `path' if it exists. This assumes that the
774 if exists, _, err := ctx.Fs().Exists(path.String()); err != nil {
776 } else if !exists {