/build/tools/signapk/src/com/android/signapk/ |
D | Pair.java | 22 public final class Pair<A, B> { 23 private final A mFirst; 26 private Pair(A first, B second) { in Pair() 31 public static <A, B> Pair<A, B> create(A first, B second) { in create() 32 return new Pair<A, B>(first, second); in create() 35 public A getFirst() { in getFirst()
|
/build/kati/testcase/ |
D | recursive_command_expansion.mk | 1 unexport A 3 A="$${A}" 4 B=$(A)
|
D | equal_in_target.mk | 2 TSV:=test: A=PASS 3 A_EQ_B:=A=B 6 test: A$(EQ)B 9 echo $(A)
|
D | assign_types.mk | 1 A = a 2 B = $(A) 3 C := $(A) 4 A = aa
|
D | target_specific_var_append.mk | 3 a: A:=PASS_A 4 a: A+=A 6 echo A=$(A)
|
D | merge_target_specific_vars.mk | 3 foo: A:=FAIL 4 foo: A:=PASS 6 echo $(A)
|
D | override_export.mk | 4 override export A:=override_A 7 A:=make_A 11 echo $$A
|
D | override_override.mk | 1 override A:=PASS_A 2 A:=FAIL_A 10 echo $(A)
|
D | ifdef_with_trailing_space.mk | 3 A := a # comment 5 ifdef $(A) 12 ifdef $(A)
|
D | multiline_define.mk | 16 A\ 22 A\ 29 A\
|
D | override_rule.mk | 3 A=PASS 8 echo $(A)
|
D | double_colon_rule.mk | 6 test:: A=B 9 test: A=B
|
D | equal_and_semi_in_rule.mk | 3 foo: A=echo ; echo PASS 5 echo $(A)
|
D | not_command_with_tab.mk | 5 export A=PASS_A\ 9 echo $$A
|
D | target_specific_var_in_var.mk | 1 A:= x:a:=foo; 5 $(A) echo $(BAR) ; echo $(BAZ)
|
D | target_specific_var_ref.mk | 5 foo: A:=$(X) 7 echo $(A)
|
D | semicolon_in_var.mk | 2 A:=foo: ; echo PASS 3 $(A)
|
D | flavor.mk | 3 A=a 7 AREF:=A
|
/build/blueprint/proptools/ |
D | extend_test.go | 527 in1: &struct{ A string }{ 528 A: "string1", 533 out: &struct{ A string }{ 534 A: "string1", 571 S: &struct{ A string }{ 572 A: "string1", 581 S: &struct{ A string }{ 582 A: "string1", 805 &struct{ S, A string }{ 816 &struct{ S, A string }{ [all …]
|
/build/tools/droiddoc/test/stubs/src/com/android/stubs/a/ |
D | A.java | 21 public abstract class A extends Parent implements Parent.Interface, SomeInterface { class 22 protected A(int a) { in A() method in A 26 public A varargs(Parent... args) { in varargs()
|
/build/tools/droiddoc/test/stubs/expected/com/android/stubs/a/ |
D | A.java | 2 public abstract class A class 10 protected A(int a) { throw new RuntimeException("Stub!"); } in A() method in A 11 public com.android.stubs.a.A varargs(com.android.stubs.Parent[]... args) { throw new RuntimeExcept… in varargs()
|
/build/kati/ |
D | INTERNALS.md | 77 A Makefile has some statements which consist of zero or more expressions. There 123 all: # A rule 124 echo $(VAR) # A command 125 include xxx.mk # A make directive (include) 134 A tricky point of parsing make statements is that the parsing depends on the 152 ASSIGN := A=B 155 doesn't assign "*B:*" to *A*, but defines a build rule whose target is *A=B*. 191 A statement may have one or more expressions. The number of expressions in a 194 A := $(X) 196 This is an assignment statement, which has two expressions - *A* and [all …]
|
/build/tools/releasetools/ |
D | pylintrc | 31 # A comma-separated list of package or module names from where C extensions may 116 # Tells whether missing members accessed in mixin class should be ignored. A 179 const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ 182 const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ 197 class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ 200 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ 203 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ 206 inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ 209 class-rgx=[A-Z_][a-zA-Z0-9]+$ 212 class-name-hint=[A-Z_][a-zA-Z0-9]+$ [all …]
|
/build/tools/droiddoc/templates-pdk/assets/ |
D | prettify.js | 16 …A=k[e];if(A[0]<=E[1]+1)E[1]=Math.max(E[1],A[1]);else B.push(E=A)}var D=[L];h&&D.push(M);D.push.app… 22 …ar B=e[1],E=k.indexOf(B),A=E+B.length,D=h.substring(5);ia(n+x,k.substring(0,E),i,q);ia(n+x+E,B,Ra(…
|
/build/tools/makeparallel/ |
D | Makefile | 90 @EXPECTED="-j1" $(MAKEPARALLEL_TEST) A=-j1234 91 @EXPECTED="-j1" $(MAKEPARALLEL_TEST) A\ -j1234=-j1234 92 @EXPECTED="-j1234" $(MAKEPARALLEL_TEST) A\ -j1234=-j1234 -j1234
|