HomeSort by relevance Sort by last modified time
    Searched refs:Deps (Results 51 - 75 of 81) sorted by null

1 23 4

  /build/kati/
depgraph.go 55 for _, d := range n.Deps {
ninja.go 407 var deps []string
409 for _, d := range node.Deps {
414 deps = append(deps, t)
426 return strings.Join(deps, " "), strings.Join(orderOnlys, " ")
486 if len(node.Cmds) == 0 && len(node.Deps) == 0 && len(node.OrderOnlys) == 0 && !node.IsPhony {
529 fmt.Fprintf(n.f, " deps = gcc\n")
556 for _, d := range node.Deps {
  /build/soong/android/
module.go 37 Deps blueprint.Deps
86 InstallFile(installPath OutputPath, srcPath Path, deps ...Path) OutputPath
87 InstallFileName(installPath OutputPath, name string, srcPath Path, deps ...Path) OutputPath
91 AddMissingDependencies(deps []string)
437 deps := []string{}
447 deps = append(deps, name)
459 deps = append(deps, name
    [all...]
  /build/soong/cc/
builder.go 45 Deps: blueprint.DepsGCC,
109 Deps: blueprint.DepsGCC,
125 Deps: blueprint.DepsGCC,
136 Deps: blueprint.DepsGCC,
267 flags builderFlags, deps android.Paths) Objects {
339 OrderOnly: deps,
406 OrderOnly: deps,
461 flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) {
464 transformDarwinObjToStaticLib(ctx, objFiles, flags, outputFile, deps)
479 Implicits: deps,
    [all...]
gen.go 54 Deps: blueprint.DepsGCC,
106 var deps android.Paths
115 deps = append(deps, genYacc(ctx, srcFile, cFile, buildFlags.yaccFlags))
119 deps = append(deps, genYacc(ctx, srcFile, cppFile, buildFlags.yaccFlags))
131 deps = append(deps, headerFile)
135 deps = append(deps, genAidl(ctx, srcFile, cppFile, buildFlags.aidlFlags)...
    [all...]
binary.go 106 func (binary *binaryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
107 deps = binary.baseLinker.linkerDeps(ctx, deps)
112 deps.CrtBegin = "crtbegin_static"
114 deps.CrtBegin = "crtbegin_dynamic"
116 deps.CrtEnd = "crtend_android"
128 deps.CrtBegin = "ndk_crtbegin_static." + version
131 deps.CrtBegin = "ndk_crtbegin_static." + versio
    [all...]
linker.go 128 func (linker *baseLinker) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
129 deps.WholeStaticLibs = append(deps.WholeStaticLibs, linker.Properties.Whole_static_libs...)
130 deps.HeaderLibs = append(deps.HeaderLibs, linker.Properties.Header_libs...)
131 deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Static_libs...)
132 deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Shared_libs...
    [all...]
sanitize.go 258 func (sanitize *sanitize) deps(ctx BaseModuleContext, deps Deps) Deps { func
260 return deps
265 deps.StaticLibs = append(deps.StaticLibs, asanLibs...)
269 return deps
compiler.go 155 deps android.Paths
184 func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
185 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
186 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
191 deps = protoDeps(ctx, deps, &compiler.Proto
    [all...]
library.go 176 func (f *flagExporter) reexportDeps(deps android.Paths) {
177 f.flagsDeps = append(f.flagsDeps, deps...)
340 func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
363 total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + len(library.Properties.Shared.Srcs) +
369 objs := library.baseCompiler.compile(ctx, flags, deps)
376 srcs, library.baseCompiler.deps))
380 srcs, library.baseCompiler.deps))
429 func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
    [all...]
  /external/clang/soong/
tblgen.go 38 Deps: blueprint.DepsGCC,
  /external/llvm/soong/
tblgen.go 38 Deps: blueprint.DepsGCC,
  /external/llvm/lib/CodeGen/
MachinePipeliner.cpp 123 SwpPruneDeps("pipeliner-prune-deps",
    [all...]
MachineScheduler.cpp     [all...]
  /build/soong/genrule/
genrule.go 93 deps android.Paths
153 g.deps = append(g.deps, p.Path())
169 g.deps = append(g.deps, toolPath)
236 ruleParams.Deps = blueprint.DepsGCC
258 Implicits: g.deps,
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
link.go 170 Deps []string
lib.go 1148 for _, dep := range shlib.Deps {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
link.go 170 Deps []string
lib.go 1148 for _, dep := range shlib.Deps {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
pkg.go 73 Deps []string `json:",omitempty"` // all (recursively) imported dependencies
90 deps []*Package
    [all...]
test.go 459 deps := make(map[string]bool)
461 deps[dep] = true
467 deps[path] = true
470 deps[path] = true
473 deps[path] = true
478 if deps["C"] {
479 delete(deps, "C")
480 deps["runtime/cgo"] = true
482 deps["cmd/cgo"] = true
486 delete(deps, "unsafe"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
pkg.go 73 Deps []string `json:",omitempty"` // all (recursively) imported dependencies
90 deps []*Package
    [all...]
test.go 459 deps := make(map[string]bool)
461 deps[dep] = true
467 deps[path] = true
470 deps[path] = true
473 deps[path] = true
478 if deps["C"] {
479 delete(deps, "C")
480 deps["runtime/cgo"] = true
482 deps["cmd/cgo"] = true
486 delete(deps, "unsafe"
    [all...]
  /external/abi-compliance-checker/
abi-compliance-checker.pl     [all...]
  /toolchain/binutils/binutils-2.25/gold/
dynobj.cc     [all...]

Completed in 4387 milliseconds

1 23 4