Home
last modified time | relevance | path

Searched refs:cs (Results 1 – 25 of 37) sorted by relevance

12

/build/make/tools/droiddoc/templates-pdk/
Dcustomizations.cs1 <?cs
5 <div id="devdoc-nav"><?cs
9 <?cs /def ?>
10 <?cs
14 <div id="devdoc-nav"><?cs
23 <?cs /def ?>
24 <?cs
28 <div id="devdoc-nav"><?cs
37 <?cs /def ?>
38 <?cs
[all …]
Ddocpage.cs1 <?cs include:"doctype.cs" ?>
2 <?cs include:"macros.cs" ?>
4 <?cs include:"head_tag.cs" ?>
6 <?cs include:"header.cs" ?>
12 <?cs if:parent.link ?>
13 <a href="<?cs var:parent.link ?>"><?cs var:parent.title ?></a>:
14 <?cs else ?>&nbsp;
15 <?cs /if ?>
17 <h1 itemprop="name"><?cs var:page.title ?></h1>
20 <?cs # THIS IS THE MAIN DOC CONTENT ?>
[all …]
Dsampleindex.cs1 <?cs include:"doctype.cs" ?>
2 <?cs include:"macros.cs" ?>
3 <?cs set:resources="true" ?>
5 <?cs include:"head_tag.cs" ?>
6 <?cs include:"header.cs" ?>
16 <h1><?cs var:page.title ?></h1>
22 <?cs var:summary ?>
24 <?cs if:subcount(subdirs) ?>
27 <?cs each:dir=subdirs ?>
28 <li><a href="<?cs var:dir.name ?>/index.html"><?cs
[all …]
Dsdkpage.cs1 <?cs include:"doctype.cs" ?>
2 <?cs include:"macros.cs" ?>
4 <?cs if:sdk.redirect ?>
12 <?cs else ?>
13 <?cs include:"head_tag.cs" ?>
14 <?cs /if ?>
17 <?cs call:custom_masthead() ?>
19 <?cs call:sdk_nav() ?>
21 <?cs if:sdk.redirect ?>
28 else ?>index.html<?cs /if ?>"><?cs
[all …]
Dhead_tag.cs3 <?cs if:page.metaDescription ?>
5 <?cs /if ?>
7 <title><?cs
8 if:page.title ?><?cs
9 var:page.title ?> | <?cs
10 /if ?>Android Developers</title><?cs
12 …s var:toroot ?>assets/android-developer-docs-devguide.css" rel="stylesheet" type="text/css" /><?cs
14 …href="<?cs var:toroot ?>assets/android-developer-docs.css" rel="stylesheet" type="text/css" /><?cs
22 </script><?cs
25 <script src="<?cs var:toroot ?>navtree_data.js" type="text/javascript"></script><?cs
[all …]
Dheader_tabs.cs12 <?cs if:!sdk.redirect ?>
21 <?cs /if ?>
27 <?cs if:!sdk.redirect ?>
36 <?cs /if ?>
39 <?cs if:!sdk.redirect ?>
48 <?cs /if ?>
51 <?cs if:!sdk.redirect ?>
60 <?cs /if ?>
63 <?cs if:!sdk.redirect ?>
72 <?cs /if ?>
[all …]
Dtrailer.cs1 </div> <!-- end body-content --> <?cs # normally opened by header.cs ?>
Djd_lists_unified.cs1 <?cs var:reference_tree ?>
/build/make/tools/compliance/
Dconditionset.go31 cs := LicenseConditionSet(0x00)
33 cs |= LicenseConditionSet(lc)
35 return cs
40 func (cs LicenseConditionSet) Plus(conditions ...LicenseCondition) LicenseConditionSet {
41 result := cs
50 func (cs LicenseConditionSet) Union(other ...LicenseConditionSet) LicenseConditionSet {
51 result := cs
59 func (cs LicenseConditionSet) MatchingAny(conditions ...LicenseCondition) LicenseConditionSet {
62 result |= cs & LicenseConditionSet(lc)
69 func (cs LicenseConditionSet) MatchingAnySet(other ...LicenseConditionSet) LicenseConditionSet {
[all …]
Dpolicy_policy.go107 cs := NewLicenseConditionSet()
111 cs = cs.Plus(RestrictedCondition)
119 cs = cs.Plus(RestrictedClasspathExceptionCondition)
122 cs = cs.Plus(WeaklyRestrictedCondition)
125 cs = cs.Plus(RestrictedCondition)
129 cs = cs.Plus(RestrictedCondition)
131 cs = cs.Plus(RestrictedCondition)
135 cs = cs.Plus(RestrictedCondition)
140 cs |= LicenseConditionSet(lc)
143 return cs
Dpolicy_walk.go86 cs LicenseConditionSet member
122 for actsOn, cs := range rmap[key] {
123 rmap[tkey][actsOn] = cs
131 for actsOn, cs := range result[tn] {
132 result[target][actsOn] = cs
162 cs := tn.resolution
163 if !cs.IsEmpty() {
164 cs = cs.Intersection(universe)
176 if pure && !cs.IsEmpty() {
180 result[target][tn] = cs
[all …]
Dpolicy_resolve.go99 cs, alreadyWalked := priorWalkResults()
101 return cs
109 cs := walk(edge.dependency, treatAsAggregate && edge.dependency.IsContainer())
112 cs = depConditionsPropagatingToTarget(lg, edge, cs, treatAsAggregate)
114 c <- cs
118 cs |= <-c
121 target.resolution |= cs
125 return cs
179 var walk func(fnode *TargetNode, cs LicenseConditionSet, treatAsAggregate bool)
181 walk = func(fnode *TargetNode, cs LicenseConditionSet, treatAsAggregate bool) {
[all …]
Dpolicy_shareprivacyconflicts.go52 for _, cs := range combined {
53 size += cs.Intersection(ImpliesShared).Len() * cs.Intersection(ImpliesPrivate).Len()
59 for actsOn, cs := range combined {
60 pconditions := cs.Intersection(ImpliesPrivate).AsList()
61 ssconditions := cs.Intersection(ImpliesShared).AsList()
Dresolutionset.go83 for actsOn, cs := range as {
84 result = append(result, Resolution{attachesTo, actsOn, cs})
94 for actsOn, cs := range as {
96 result[actsOn] = cs.Union(result[actsOn])
98 result[actsOn] = cs
127 for actsOn, cs := range as {
128 fmt.Fprintf(&sb, "%s%s%s", sep, actsOn.Name(), cs.String())
Dconditionset_test.go338 checkMatching := func(cs LicenseConditionSet, t *testing.T) {
342 actual := cs.MatchingAny(toConditions(strings.Split(data, "|"))...)
379 checkMatchingSet := func(cs LicenseConditionSet, t *testing.T) {
382 actual := cs.MatchingAnySet(NewLicenseConditionSet(toConditions(strings.Split(data, "|"))...))
618 cs := populate()
619 if checkExpected(cs, t) {
620 checkMatching(cs, t)
622 if checkExpectedSet(cs, t) {
623 checkMatchingSet(cs, t)
628 cs := populateSet()
[all …]
Dtest_util.go140 cs := LicenseConditionSetFromNames(tn, conditionName...)
141 if cs.IsEmpty() {
144 tn.licenseConditions = tn.licenseConditions.Union(cs)
145 return cs
343 cs := newTestConditionSet(lg, a.origin, strings.Split(a.condition, "|"))
344 as[actsOn] = cs
363 cs := newTestConditionSet(lg, r.origin, strings.Split(r.condition, ":"))
364 rmap[attachesTo][actsOn] |= cs
377 cs LicenseConditionSet member
382 return fmt.Sprintf("%s%s", a.target.Name(), a.cs.String())
[all …]
Dresolution.go35 cs LicenseConditionSet member
52 return r.cs
58 names := r.cs.Names()
100 result = result.Union(r.cs)
111 result = append(result, Resolution{r.attachesTo, r.actsOn, r.cs.MatchingAnySet(conditions)})
Dpolicy_policy_test.go285cs := targetConditionsPropagatingToDep(lg, edge, targetConditions, tt.treatAsAggregate, AllResolut…
286 t.Logf("calculated dep conditions as %v", cs.Names())
287 actual := cs.Names()
/build/make/tools/droiddoc/templates-pdk/components/
Dmasthead.cs1 <?cs
17 </div><!-- header --><?cs
18 /def ?><?cs # custom_masthead ?>
/build/make/core/
Dcleanbuild.mk117 define -cs-rewrite-cleanstep
124 …$(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$(TARGET_OUT_INTERMEDIATES),$($(TARGET…
125 …$(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$(TARGET_OUT_SHARED_LIBRARIES),$($(TAR…
126 …$(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$(TARGET_OUT_VENDOR_SHARED_LIBRARIES),…
127 …$(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_…
128 …$(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_…
129 …$(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_…
/build/bazel/docs/
Dinternal_concepts.md59 [`build/make/core/main.mk`](http://cs.android.com/android/platform/superproject/+/master:build/make…
70 [specify dependencies](https://cs.android.com/android/platform/superproject/+/master:build/blueprin…
72 [Blueprint resolves](https://cs.android.com/android/platform/superproject/+/master:build/blueprint/…
76 [build/soong/android/paths.go](https://cs.android.com/android/platform/superproject/+/master:build/…
95 [AddProperties](https://cs.android.com/android/platform/superproject/+/master:build/soong/android/m…
99 …[specifies](https://cs.android.com/android/platform/superproject/+/master:build/soong/android/modu…
102 …[host/device properies](https://cs.android.com/android/platform/superproject/+/master:build/soong/…
109 [`proptools`](https://cs.android.com/android/platform/superproject/+/master:build/blueprint/proptoo…
111 [`include_build_directory`](https://cs.android.com/android/platform/superproject/+/master:build/soo…
113 [resolved](https://cs.android.com/android/platform/superproject/+/master:build/soong/cc/compiler.go…
[all …]
Dconcepts.md47 [path\_interposer](https://cs.android.com/android/platform/superproject/+/master:build/soong/ui/bui…
59 …[the config.mk entry point](https://cs.android.com/android/platform/superproject/+/master:build/so…
74 …[the cleanbuild.mk entry point](https://cs.android.com/android/platform/superproject/+/master:buil…
76 …[the main.mk entry point.](https://cs.android.com/android/platform/superproject/+/master:build/soo…
78 …[the packaging/main.mk](https://cs.android.com/android/platform/superproject/+/master:build/soong/…
119 **[--dumpvars-mode](https://cs.android.com/android/platform/superproject/+/master:build/soong/cmd/s…
123 soong\_config.mk](https://cs.android.com/android/platform/superproject/+/master:build/make/core/soo…
125 file](https://cs.android.com/android/platform/superproject/+/master:build/make/core/soong_config.mk…
131 [dexpreopt](https://cs.android.com/android/platform/superproject/+/master:build/soong/java/dexpreop…
133 generated](https://cs.android.com/android/platform/superproject/+/master:build/make/core/dex_preopt…
[all …]
/build/soong/dexpreopt/
DDEXPREOPT_IMPLEMENTATION.md240 [make/core/dex_preopt.mk]: https://cs.android.com/android/platform/superproject/+/master:build/make…
241 [make/core/dex_preopt_config.mk]: https://cs.android.com/android/platform/superproject/+/master:bui…
242 [make/core/dex_preopt_config_merger.py]: https://cs.android.com/android/platform/superproject/+/mas…
243 [make/core/dex_preopt_odex_install.mk]: https://cs.android.com/android/platform/superproject/+/mast…
244 [soong/dexpreopt]: https://cs.android.com/android/platform/superproject/+/master:build/soong/dexpre…
245 [soong/dexpreopt/class_loader_context.go]: https://cs.android.com/android/platform/superproject/+/m…
246 [soong/dexpreopt/config.go]: https://cs.android.com/android/platform/superproject/+/master:build/so…
247 [soong/dexpreopt/dexpreopt.go]: https://cs.android.com/android/platform/superproject/+/master:build…
248 [soong/java]: https://cs.android.com/android/platform/superproject/+/master:build/soong/java
249 [soong/java/app.go:deps]: https://cs.android.com/android/platform/superproject/+/master:build/soong…
[all …]
/build/make/tools/compliance/cmd/dumpresolutions/
Ddumpresolutions.go201 cs := compliance.AllLicenseConditions
203 cs = compliance.NewLicenseConditionSet()
205 cs = cs.Plus(c)
209 resolutions := compliance.WalkResolutionsForCondition(licenseGraph, cs)
Ddumpresolutions_test.go947 cs := compliance.NewLicenseConditionSet()
949 cs = cs.Plus(compliance.RecognizedConditionNames[name])
951 if cs.IsEmpty() && len(conditionName) != 0 {
954 return cs
958 cs := newTestCondition(lg, tm.conditions...)
960 if !cs.IsEmpty() {
961 m += "\\n" + strings.Join(cs.Names(), "\\n")
978 cs := newTestCondition(lg, rm.conditions...)
980 " [label=\"" + strings.Join(cs.Names(), "\\n") + "\"];"

12