Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 45) sorted by relevance

12

/build/soong/scripts/
Dmanifest_fixer.py150 first = manifest.firstChild
151 manifest.insertBefore(doc.createTextNode(indent), first)
152 manifest.insertBefore(application, first)
195 first = manifest.firstChild
196 manifest.insertBefore(doc.createTextNode(indent), first)
197 manifest.insertBefore(application, first)
243 first = manifest.firstChild
244 manifest.insertBefore(doc.createTextNode(indent), first)
245 manifest.insertBefore(application, first)
263 first = manifest.firstChild
[all …]
/build/soong/bazel/
Daquery_test.go750 func buildStatementEquals(first BuildStatement, second BuildStatement) bool {
751 if first.Mnemonic != second.Mnemonic {
754 if first.Command != second.Command {
758 if !reflect.DeepEqual(first.Env, second.Env) {
762 if !reflect.DeepEqual(stringSet(first.InputPaths), stringSet(second.InputPaths)) {
765 if !reflect.DeepEqual(stringSet(first.OutputPaths), stringSet(second.OutputPaths)) {
/build/make/tools/releasetools/
Dtest_rangelib.py62 self.assertEqual(RangeSet("0-9").first(1), RangeSet("0"))
63 self.assertEqual(RangeSet("10-19").first(5), RangeSet("10-14"))
64 self.assertEqual(RangeSet("10-19").first(15), RangeSet("10-19"))
65 self.assertEqual(RangeSet("10-19 30-39").first(3), RangeSet("10-12"))
66 self.assertEqual(RangeSet("10-19 30-39").first(15),
68 self.assertEqual(RangeSet("10-19 30-39").first(30),
70 self.assertEqual(RangeSet("0-9").first(0), RangeSet(""))
Dedify_generator.py47 first = True
50 if not first:
52 first = False
Dpylintrc60 # disable everything first and then reenable specific checks. For example, if
360 # List of valid names for the first argument in a class method.
361 valid-classmethod-first-arg=cls
363 # List of valid names for the first argument in a metaclass class method.
364 valid-metaclass-classmethod-first-arg=mcs
/build/soong/android/
Donceper_test.go30 t.Errorf(`first call to Once should return "a": %q`, a)
61 t.Errorf(`first call to Once should return "a": %q`, a)
107 t.Errorf(`first call to OnceStringSlice should return ["a"]: %q`, a)
123 t.Errorf(`first call to Once2StringSlice should return ["a"], ["b"]: %q, %q`, a, b)
140 t.Errorf(`first call to Once should return "a": %q`, a)
160 t.Errorf(`first call to Once should return "a": %q`, a)
/build/make/core/
Dpackage.mk15 ifeq ($(filter $(my_module_multilib),64 both first),$(my_module_multilib))
27 else ifeq ($(my_module_multilib),first)
Dmultilib.mk12 ifeq (,$(filter 32 64 first both none,$(my_module_multilib)))
Dhost_executable.mk10 my_module_multilib := first
Dmodule_arch_supported.mk36 ifeq ($(my_module_multilib),first)
Ddex_preopt_odex_install.mk305 my_module_multilib := first
311 my_module_multilib := first
322 ifneq (first,$(my_module_multilib))
/build/make/tools/droiddoc/templates-pdk/assets/
Dandroid-developer-docs.css801 /* Makes sure the first paragraph does not add top-whitespace within the box*/
802 li .note>p:first-child,
803 li .caution>p:first-child,
804 li .warning>p:first-child {
1365 .g-unit .g-unit .g-tpl-240 .g-first,
1366 .g-unit .g-tpl-240 .g-first,
1367 .g-tpl-240 .g-first {
1382 .g-unit .g-unit .g-tpl-240-alt .g-first,
1383 .g-unit .g-tpl-240-alt .g-first,
1384 .g-tpl-240-alt .g-first {
[all …]
/build/make/tools/product_config/src/com/android/build/config/
DValue.java110 boolean first = true; in normalize()
114 if (!first) { in normalize()
117 first = false; in normalize()
DFlattenConfig.java344 boolean first = true; in flattenInheritsFrom()
347 if (first) { in flattenInheritsFrom()
348 first = false; in flattenInheritsFrom()
/build/soong/cmd/zip2zip/
Dzip2zip.go289 var first string
290 first, pattern = splitFirst(pattern)
291 if pathtools.IsGlob(first) {
294 ret = filepath.Join(ret, first)
/build/make/target/product/
Druntime_libart.mk102 pm.dexopt.first-boot?=extract \
106 pm.dexopt.first-boot?=verify \
/build/soong/jar/
Djar.go190 return "", fmt.Errorf(`expected first token of java file to be "package", got %q`, s.TokenText())
199 return "", fmt.Errorf(`expected first token of java file to be "package", got %q`, s.TokenText())
/build/soong/docs/
Dmap_files.md79 Indicates that the version or symbol is first introduced in the "future" API
89 Indicates the version in which an API was first introduced. For example,
90 `introduced=21` specifies that the API was first added (or first made public) in
155 Behaves similarly to `introduced` but defines the first version that the stub
/build/make/tools/atree/
Dfiles.cpp153 while((pos = result.find(it->first, pos)) != string::npos) { in replace_variables()
154 result = result.replace(pos, it->first.length(), it->second); in replace_variables()
167 it->first.c_str(), it->second.c_str()); in replace_variables()
/build/blueprint/
Dscope.go121 first, _ := utf8.DecodeRuneInString(varName)
122 if !unicode.IsUpper(first) {
DCONTRIBUTING.md14 us first through the issue tracker with your idea so that we can help out and
/build/soong/cmd/soong_build/
Dwritedocs.go190 td,table.responsive tr:not(.alt) td td:first-child,table.responsive td tr:not(.alt) td:first-child {
/build/blueprint/proptools/
Dunpack.go128 if first, present := ctx.propertyMap[name]; present {
132 &UnpackError{fmt.Errorf("<-- previous definition here"), first.property.ColonPos}) {
/build/make/tools/rbcrun/
DREADME.md35 Starlark does not define the format of the load statement's first argument.
/build/make/common/
Dstrings.mk128 define uniq-pairs-by-first-component

12