/build/soong/androidmk/parser/ |
D | ast.go | 34 func (x *Assignment) Dump() string { 36 if x.Target != nil { 37 target = x.Target.Dump() + ": " 39 return target + x.Name.Dump() + " " + x.Type + " " + x.Value.Dump() 42 func (x *Assignment) Pos() Pos { 43 if x.Target != nil { 44 return x.Target.Pos() 46 return x.Name.Pos() 49 func (x *Assignment) End() Pos { return x.Value.End() } 56 func (x *Comment) Dump() string { [all …]
|
/build/blueprint/parser/ |
D | ast.go | 196 func (x *Operator) Copy() Expression { 197 ret := *x 198 ret.Args[0] = x.Args[0].Copy() 199 ret.Args[1] = x.Args[1].Copy() 203 func (x *Operator) Eval() Expression { 204 return x.Value.Eval() 207 func (x *Operator) Type() Type { 208 return x.Args[0].Type() 211 func (x *Operator) Pos() scanner.Position { return x.Args[0].Pos() } 212 func (x *Operator) End() scanner.Position { return x.Args[1].End() } [all …]
|
/build/make/common/ |
D | math.mk | 200 _INT_LIMIT_WORDS := $(foreach a,x x,$(foreach b,x x x x x x x x x x x x x x x x,\ 201 $(foreach c,x x x x x x x x x x x x x x x x,x x x x x x x x x x x x x x x x))) 204 $(if $(filter $(words x $(_INT_LIMIT_WORDS)),$(words $(wordlist 1,$(1),x $(_INT_LIMIT_WORDS)))),\ 213 $(subst xx,x,$(join $(1),$(2)))
|
/build/soong/makedeps/ |
D | deps.go | 48 switch x := node.(type) { 52 if x.Recipe != "" { 53 return nil, fmt.Errorf("%sunexpected recipe in rule: %v", pos(node), x) 56 if !x.Target.Const() { 57 return nil, fmt.Errorf("%sunsupported variable expansion: %v", pos(node), x.Target.Dump()) 59 outputs := x.Target.Words() 67 if !x.Prerequisites.Const() { 68 … return nil, fmt.Errorf("%sunsupported variable expansion: %v", pos(node), x.Prerequisites.Dump()) 70 for _, input := range x.Prerequisites.Words() {
|
/build/soong/android/ |
D | hooks.go | 145 func (x *installHookContext) SrcPath() Path { 146 return x.srcPath 149 func (x *installHookContext) Path() InstallPath { 150 return x.path 153 func (x *installHookContext) Symlink() bool { 154 return x.symlink 157 func (x *hooks) runInstallHooks(ctx ModuleContext, srcPath Path, path InstallPath, symlink bool) { 158 if len(x.install) > 0 { 165 for _, x := range x.install { 166 x(mctx)
|
D | mutator.go | 429 func (x *registerMutatorsContext) BottomUp(name string, m BottomUpMutator) MutatorHandle { 430 finalPhase := x.finalPhase 431 bazelConversionMode := x.bazelConversionMode 437 mutator := &mutator{name: x.mutatorName(name), bottomUpMutator: f} 438 x.mutators = append(x.mutators, mutator) 442 func (x *registerMutatorsContext) BottomUpBlueprint(name string, m blueprint.BottomUpMutator) Mutat… 444 x.mutators = append(x.mutators, mutator) 448 func (x *registerMutatorsContext) mutatorName(name string) string { 449 if x.bazelConversionMode { 455 func (x *registerMutatorsContext) TopDown(name string, m TopDownMutator) MutatorHandle { [all …]
|
/build/make/tools/rbcrun/ |
D | go.sum | 32 golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8… 33 golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQT… 34 golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/… 35 golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMC… 36 golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRz… 37 golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0B… 38 golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0B… 39 golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0B… 40 golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJ… 41 golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6y… [all …]
|
/build/soong/androidmk/androidmk/ |
D | androidmk.go | 154 switch x := node.(type) { 158 chunks := strings.Split(x.Comment, "\\\n") 165 handleAssignment(file, x, assignmentCond) 167 switch x.Name { 169 module, ok := mapIncludePath(x.Args.Value(file.scope)) 171 file.errorf(x, "unsupported include") 181 handleModuleConditionals(file, x, conds) 185 args := x.Args.Dump() 186 eq := x.Name == "ifeq" || x.Name == "ifdef" 194 file.errorf(x, "unsupported nested conditional in module") [all …]
|
/build/soong/java/ |
D | builder.go | 598 func (x *classpath) formJoinedClassPath(optName string, sep string) string { 602 if len(*x) > 0 { 603 return optName + strings.Join(x.Strings(), sep) 608 func (x *classpath) FormJavaClassPath(optName string) string { 609 return x.formJoinedClassPath(optName, ":") 612 func (x *classpath) FormTurbineClassPath(optName string) string { 613 return x.formJoinedClassPath(optName, " ") 617 func (x *classpath) FormRepeatedClassPath(optName string) []string { 618 if x == nil || *x == nil { 621 flags := make([]string, len(*x)) [all …]
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | carousel.js | 31 for (var x in droidList) { 33 currentDroid = x; 34 showPreview(x); 35 centerSlide(x); 61 for (var x in droidList) { 62 var droid = droidList[x]; 71 a.setAttribute("id", "droidlink-" + x); 72 a.className = x; 91 div.setAttribute("id", x); 158 for (var x in slideCode) {
|
D | prettify.js | 15 …x;if(e+2<p&&Sb===f[e+1]){x=l(f[e+2]);e+=2}else x=u;k.push([u,x]);if(!(x<65||u>122)){x<65||u>90||k.… 17 …>=2&&u===L)f[e]=q(p);else if(u!==Q)f[e]=p.replace(/[a-zA-Z]/g,function(x){var B=x.charCodeAt(0);re… argument 22 …x=v;v+=k.length;if(p){var B=e[1],E=k.indexOf(B),A=E+B.length,D=h.substring(5);ia(n+x,k.substring(0…
|
/build/soong/scripts/ |
D | manifest_check.py | 158 required = [uses_library_name(x) for x in libs if uses_library_required(x)] 159 optional = [uses_library_name(x) for x in libs if not uses_library_required(x)] 174 [result.append(x) for x in l if x not in result]
|
D | gen_ndk_backedby_apex.sh | 36 for x in "$@"; do 37 if [ "$x" = "$val" ]; then
|
/build/make/tools/ |
D | compare_fileslist.py | 40 lines = map(lambda (x,y): (y,int(x)), lines) 55 rows = sorted(rows, key=lambda x: x[0])
|
D | compare_builds.py | 396 first_filelist = sorted([x for x in first_files], key=lambda x: x[1]) 397 second_filelist = sorted([x for x in second_files], key=lambda x: x[1]) 464 return [x[0] for x in sorted([(item, GetFileTimestamp(key(item))) for item in items], 487 result += [os.path.sep.join((root, x, "")) for x in dirs] 488 result += [os.path.sep.join((root, x)) for x in files]
|
D | soong_to_convert.py | 104 return [x for x in results if x[2] == module_type]
|
D | merge-event-log-tags.py | 168 x = (hashname(name) % (ASSIGN_LIMIT - ASSIGN_START - 1)) + ASSIGN_START variable 169 if x not in by_tagnum: 170 t.tagnum = x 171 by_tagnum[x] = t
|
D | java-layers.py | 89 dep.transitive = set([x+"." for x in dep.transitive]) 112 x = compare_parts(parts, pkg) 113 if x > matched: 114 matched = x 127 lines = [lineno(x,n) for x in lines]
|
/build/soong/dexpreopt/dexpreopt_gen/ |
D | dexpreopt_gen.go | 52 func (x *builderContext) Config() android.Config { return x.config } 53 func (x *builderContext) AddNinjaFileDeps(...string) {} 54 func (x *builderContext) Build(android.PackageContext, android.BuildParams) {} 55 func (x *builderContext) Rule(android.PackageContext, string, blueprint.RuleParams, ...string) blue… 132 switch x := r.(type) { 134 panic(x) 139 panic(x)
|
/build/blueprint/proptools/ |
D | filter.go | 30 func (x cantFitPanic) Error() string { 32 x.field.Name, x.field.Type.String(), strconv.Quote(string(x.field.Tag)), 33 fieldToTypeNameSize(x.field, true)+2, x.size)
|
/build/soong/ui/metrics/metrics_proto/ |
D | metrics.pb.go | 43 func (x MetricsBase_BuildVariant) Enum() *MetricsBase_BuildVariant { 45 *p = x 49 func (x MetricsBase_BuildVariant) String() string { 50 return proto.EnumName(MetricsBase_BuildVariant_name, int32(x)) 53 func (x *MetricsBase_BuildVariant) UnmarshalJSON(data []byte) error { 58 *x = MetricsBase_BuildVariant(value) 92 func (x MetricsBase_Arch) Enum() *MetricsBase_Arch { 94 *p = x 98 func (x MetricsBase_Arch) String() string { 99 return proto.EnumName(MetricsBase_Arch_name, int32(x)) [all …]
|
/build/soong/ui/status/ |
D | critical_path.go | 75 if x := cp.nodes[input]; x != nil { 76 if criticalPathInput == nil || x.cumulativeDuration > criticalPathInput.cumulativeDuration { 77 criticalPathInput = x
|
/build/make/core/ |
D | product_config.rbc | 165 for x in config_postfix: 166 print(" ", x) 282 return [prefix + x for x in __words(string_or_list)] 295 return [x + suffix for x in __words(string_or_list)] 444 for x in getattr(rblf_cli, "RBC_OUT", "").split(","): 445 if x == "sort" or x == "unique": 448 settings["rearrange"] = x 449 elif x == "pretty" or x == "make": 450 settings["format"] = x 451 elif x == "global": [all …]
|
/build/soong/cmd/extract_apks/bundle_proto/ |
D | commands.pb.go | 46 func (x DeliveryType) String() string { 47 return proto.EnumName(DeliveryType_name, int32(x)) 81 func (x SystemApkMetadata_SystemApkType) String() string { 82 return proto.EnumName(SystemApkMetadata_SystemApkType_name, int32(x)) 653 if x, ok := m.GetApkMetadataOneofValue().(*ApkDescription_SplitApkMetadata); ok { 654 return x.SplitApkMetadata 660 if x, ok := m.GetApkMetadataOneofValue().(*ApkDescription_StandaloneApkMetadata); ok { 661 return x.StandaloneApkMetadata 667 if x, ok := m.GetApkMetadataOneofValue().(*ApkDescription_InstantApkMetadata); ok { 668 return x.InstantApkMetadata [all …]
|
/build/bazel/ |
D | bazel.sh | 77 x/*) 81 x*)
|