/build/tools/ |
D | warn.py | 38 'patterns':[r".*: warning: overriding commands for target .+", 39 r".*: warning: ignoring old commands for target .+"] }, 42 'patterns':[r".*: warning: implicit declaration of function .+"] }, 45 'patterns':[r".*: warning: conflicting types for '.+'"] }, 48 'patterns':[r".*: warning: comparison is always false due to limited range of data type", 49 r".*: warning: comparison of unsigned expression >= 0 is always true", 50 r".*: warning: comparison of unsigned expression < 0 is always false"] }, 53 'patterns':[r".*: warning: assignment from incompatible pointer type", 54 r".*: warning: passing argument [0-9]+ of '.*' from incompatible pointer type", 55 r".*: warning: initialization from incompatible pointer type"] }, [all …]
|
D | fixlinebreaks.sh | 12 tr -d \\r < $file > _temp_file
|
D | findleaves.py | 94 for r in set(results): 95 print r
|
/build/core/ |
D | checktree | 5 excludes = [r'.*?/\.obj.*?', 6 r'.*?~', 7 r'.*?\/.DS_Store', 8 r'.*?\/.gdb_history', 9 r'.*?\/buildspec.mk', 10 r'.*?/\..*?\.swp', 11 r'.*?/out/.*?', 12 r'.*?/install/.*?'] 78 have = run("p4 have ...", r'[^#]+#[0-9]+ - (.*)', r'.*') 81 files = run("find . -not -type d", r'.(.*)', r'.*') [all …]
|
D | armelf.x | 27 .rel.rodata : { *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) } 28 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) } 67 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
|
D | main.mk | 507 $(eval r := $(ALL_MODULES.$(m).REQUIRED)) \ 508 $(if $(r), \ 509 $(eval r := $(call module-installed-files,$(r))) \ 510 $(eval $(call add-required-deps,$(ALL_MODULES.$(m).INSTALLED),$(r))) \ 514 r :=
|
D | armelf.xsc | 21 *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) 36 *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) 67 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
|
D | armelflib.x | 35 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
|
D | product_config.mk | 34 a b c d e f g h i j k l m n o p q r s t u v w x y z \
|
/build/tools/droiddoc/templates/assets/ |
D | search_autocomplete.js | 33 var r; //TR DOM object 47 var r = filtered.insertRow(-1); 48 var c1 = r.insertCell(-1); 76 r = filtered.rows[i]; 77 r.className = "show-row"; 78 set_row_values(toroot, r, gMatches[i]); 79 set_row_selected(r, i == gSelectedIndex); 86 r = filtered.rows[i]; 87 r.className = "no-display";
|
/build/tools/rgb2565/ |
D | to565.c | 22 #define to565(r,g,b) \ argument 23 ((((r) >> 3) << 11) | (((g) >> 2) << 5) | ((b) >> 3)) 56 int r = in[0] + error[i*3+0]; in to_565_raw_dither() local 57 int rb = (r < 0) ? 0 : ((r > 255) ? 255 : r); in to_565_raw_dither() 75 e = r - from565_r(out); in to_565_raw_dither()
|
/build/tools/droiddoc/src/ |
D | SourcePositionInfo.java | 87 int r = this.file.compareTo(that.file); in compareTo() local 88 if (r != 0) return r; in compareTo()
|
D | Converter.java | 29 public static void makeInfo(RootDoc r) in makeInfo() argument 31 root = r; in makeInfo() 36 ClassDoc[] classDocs = r.classes(); in makeInfo() 59 mRootClasses = Converter.convertClasses(r.classes()); in makeInfo() 273 protected void made(Object o, Object r) 276 initClass((ClassDoc)o, (ClassInfo)r); 277 ((ClassInfo)r).init2(); 535 protected void made(Object o, Object r) 538 TypeInfo ti = (TypeInfo)r; 674 Object r = mCache.get(k); in obtain() local [all …]
|
D | Errors.java | 39 int r = this.pos.compareTo(that.pos); in compareTo() local 40 if (r != 0) return r; in compareTo()
|
D | DroidDoc.java | 88 public static boolean start(RootDoc r) in start() argument 104 root = r; in start() 106 String[][] options = r.options(); in start() 209 Converter.makeInfo(r); in start() 432 public static boolean validOptions(String[][] options, DocErrorReporter r) in validOptions() argument 441 r.printError("bad -" + a[0] + " value must be a number: " in validOptions()
|
/build/tools/atree/ |
D | files.cpp | 348 FileRecord r; in add_more() local 349 r.listFile = rec.listFile; in add_more() 350 r.listLine = rec.listLine; in add_more() 351 r.sourceName = path_append(rec.sourceName, entry); in add_more() 352 r.sourcePath = path_append(rec.sourceBase, r.sourceName); in add_more() 354 int err = stat(r.sourcePath.c_str(), &st); in add_more() 356 r.sourceMod = st.st_mtime; in add_more() 358 r.sourceIsDir = isDir; in add_more() 359 r.outName = path_append(rec.outName, entry); in add_more() 360 more->push_back(r); in add_more()
|
/build/tools/apriori/ |
D | rangesort.c | 60 static int range_cmp_for_search(const void *l, const void *r) { in range_cmp_for_search() argument 61 range_t *left = (range_t *)l, *right = (range_t *)r; in range_cmp_for_search() 70 static inline void run_checks(const void *l, const void *r) { in run_checks() argument 71 range_t *left = (range_t *)l, *right = (range_t *)r; in run_checks() 95 static int range_cmp(const void *l, const void *r) { in range_cmp() argument 96 run_checks(l, r); in range_cmp() 97 range_t *left = (range_t *)l, *right = (range_t *)r; in range_cmp() 268 range_list_t* subtract_ranges(const range_list_t *r, const range_list_t *s) in subtract_ranges() argument 270 ASSERT(r); ASSERT(r->is_sorted); in subtract_ranges() 276 range_t *r_ranges = get_sorted_ranges(r, &r_num_ranges); in subtract_ranges()
|
D | rangesort.h | 103 range_list_t* subtract_ranges(const range_list_t *r, const range_list_t *s);
|
/build/tools/apicheck/src/com/android/apicheck/ |
D | SourcePositionInfo.java | 99 int r = this.file.compareTo(that.file); in compareTo() local 100 if (r != 0) return r; in compareTo()
|
D | Errors.java | 39 int r = this.pos.compareTo(that.pos); in compareTo() local 40 if (r != 0) return r; in compareTo()
|
/build/tools/releasetools/ |
D | sign_target_files_apks | 90 m = re.match(r'^name="(.*)"\s+certificate="(.*)\.x509\.pem"\s+' 91 r'private_key="\2\.pk8"$', line) 129 m = re.match(r'^\s*A: android:sharedUserId\([0-9a-fx]*\)="([^"]*)" .*$', i) 265 m = re.match(r"^(.*)\.x509\.pem$", k)
|
/build/target/board/generic/ |
D | tuttle2.kcm | 22 R 'R' '3' 'r' 'R' '3' 0x20AC
|
/build/target/board/emulator/ |
D | tuttle2.kcm | 22 R 'R' '3' 'r' 'R' '3' 0x20AC
|
/build/tools/droiddoc/templates-pdk/ |
D | customization.cs | 124 Android <?cs var:sdk.platform.version ?> r<?cs var:sdk.rel.id ?> - <?cs var:page.now ?>
|
/build/tools/applypatch/ |
D | imgdiff.c | 611 int r = bsdiff(src->data, src->len, &(src->I), tgt->data, tgt->len, ptemp); in MakePatch() local 612 if (r != 0) { in MakePatch() 613 fprintf(stderr, "bsdiff() failed: %d\n", r); in MakePatch()
|