Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 1218) sorted by relevance

12345678910>>...49

/build/soong/cmd/diff_target_files/
Dglob_test.go65 {`a/\*\*/\*`, `a/**/*`, true},
66 {`a/\*\*/\*`, `a/a/*`, false},
67 {`a/\*\*/\*`, `a/**/a`, false},
68 {`a/\*\*/\*`, `a/a/a`, false},
70 {`a/**/\*`, `a/**/*`, true},
71 {`a/**/\*`, `a/a/*`, true},
72 {`a/**/\*`, `a/**/a`, false},
73 {`a/**/\*`, `a/a/a`, false},
75 {`a/\*\*/*`, `a/**/*`, true},
76 {`a/\*\*/*`, `a/a/*`, false},
[all …]
/build/blueprint/parser/
Dsort_test.go21 a string
25 a, b string
46 oneTest := func(a, b string, want bool) {
48 if got := numericStringLess(a, b); got != want {
49 t.Errorf("want numericStringLess(%v, %v) = %v, got %v", a, b, want, got)
54 t.Run(tt.a+"<"+tt.b, func(t *testing.T) {
56 oneTest(tt.a, tt.b, true)
58 oneTest(tt.b, tt.a, false)
60 oneTest(tt.a, tt.a, false)
65 oneTest("a"+tt.a, "a"+tt.b, true)
[all …]
/build/make/tools/droiddoc/templates-pdk/assets/
Djquery-1.6.2.min.js16a,b){function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}functio… argument
17a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.n… argument
18 …,bQ=f.fn.load,bR={},bS={},bT,bU;try{bT=e.href}catch(bV){bT=c.createElement("a"),bT.href="",bT=bT.h… function
/build/soong/android/
Darch_module_context.go49 func (a *archModuleContext) ArchReady() bool {
50 return a.ready
53 func (a *archModuleContext) Target() Target {
54 return a.target
57 func (a *archModuleContext) TargetPrimary() bool {
58 return a.targetPrimary
61 func (a *archModuleContext) MultiTargets() []Target {
62 return a.multiTargets
65 func (a *archModuleContext) Arch() Arch {
66 return a.target.Arch
[all …]
Dandroidmk.go172 func (a *androidMkExtraEntriesContext) Provider(provider blueprint.AnyProviderKey) (any, bool) {
173 return a.ctx.moduleProvider(a.mod, provider)
182 func (a *AndroidMkEntries) SetString(name, value string) {
183 if _, ok := a.EntryMap[name]; !ok {
184 a.entryOrder = append(a.entryOrder, name)
186 a.EntryMap[name] = []string{value}
190 func (a *AndroidMkEntries) SetPath(name string, path Path) {
191 if _, ok := a.EntryMap[name]; !ok {
192 a.entryOrder = append(a.entryOrder, name)
194 a.EntryMap[name] = []string{path.String()}
[all …]
Donceper_test.go26 a := once.Once(key, func() interface{} { return "a" }).(string)
29 if a != "a" {
30 t.Errorf(`first call to Once should return "a": %q`, a)
46 a := once.Once(key, func() interface{} { return "bar" }).(string)
48 if a != "foo" {
49 t.Errorf("expect %q, got %q", "foo", a)
57 a := once.Once(key, func() interface{} { return "a" }).(string)
60 if a != "a" {
61 t.Errorf(`first call to Once should return "a": %q`, a)
92 a := once.Get(key).(string)
[all …]
/build/blueprint/pathtools/
Dglob_test.go519 matches: []string{`*`, `**/`, `?`, `a/`, `b`, `**/*`, `**/a`, `**/b/`, `**/b/b`, `a/a`},
520 deps: []string{`.`, `**`, `**/b`, `a`},
525 deps: []string{`.`, `**`, `**/b`, `a`},
529 matches: []string{`**/*`, `**/a`, `**/b/`},
534 matches: []string{`**/*`, `**/a`, `**/b/`, `**/b/b`},
543 `**/a`,
546 `a/a`,
851 {`a/\*\*/\*`, `a/**/*`, true},
852 {`a/\*\*/\*`, `a/a/*`, false},
853 {`a/\*\*/\*`, `a/**/a`, false},
[all …]
/build/soong/java/
Dapp_import.go157 func (a *AndroidAppImport) IsInstallable() bool {
164 func (a *AndroidAppImport) processVariants(ctx android.DefaultableHookContext) {
166 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName(DpiGroupName)
172 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
175 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
177 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName(ArchGroupName)
179 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
182 archStructPtr := reflect.ValueOf(a.arch_dpiVariants).Elem().FieldByName(ArchGroupName)
189 … MergePropertiesFromVariant(ctx, &a.properties, archDpiProps, config.ProductAAPTPrebuiltDPI()[i])
192 … MergePropertiesFromVariant(ctx, &a.properties, archDpiProps, config.ProductAAPTPreferredConfig())
[all …]
Dapp.go210 func (a *AndroidApp) IsInstallable() bool {
211 return Bool(a.properties.Installable)
214 func (a *AndroidApp) ResourcesNodeDepSet() *android.DepSet[*resourcesNode] {
215 return a.aapt.resourcesNodesDepSet
218 func (a *AndroidApp) OutputFile() android.Path {
219 return a.outputFile
222 func (a *AndroidApp) Certificate() Certificate {
223 return a.certificate
226 func (a *AndroidApp) JniCoverageOutputs() android.Paths {
227 return a.jniCoverageOutputs
[all …]
Daar.go159 if a, ok := d.(AndroidLibraryDependency); ok {
160 a.SetRROEnforcedForDependent(true)
166 func (a *aapt) useResourceProcessorBusyBox(ctx android.BaseModuleContext) bool {
167 …return BoolDefault(a.aaptProperties.Use_resource_processor, ctx.Config().UseResourceProcessorByDef…
169 !slices.Contains(a.aaptProperties.Aaptflags, "--shared-lib")
172 func (a *aapt) filterProduct() string {
173 return String(a.aaptProperties.Filter_product)
176 func (a *aapt) ExportPackage() android.Path {
177 return a.exportPackage
179 func (a *aapt) ResourcesNodeDepSet() *android.DepSet[*resourcesNode] {
[all …]
/build/soong/filesystem/
Davb_add_hash_footer.go88 func (a *avbAddHashFooter) installFileName() string {
89 return proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".img")
92 func (a *avbAddHashFooter) GenerateAndroidBuildActions(ctx android.ModuleContext) {
95 if a.properties.Src == nil {
99 input := android.PathForModuleSrc(ctx, proptools.String(a.properties.Src))
100 a.output = android.PathForModuleOut(ctx, a.installFileName()).OutputPath
101 builder.Command().Text("cp").Input(input).Output(a.output)
105 partition_name := proptools.StringDefault(a.properties.Partition_name, a.BaseModuleName())
108 if a.properties.Partition_size == nil {
111 partition_size := proptools.Int(a.properties.Partition_size)
[all …]
Davb_gen_vbmeta_image.go55 func (a *avbGenVbmetaImage) installFileName() string {
56 return a.Name() + ".img"
59 func (a *avbGenVbmetaImage) GenerateAndroidBuildActions(ctx android.ModuleContext) {
65 partition_name := proptools.StringDefault(a.properties.Partition_name, a.Name())
68 if a.properties.Src == nil {
72 input := android.PathForModuleSrc(ctx, proptools.String(a.properties.Src))
75 if a.properties.Salt == nil {
79 cmd.FlagWithArg("--salt ", proptools.String(a.properties.Salt))
81 a.output = android.PathForModuleOut(ctx, a.installFileName()).OutputPath
82 cmd.FlagWithOutput("--output_vbmeta_image ", a.output)
[all …]
/build/blueprint/
Dlevenshtein.go21 func abs(a int) int {
22 if a < 0 {
23 return -a
25 return a
32 func levenshtein(a, b string, ai, bi, max int, buf [][]int) int { argument
36 if ai >= len(a) {
40 return len(a) - ai
45 if abs(len(a)-len(b)) >= max {
49 if a[ai] == b[bi] {
50 res = levenshtein(a, b, ai+1, bi+1, max, buf)
[all …]
/build/soong/scripts/
Djar-args.sh37 a
38 a/b
39 a/b/'
47 -C 'a' 'b'
48 -C 'a' 'b/\\''
51 -C 'a' 'b/#'
54 cat $in | $0 a > $out
/build/make/tools/droiddoc/templates-pdk/
Dsampleindex.cs10 <a name="top"></a>
14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >
20 <p><a href="../index.html">&larr; Back</a></p>
28 <li><a href="<?cs var:dir.name ?>/index.html"><?cs
29 var:dir.name ?>/</a></li>
38 <li><a href="<?cs var:file.href ?>"><?cs
39 var:file.name ?></a></li>
Ddocpage.cs8 <div class="g-unit" id="doc-content"><a name="top"></a>
13 <a href="<?cs var:parent.link ?>"><?cs var:parent.title ?></a>:
29 <a href="<?cs var:next.link ?>">
33 </a>
39 <a href="<?cs var:next.link ?>">
43 </a>
51 <a href="<?cs var:previous.link ?>">
55 </a>
72 <a href="<?cs var:next.link ?>">
76 </a>
[all …]
Dheader_tabs.cs9 <li id="home-link"><a href="<?cs var:toroot ?><?cs
22 </a></li>
23 <li id="sdk-link"><a href="<?cs var:toroot ?>sdk/index.html">
25 </a></li>
26 …<li id="guide-link"><a href="<?cs var:toroot ?>guide/index.html" onClick="return loadLast('guide')…
30 <span style="display:none" class="es">Guía</span>
37 </a></li>
38 …<li id="reference-link"><a href="<?cs var:toroot ?>reference/packages.html" onClick="return loadLa…
49 </a></li>
50 …<li id="resources-link"><a href="<?cs var:toroot ?>resources/index.html" onClick="return loadLast(…
[all …]
Dcustomizations.cs52 …<a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>clas…
53 …<a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="…
81 <p style="padding:10px">Select a package to view its members</p><?cs
87 …<a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>clas…
88 …<a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="…
128 licensed under <a href="http://creativecommons.org/licenses/by/2.5/">
129 Creative Commons Attribution 2.5</a>. For details and
130 restrictions, see the <a href="<?cs var:toroot ?>license.html">Content
131 License</a>.<?cs
136 Except as noted, this content is licensed under <a
[all …]
/build/soong/apex/
Dbuilder.go103 `-a provideNativeLibs ${provideNativeLibs} ` +
104 `-a requireNativeLibs ${requireNativeLibs} ` +
270 func (a *apexBundle) buildManifest(ctx android.ModuleContext, provideNativeLibs, requireNativeLibs …
271 …src := android.PathForModuleSrc(ctx, proptools.StringDefault(a.properties.Manifest, "apex_manifest…
279 if a.vndkApex {
280 apexName := vndkApexNamePrefix + a.vndkVersion()
286 for _, fi := range a.filesInfo {
296 if _, vndkVersion := a.getImageVariationPair(); vndkVersion != "" {
303 if a.properties.Variant_version != nil {
311 variantVersion := []rune(*a.properties.Variant_version)
[all …]
Dandroidmk.go29 func (a *apexBundle) AndroidMk() android.AndroidMkData {
30 if a.properties.HideFromMake {
35 return a.androidMkForType()
66 func (a *apexBundle) fullModuleName(apexBundleName string, linkToSystemLib bool, fi *apexFile) stri…
77 func (a *apexBundle) androidMkForFiles(w io.Writer, apexBundleName, moduleDir string,
89 for _, fi := range a.filesInfo {
90 linkToSystemLib := a.linkToSystemLib && fi.transitiveDep && fi.availableToPlatform()
91 moduleName := a.fullModuleName(apexBundleName, linkToSystemLib, &fi)
217 func (a *apexBundle) writeRequiredModules(w io.Writer, moduleNames []string) {
221 required = append(required, a.RequiredModuleNames()...)
[all …]
Dapex.go259 func (a *ApexNativeDependencies) Merge(b ApexNativeDependencies) {
260 a.Native_shared_libs = append(a.Native_shared_libs, b.Native_shared_libs...)
261 a.Jni_libs = append(a.Jni_libs, b.Jni_libs...)
262 a.Rust_dyn_libs = append(a.Rust_dyn_libs, b.Rust_dyn_libs...)
263 a.Binaries = append(a.Binaries, b.Binaries...)
264 a.Tests = append(a.Tests, b.Tests...)
265 a.Filesystems = append(a.Filesystems, b.Filesystems...)
266 a.Prebuilts = append(a.Prebuilts, b.Prebuilts...)
268a.Exclude_native_shared_libs = append(a.Exclude_native_shared_libs, b.Exclude_native_shared_libs..…
269 a.Exclude_jni_libs = append(a.Exclude_jni_libs, b.Exclude_jni_libs...)
[all …]
/build/soong/cmd/sbox/
Dsbox_test.go29 a string
38 a: "",
44 a: "foo",
50 a: "foo",
56 a: "foo",
62 a: strings.Repeat("a", 2*1024*1024),
68 a: strings.Repeat("a", 2*1024*1024+10),
74 a: strings.Repeat("a", 2*1024*1024),
80 a: strings.Repeat("a", 2*1024*1024+10),
92 a: "foo",
[all …]
/build/make/tools/droiddoc/templates-pdk/components/
Dmasthead.cs5 <a href="<?cs var:toroot ?>guide/index.html"><img
6 …rc="<?cs var:toroot ?>assets/images/android_logo.png" alt="Android Platform Development Kit" /></a>
12 <!-- &nbsp;<a href="#">English</a> | -->
13 <a href="http://www.android.com">Android.com</a>
/build/bazel/platforms/arch/variants/
Dconstants_test.bzl5 # You may obtain a copy of the License at
37 …value_json": attr.string(doc = "Expected output as a json-encoded string because attributes can't …
44 items = ["a", "b", "c"],
46 …expected_value_json = json.encode([[], ["a"], ["b"], ["a", "b"], ["c"], ["a", "c"], ["b", "c"], ["
50 items = ["a", "b", "c"],
52 …expected_value_json = json.encode([["a"], ["b"], ["a", "b"], ["c"], ["a", "c"], ["b", "c"], ["a", …
68 items = ["a"],
70 expected_value_json = json.encode([[], ["a"]]),
74 items = ["a"],
76 expected_value_json = json.encode([["a"]]),
/build/make/tools/releasetools/
Dsign_apex.py84 def option_handler(o, a): argument
86 options['avbtool'] = a
90 if a.endswith(DEFAULT_CONTAINER_KEY_SUFFIX):
91 a = a[:-len(DEFAULT_CONTAINER_KEY_SUFFIX)]
92 options['container_key'] = a
94 options['payload_key'] = a
96 options['payload_extra_args'] = a
98 versions = a.split(",")
105 names, key = a.split("=")
112 options['sign_tool'] = a
[all …]

12345678910>>...49