/build/soong/ui/build/ |
D | config.go | 108 if outDir, ok := ret.environ.Get("OUT_DIR"); ok { 112 if baseDir, ok := ret.environ.Get("OUT_DIR_COMMON_BASE"); ok { 122 if distDir, ok := ret.environ.Get("DIST_DIR"); ok { 227 if override, ok := ret.environ.Get("OVERRIDE_ANDROID_JAVA_HOME"); ok { 230 …if toolchain11, ok := ret.environ.Get("EXPERIMENTAL_USE_OPENJDK11_TOOLCHAIN"); ok && toolchain11 !… 240 if path, ok := ret.environ.Get("PATH"); ok && path != "" { 254 if buildDateTime, ok := ret.environ.Get("BUILD_DATETIME"); ok && buildDateTime != "" { 557 if lc_all, ok := c.environ.Get("LC_ALL"); ok { 559 } else if lc_messages, ok := c.environ.Get("LC_MESSAGES"); ok { 561 } else if lang, ok := c.environ.Get("LANG"); ok { [all …]
|
D | environment.go | 39 func (e *Environment) Get(key string) (string, bool) { func 51 if v, ok := e.Get(key); ok { 117 if value, ok := e.Get(key); ok { 125 if value, ok := e.Get(key); ok {
|
D | goma.go | 66 if gomaDir, ok := config.Environment().Get("GOMA_DIR"); ok { 68 } else if home, ok := config.Environment().Get("HOME"); ok {
|
D | ninja.go | 74 if extra, ok := cmd.Environment.Get("NINJA_ARGS"); ok { 77 if extra, ok := cmd.Environment.Get("NINJA_EXTRA_ARGS"); ok { 83 if overrideText, ok := cmd.Environment.Get("NINJA_HEARTBEAT_INTERVAL"); ok {
|
D | path.go | 68 origPath, _ := config.Environment().Get("PATH") 71 tmpDir, _ = config.Environment().Get("TMPDIR") 114 origPath, _ := config.Environment().Get("PATH")
|
D | rbe.go | 40 if rbeDir, ok := config.Environment().Get("RBE_DIR"); ok { 42 } else if home, ok := config.Environment().Get("HOME"); ok {
|
D | kati.go | 107 if _, ok := cmd.Environment.Get("BUILD_USERNAME"); !ok { 117 if _, ok := cmd.Environment.Get("BUILD_HOSTNAME"); !ok { 208 if v, ok := config.Environment().Get("SANITIZE_TARGET"); ok {
|
D | sandbox_darwin.go | 51 homeDir, _ := c.Environment.Get("HOME")
|
D | sandbox_linux.go | 210 } else if dlv, _ := c.config.Environment().Get("SOONG_DELVE"); dlv != "" { 223 if _, hasUser := env.Get("USER"); hasUser {
|
D | cleanbuild.go | 170 if disable, _ := config.Environment().Get("DISABLE_AUTO_INSTALLCLEAN"); disable == "true" {
|
/build/soong/androidmk/parser/ |
D | scope.go | 22 Get(name string) string methodSpec 34 func (s *scope) Get(name string) string { func 38 return s.parent.Get(name) 109 return scope.Get(v.Name.Value(scope))
|
/build/soong/android/ |
D | onceper_test.go | 58 b := once.Get(key).(string) 65 t.Errorf(`Get with the same key should return "a": %q`, b) 81 once.Get(key) 92 a := once.Get(key).(string)
|
D | metrics.go | 34 return config.Get(soongMetricsOnceKey).(SoongMetrics)
|
D | config_test.go | 29 jsonTag := field.Tag.Get("json")
|
D | onceper.go | 73 func (once *OncePer) Get(key OnceKey) interface{} { func
|
/build/make/tools/releasetools/ |
D | check_target_files_signatures | 132 def Get(self, cert_digest): member in CertDB 368 print(" ", ALL_CERTS.Get(digest)) 381 name = ALL_CERTS.Get(digest) 401 print("%s:" % (ALL_CERTS.Get(digest),)) 445 print("was", ALL_CERTS.Get(o)) 447 print(" ", ALL_CERTS.Get(o)) 450 print("now", ALL_CERTS.Get(n)) 452 print(" ", ALL_CERTS.Get(n))
|
D | check_target_files_signatures.py | 132 def Get(self, cert_digest): member in CertDB 368 print(" ", ALL_CERTS.Get(digest)) 381 name = ALL_CERTS.Get(digest) 401 print("%s:" % (ALL_CERTS.Get(digest),)) 445 print("was", ALL_CERTS.Get(o)) 447 print(" ", ALL_CERTS.Get(o)) 450 print("now", ALL_CERTS.Get(n)) 452 print(" ", ALL_CERTS.Get(n))
|
D | check_partition_sizes.py | 83 def Get(info_dict): member in DeviceType 100 def Get(info_dict): member in Dap 163 slot = DeviceType.Get(self.info_dict) 164 dap = Dap.Get(self.info_dict)
|
/build/soong/third_party/zip/ |
D | register.go | 32 fw, ok := flateWriterPool.Get().(*flate.Writer) 70 fr, ok := flateReaderPool.Get().(io.ReadCloser)
|
/build/blueprint/bootstrap/bpglob/ |
D | bpglob.go | 52 func (m *multiArg) Get() interface{} { func
|
/build/blueprint/proptools/ |
D | tag.go | 25 tag := field.Tag.Get(name)
|
/build/make/tools/droiddoc/templates-ndk/ |
D | docpage.cs | 54 >Get started</a> 162 >Get started</a>
|
/build/soong/java/ |
D | android_resources.go | 72 overlayData := ctx.Config().Get(overlayDataKey).([]overlayGlobResult)
|
/build/make/tools/droiddoc/templates-pdk/ |
D | docpage.cs | 30 Get started
|
/build/blueprint/parser/ |
D | parser.go | 225 if old, local := p.scope.Get(assignment.Name); old == nil { 479 if assignment, local := p.scope.Get(text); assignment == nil { 632 func (s *Scope) Get(name string) (*Assignment, bool) { func
|