/build/soong/java/ |
D | java.go | 46 func(j *Library) android.Path { 47 implementationJars := j.ImplementationAndResourcesJars() 49 panic(fmt.Errorf("there must be only one implementation jar from %q", j.Name())) 89 func (j *Module) CheckStableSdkVersion() error { 90 sdkVersion := j.sdkVersion() 97 func (j *Module) checkSdkVersions(ctx android.ModuleContext) { 98 if j.RequiresStableAPIs(ctx) { 114 checkLinkType(ctx, j, module.(linkTypeContext), tag.(dependencyTag)) 120 func (j *Module) checkPlatformAPI(ctx android.ModuleContext) { 122 usePlatformAPI := proptools.Bool(j.deviceProperties.Platform_apis) [all …]
|
D | dex.go | 89 func (j *Module) dexCommonFlags(ctx android.ModuleContext) []string { 90 flags := j.deviceProperties.Dxflags 106 minSdkVersion, err := j.minSdkVersion().effectiveVersion(ctx) 115 func (j *Module) d8Flags(ctx android.ModuleContext, flags javaBuilderFlags) ([]string, android.Path… 116 d8Flags := j.dexCommonFlags(ctx) 128 func (j *Module) r8Flags(ctx android.ModuleContext, flags javaBuilderFlags) (r8Flags []string, r8De… 129 opt := j.deviceProperties.Optimize 143 r8Flags = append(r8Flags, j.dexCommonFlags(ctx)...) 157 if j.shouldInstrumentStatic(ctx) { 162 flagFiles = append(flagFiles, j.extraProguardFlagFiles...) [all …]
|
D | droiddoc.go | 398 func (j *Javadoc) OutputFiles(tag string) (android.Paths, error) { 401 return android.Paths{j.stubsSrcJar}, nil 403 return android.Paths{j.docZip}, nil 431 func (j *Javadoc) sdkVersion() sdkSpec { 432 return sdkSpecFrom(String(j.properties.Sdk_version)) 435 func (j *Javadoc) systemModules() string { 436 return proptools.String(j.properties.System_modules) 439 func (j *Javadoc) minSdkVersion() sdkSpec { 440 return j.sdkVersion() 443 func (j *Javadoc) targetSdkVersion() sdkSpec { [all …]
|
D | jdeps.go | 48 func (j *jdepsGeneratorSingleton) GenerateBuildActions(ctx android.SingletonContext) { 103 j.outputPath = jfpath 112 func (j *jdepsGeneratorSingleton) MakeVars(ctx android.MakeVarsContext) { 113 if j.outputPath == nil { 117 ctx.DistForGoal("general-tests", j.outputPath)
|
D | jacoco.go | 38 `${config.MergeZipsCmd} --ignore-duplicates -j $out $tmpJar $in`, 75 func (j *Module) jacocoModuleToZipCommand(ctx android.ModuleContext) string { 76 includes, err := jacocoFiltersToSpecs(j.properties.Jacoco.Include_filter) 81 …excludes, err := jacocoFiltersToSpecs(append(j.properties.Jacoco.Exclude_filter, config.DefaultJac…
|
/build/blueprint/parser/ |
D | sort.go | 42 var j int 43 for j = i + 1; j < len(list.Values); j++ { 44 if list.Values[j].Pos().Line > line+1 { 47 line = list.Values[j].Pos().Line 51 if j < len(list.Values) { 52 nextPos = list.Values[j].Pos() 54 sortSubList(list.Values[i:j], nextPos, file) 55 i = j - 1 63 var j int 64 for j = i + 1; j < len(list.Values); j++ { [all …]
|
/build/soong/android/ |
D | expand.go | 48 for j := 0; j < len(s); j++ { 49 if s[j] == '$' { 50 if j+1 >= len(s) { 53 buf = append(buf, s[i:j]...) 54 value, ninjaVariable, w, err := getMapping(s[j+1:], mapping) 62 j += w 63 i = j + 1
|
D | depset.go | 179 for i, j := 0, len(list)-1; i < j; i, j = i+1, j-1 { 180 list[i], list[j] = list[j], list[i]
|
D | util.go | 217 for j := 0; j < k; j++ { 218 if list[i] == list[j] { 248 for j := i - 1; j >= totalSkip; j-- { 249 if list[i] == list[j] { 252 list[j+skip] = list[j]
|
/build/soong/cmd/diff_target_files/ |
D | compare.go | 102 j := 0 106 for i < len(a) && j < len(b) { 107 if a[i].Name == b[j].Name { 108 if a[i].UncompressedSize64 != b[j].UncompressedSize64 || a[i].CRC32 != b[j].CRC32 { 109 diff.modified = append(diff.modified, [2]*ZipArtifactFile{a[i], b[j]}) 112 j++ 113 } else if a[i].Name < b[j].Name { 119 diff.onlyInB = append(diff.onlyInB, b[j]) 120 j++ 127 for j < len(b) { [all …]
|
D | allow_list.go | 226 func (j *jsonCommentStripper) Read(buf []byte) (int, error) { 227 for len(j.b) == 0 { 228 if j.err != nil { 229 return 0, j.err 232 j.b, j.err = j.r.ReadBytes('\n') 234 if isComment(j.b) { 235 j.b = nil 239 n := copy(buf, j.b) 240 j.b = j.b[n:]
|
/build/make/tools/droiddoc/templates-ndk/assets/js/ |
D | prettify.js | 3 …j=f[c];if(/\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&"-"===f[c+1]?(d=m(f[c+2]),c+=2):d… 4 …j=f[c];j==="("?++i:"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c… 5 …j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");i… 8 …c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substrin…
|
D | docs.js | 2156 for (var j = s.keywords.length - 1; j >= 0; j--) { 2158 if (s.keywords[j].toLowerCase().match(textRegex)) { 2160 s.matched_tag = j + 1; // add 1 to index position 2190 for (var j = s.keywords.length - 1; j >= 0; j--) { 2192 if (s.keywords[j].toLowerCase().match(textRegex)) { 2194 s.matched_tag = j + 1; // add 1 to index position 2222 for (var j = s.keywords.length - 1; j >= 0; j--) { 2224 if (s.keywords[j].toLowerCase().match(textRegex)) { 2226 s.matched_tag = j + 1; // add 1 to index position 2254 for (var j = s.keywords.length - 1; j >= 0; j--) { [all …]
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | android-developer-resource-browser.js | 27 for (var j = 0; j < keywords.length; j++) { 28 if (!resultMatchesKeyword(loadedResults[i].result, keywords[j])) { 80 for (var j = 0; j < resource.tags.length; j++) 81 resource.tagsHash[resource.tags[j]] = true; 109 var i, j; 139 for (j = 0; j < searchTags.length; j++) 140 if (!(searchTags[j] in resource.tagsHash)) {
|
D | jquery-1.6.2.min.js | 16 …j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowe… field 17 …j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");i…
|
D | prettify.js | 14 …j){if(j.charAt(0)!==Q)return j.charCodeAt(0);switch(j.charAt(1)){case Bb:return 8;case Cb:return 9… argument 15 f===L||f===Tb)f=Q+f;return f}function q(j){for(var f=j.substring(1,j.length-1).match(new RegExp(Ub,… argument 16 …0]&&D.push(Sb);D.push(n(A[1]))}}D.push(Tb);return D.join(P)}function v(j){var f=j.source.match(new… argument 17 …g(1))&&t<=h)f[e]=Q+k[h]}for(h=e=0;e<s;++e)if(M===f[e]&&M!==f[e+1])f[e]=P;if(j.ignoreCase&&c)for(e=… 20 …e(i,v+1).join(P));i=v}else g.push(d,l)}else g.push(d,l)}else{var j=Sd(l);c.push(j);d+=j.length}}re… 21 …j=w[3];if(j)for(var f=j.length;--f>=0;)c[j.charAt(f)]=w;var s=w[1],k=P+s;if(!n.hasOwnProperty(k)){… 22 h.substring(0,5))&&!(e&&e[1])){p=z;h=oc}p||(j[k]=h)}var x=v;v+=k.length;if(p){var B=e[1],E=k.indexO…
|
D | jquery-resizable.min.js | 12 …,function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&pa… function 19 …{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"bord… 29 …j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.p… argument 40 …j=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(j.aspectRatio)… variable
|
D | android-developer-docs.js | 205 var i, j; 210 for (j = 0; j < tags.length; j++) 211 if (tags[j] == tag) { 231 for (j = 0; j < tags.length; j++) { 232 if (tags[j] == 'new') { 235 } else if (tags[j] == 'updated') {
|
/build/soong/env/ |
D | env.go | 86 func (e envFileData) Less(i, j int) bool { 87 return e[i].Key < e[j].Key 90 func (e envFileData) Swap(i, j int) { 91 e[i], e[j] = e[j], e[i]
|
/build/soong/cmd/fileslist/ |
D | fileslist.go | 157 sort.Slice(allOutput, func(i, j int) bool { 158 if allOutput[i].Size > allOutput[j].Size { 161 …if allOutput[i].Size == allOutput[j].Size && strings.Compare(allOutput[i].Name, allOutput[j].Name)… 167 j, err := json.MarshalIndent(allOutput, "", " ") 172 fmt.Printf("%s\n", j)
|
/build/soong/androidmk/parser/ |
D | ast.go | 118 func (s byPosition) Swap(i, j int) { 119 s[i], s[j] = s[j], s[i] 122 func (s byPosition) Less(i, j int) bool { 123 return s[i].Pos() < s[j].Pos()
|
/build/soong/symbol_inject/ |
D | macho.go | 36 sort.SliceStable(symbols, func(i, j int) bool { 37 if symbols[i].Sect != symbols[j].Sect { 38 return symbols[i].Sect < symbols[j].Sect 40 return symbols[i].Value < symbols[j].Value
|
D | pe.go | 42 sort.SliceStable(symbols, func(i, j int) bool { 43 if symbols[i].SectionNumber != symbols[j].SectionNumber { 44 return symbols[i].SectionNumber < symbols[j].SectionNumber 46 return symbols[i].Value < symbols[j].Value
|
/build/soong/scripts/ |
D | jars-to-module-info-java.sh | 29 for j in "$@"; do zipinfo -1 $j ; done \
|
/build/blueprint/bootstrap/bpdoc/ |
D | bpdoc.go | 99 …sort.Slice(pkg.ModuleTypes, func(i, j int) bool { return pkg.ModuleTypes[i].Name < pkg.ModuleTypes… 102 sort.Slice(pkgs, func(i, j int) bool { return pkgs[i].Path < pkgs[j].Path }) 261 for j := range parent.Properties { 262 child := &parent.Properties[j] 272 for j := range parent.Properties { 273 child := parent.Properties[j]
|