/build/soong/genrule/ |
D | genrule.go | 134 func (g *Module) GeneratedSourceFiles() android.Paths { 135 return g.outputFiles 138 func (g *Module) Srcs() android.Paths { 139 return append(android.Paths{}, g.outputFiles...) 142 func (g *Module) GeneratedHeaderDirs() android.Paths { 143 return g.exportedIncludeDirs 146 func (g *Module) GeneratedDeps() android.Paths { 147 return g.outputDeps 150 func (g *Module) DepsMutator(ctx android.BottomUpMutatorContext) { 151 if g, ok := ctx.Module().(*Module); ok { [all …]
|
/build/blueprint/ |
D | glob.go | 34 func verifyGlob(fileName, pattern string, excludes []string, g GlobPath) { 35 if pattern != g.Pattern { 36 panic(fmt.Errorf("Mismatched patterns %q and %q for glob file %q", pattern, g.Pattern, fileName)) 38 if len(excludes) != len(g.Excludes) { 39 …panic(fmt.Errorf("Mismatched excludes %v and %v for glob file %q", excludes, g.Excludes, fileName)) 43 if g.Excludes[i] != excludes[i] { 44 …panic(fmt.Errorf("Mismatched excludes %v and %v for glob file %q", excludes, g.Excludes, fileName)) 54 g, exists := c.globs[fileName] 59 verifyGlob(fileName, pattern, excludes, g) 60 return g.Files, nil [all …]
|
/build/blueprint/bootstrap/ |
D | bootstrap.go | 268 func (g *goPackage) DynamicDependencies(ctx blueprint.DynamicDependerModuleContext) []string { 269 return g.properties.Deps 272 func (g *goPackage) GoPkgPath() string { 273 return g.properties.PkgPath 276 func (g *goPackage) GoPkgRoot() string { 277 return g.pkgRoot 280 func (g *goPackage) GoPackageTarget() string { 281 return g.archiveFile 284 func (g *goPackage) GoTestTargets() []string { 285 return g.testResultFile [all …]
|
D | glob.go | 127 for _, g := range s.globLister() { 128 fileListFile := filepath.Join(BuildDir, ".glob", g.Name) 133 fileList := strings.Join(g.Files, "\n") + "\n" 135 deptools.WriteDepFile(depFile, fileListFile, g.Deps) 137 GlobFile(ctx, g.Pattern, g.Excludes, fileListFile, depFile)
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | android-developer-docs.css | 1357 .g-tpl-240 .g-unit, 1358 .g-unit .g-tpl-240 .g-unit, 1359 .g-unit .g-unit .g-tpl-240 .g-unit { 1365 .g-unit .g-unit .g-tpl-240 .g-first, 1366 .g-unit .g-tpl-240 .g-first, 1367 .g-tpl-240 .g-first { 1374 .g-tpl-240-alt .g-unit, 1375 .g-unit .g-tpl-240-alt .g-unit, 1376 .g-unit .g-unit .g-tpl-240-alt .g-unit { 1382 .g-unit .g-unit .g-tpl-240-alt .g-first, [all …]
|
D | jquery-1.6.2.min.js | 16 …g,h,i=d.length,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=="strin… argument 17 …g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=th… property
|
D | prettify.js | 12 …f(va,b);if(c>=0){var d=a.substring(b+3,c),g=10;if(d&&d.charAt(0)===ub){d=d.substring(1);g=16}var i… 13 …g=a.attributes[d];if(g.specified){b.push(xb);W(g,b)}}b.push(J);for(var i=a.firstChild;i;i=i.nextSi… 17 …ing.fromCharCode(B&-33,B|32)+Tb})}return f.join(P)}var w=[];g=0;for(i=a.length;g<i;++g){m=a[g];if(… 18 …g=a.firstChild;g;g=g.nextSibling)W(g,d);return d.join(P)}function Ud(a){var b=0;return function(c)… 19 …g=i+1;break;case jc:b=0;break;default:++b}}if(!d)return c;d.push(c.substring(g));return d.join(P)}… 20 …g.push(d,b.slice(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);… variable 21 …g=b.length,i=function(m){for(var l=m.source,n=m.b,q=[n,S],v=0,w=l.match(d)||[],j={},f=0,s=w.length…
|
D | jquery-resizable.min.js | 12 …g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>… 19 …g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase… 29 …g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=… function 40 …g=c('<div class="ui-resizable-handle '+d+'"></div>');if(/sw|se|ne|nw/.test(h)){g.css({zIndex:++j.z… argument
|
/build/kati/ |
D | serialize.go | 275 func makeSerializableGraph(g *DepGraph, roots []string) (serializableGraph, error) { 277 ns.serializeDepNodes(g.nodes) 278 v := makeSerializableVars(g.vars) 285 AccessedMks: g.accessedMks, 286 Exports: g.exports, 290 func (jsonLoadSaver) Save(g *DepGraph, filename string, roots []string) error { 292 sg, err := makeSerializableGraph(g, roots) 317 func (gobLoadSaver) Save(g *DepGraph, filename string, roots []string) error { 327 sg, err = makeSerializableGraph(g, roots) 357 func saveCache(g *DepGraph, roots []string) error { [all …]
|
D | depgraph.go | 37 func (g *DepGraph) Nodes() []*DepNode { return g.nodes } 40 func (g *DepGraph) Vars() Vars { return g.vars } 42 func (g *DepGraph) resolveVPATH() { 50 glog.V(3).Infof("vpath check %s [%#v]", n.Output, g.vpaths) 51 if output, ok := g.vpaths.exists(n.Output); ok { 66 for _, n := range g.nodes { 130 g, err := loadCache(req.Makefile, req.Targets) 132 return g, nil
|
D | query.go | 77 func Query(w io.Writer, q string, g *DepGraph) { 79 for _, mk := range g.accessedMks { 86 for k, v := range g.vars { 93 for _, n := range g.nodes { 98 handleNodeQuery(w, q, g.nodes)
|
D | exec.go | 155 func (ex *Executor) Exec(g *DepGraph, targets []string) error { 156 ex.ctx = newExecContext(g.vars, g.vpaths, false) 159 for name, export := range g.exports { 174 if len(g.nodes) > 0 { 175 nodes = append(nodes, g.nodes[0]) 179 for _, n := range g.nodes {
|
D | ninja_test.go | 80 in: `g++ -c fat.cc -o fat.o`, 83 in: `g++ -c fat.cc -MD`, 87 in: `g++ -c fat.cc -MD -o fat.o -o fat.o`, 91 in: `g++ -c fat.cc -MD -o fat.o`, 92 cmd: `g++ -c fat.cc -MD -o fat.o && cp fat.d fat.d.tmp`, 96 in: `g++ -c fat.cc -MD -o fat`, 97 cmd: `g++ -c fat.cc -MD -o fat && cp fat.d fat.d.tmp`, 101 in: `g++ -c fat.cc -MD -MF foo.d -o fat.o`, 102 cmd: `g++ -c fat.cc -MD -MF foo.d -o fat.o && cp foo.d foo.d.tmp`, 106 in: `g++ -c fat.cc -MD -o fat.o -MF foo.d`, [all …]
|
/build/make/tools/droiddoc/templates-ndk/assets/ |
D | android-developer-docs.css | 2549 .g-tpl-240 .g-unit, 2550 .g-unit .g-tpl-240 .g-unit, 2551 .g-unit .g-unit .g-tpl-240 .g-unit { 2557 .g-unit .g-unit .g-tpl-240 .g-first, 2558 .g-unit .g-tpl-240 .g-first, 2559 .g-tpl-240 .g-first { 2566 .g-tpl-240-alt .g-unit, 2567 .g-unit .g-tpl-240-alt .g-unit, 2568 .g-unit .g-unit .g-tpl-240-alt .g-unit { 2574 .g-unit .g-unit .g-tpl-240-alt .g-first, [all …]
|
/build/make/tools/droiddoc/templates-ndk/assets/js/ |
D | prettify.js | 5 …}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.te… variable 6 …g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|")… 7 …a,m){function e(a){for(var l=a.d,p=[l,"pln"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){v… 9 l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=…
|
D | android_3p-bundle.js | 557 /[a-zA-Z]/g, 2478 …g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName… argument 2617 …g(){var s=aA(),aI=aC();D.removeClass("jspScrollable").unbind(".jsp");D.replaceWith(ao.append(Y.chi… function 2633 …g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(… 2646 …g=f.name,h;return!b.href||!g||f.nodeName.toLowerCase()!=="map"?!1:(h=a("img[usemap=#"+g+"]")[0],!!… argument 2650 …g=new c;g.options=a.extend(!0,{},g.options),a[e][b].prototype=a.extend(!0,g,{namespace:e,widgetNam… 2658 …g=a.fn.position,h=a.fn.offset;a.fn.position=function(b){if(!b||!b.of)return g.apply(this,arguments… variable 2662 …g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent… 2666 …g=(b.positionAbs||b.position.absolute).top,h=g+b.helperProportions.height,i=c.offset.left,j=i+c.pr… 2670 …g="ui-resizable-"+f,h=a('<div class="ui-resizable-handle '+g+'"></div>');h.css({zIndex:c.zIndex}),… [all …]
|
/build/kati/cmd/kati/ |
D | main.go | 131 g, err := kati.GOB.Load(loadGOB) 132 return g, err 135 g, err := kati.JSON.Load(loadJSON) 136 return g, err 138 g, err := kati.Load(req) 139 return g, err 142 func save(g *kati.DepGraph, targets []string) error { 145 err = kati.GOB.Save(g, saveGOB, targets) 148 serr := kati.JSON.Save(g, saveJSON, targets) 276 g, err := load(req) [all …]
|
/build/soong/android/ |
D | rule_builder_test.go | 299 if g, w := rule.Commands(), wantCommands; !reflect.DeepEqual(g, w) { 300 t.Errorf("\nwant rule.Commands() = %#v\n got %#v", w, g) 303 if g, w := rule.depFileMergerCmd(ctx, rule.DepFiles()).String(), wantDepMergerCommand; g != w { 304 t.Errorf("\nwant rule.depFileMergerCmd() = %#v\n got %#v", w, g) 307 if g, w := rule.Inputs(), wantInputs; !reflect.DeepEqual(w, g) { 308 t.Errorf("\nwant rule.Inputs() = %#v\n got %#v", w, g) 310 if g, w := rule.Outputs(), wantOutputs; !reflect.DeepEqual(w, g) { 311 t.Errorf("\nwant rule.Outputs() = %#v\n got %#v", w, g) 313 if g, w := rule.DepFiles(), wantDepFiles; !reflect.DeepEqual(w, g) { 314 t.Errorf("\nwant rule.DepFiles() = %#v\n got %#v", w, g) [all …]
|
D | paths_test.go | 809 if g, w := m.srcs, test.srcs; !reflect.DeepEqual(g, w) { 810 t.Errorf("want srcs %q, got %q", w, g) 813 if g, w := m.rels, test.rels; !reflect.DeepEqual(g, w) { 814 t.Errorf("want rels %q, got %q", w, g) 817 if g, w := m.src, test.src; g != w { 818 t.Errorf("want src %q, got %q", w, g) 821 if g, w := m.rel, test.rel; g != w { 822 t.Errorf("want rel %q, got %q", w, g) 992 if g, w := foo.missingDeps, []string{"a", "b", "c"}; !reflect.DeepEqual(g, w) { 993 t.Errorf("want foo missing deps %q, got %q", w, g) [all …]
|
D | path_properties_test.go | 132 if g, w := m.sourceDeps, test.deps; !reflect.DeepEqual(g, w) { 133 t.Errorf("want deps %q, got %q", w, g)
|
/build/soong/ui/status/ |
D | ninja_test.go | 42 if g, w := time.Since(start), NINJA_READER_CLOSE_TIMEOUT; g >= w { 43 t.Errorf("nr.Close timed out, %s > %s", g, w)
|
/build/kati/testcase/ |
D | eval_assign.mk | 17 g := FAIL 32 $(eval g := $(h)) 33 echo _$(g)_
|
D | target_specific_var_append.mk | 1 all: a b c d e f g h 40 g: G+=$(PASS_G) 41 g:
|
/build/make/tools/docker/ |
D | Dockerfile | 6 …ore gnupg flex bison gperf build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev… 17 RUN groupadd -g $groupid $username \ 18 && useradd -m -u $userid -g $groupid $username \
|
/build/make/tools/ |
D | parsedeps.py | 130 for g in trace: 131 for t in g: 134 for g in trace: 135 for t in g:
|