Home
last modified time | relevance | path

Searched refs:g (Results 1 – 25 of 51) sorted by relevance

123

/build/soong/genrule/
Dgenrule.go134 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/
Dglob.go34 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/
Dbootstrap.go268 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 …]
Dglob.go127 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/
Dandroid-developer-docs.css1357 .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 …]
Djquery-1.6.2.min.js16g,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
17g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=th… property
Dprettify.js12 …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…
13g=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(…
18g=a.firstChild;g;g=g.nextSibling)W(g,d);return d.join(P)}function Ud(a){var b=0;return function(c)…
19g=i+1;break;case jc:b=0;break;default:++b}}if(!d)return c;d.push(c.substring(g));return d.join(P)}…
20g.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
21g=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…
Djquery-resizable.min.js12g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>…
19g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase…
29g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=… function
40g=c('<div class="ui-resizable-handle '+d+'"></div>');if(/sw|se|ne|nw/.test(h)){g.css({zIndex:++j.z… argument
/build/kati/
Dserialize.go275 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 …]
Ddepgraph.go37 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
Dquery.go77 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)
Dexec.go155 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 {
Dninja_test.go80 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/
Dandroid-developer-docs.css2549 .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/
Dprettify.js5 …}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
6g=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)]=…
Dandroid_3p-bundle.js557 /[a-zA-Z]/g,
2478g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName… argument
2617g(){var s=aA(),aI=aC();D.removeClass("jspScrollable").unbind(".jsp");D.replaceWith(ao.append(Y.chi… function
2633g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(…
2646g=f.name,h;return!b.href||!g||f.nodeName.toLowerCase()!=="map"?!1:(h=a("img[usemap=#"+g+"]")[0],!!… argument
2650g=new c;g.options=a.extend(!0,{},g.options),a[e][b].prototype=a.extend(!0,g,{namespace:e,widgetNam…
2658g=a.fn.position,h=a.fn.offset;a.fn.position=function(b){if(!b||!b.of)return g.apply(this,arguments… variable
2662g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent…
2666g=(b.positionAbs||b.position.absolute).top,h=g+b.helperProportions.height,i=c.offset.left,j=i+c.pr…
2670g="ui-resizable-"+f,h=a('<div class="ui-resizable-handle '+g+'"></div>');h.css({zIndex:c.zIndex}),…
[all …]
/build/kati/cmd/kati/
Dmain.go131 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/
Drule_builder_test.go299 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 …]
Dpaths_test.go809 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 …]
Dpath_properties_test.go132 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/
Dninja_test.go42 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/
Deval_assign.mk17 g := FAIL
32 $(eval g := $(h))
33 echo _$(g)_
Dtarget_specific_var_append.mk1 all: a b c d e f g h
40 g: G+=$(PASS_G)
41 g:
/build/make/tools/docker/
DDockerfile6 …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/
Dparsedeps.py130 for g in trace:
131 for t in g:
134 for g in trace:
135 for t in g:

123