/build/tools/ |
findleaves.py | 26 def perform_find(mindepth, prune, dirlist, filename): 28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune)) 32 # prune 41 if dirs[i] in prune: 61 --prune=<dirname> 71 prune = [] 80 elif arg.startswith("--prune="): 81 p = arg[len("--prune="):] 84 prune.append(p) 92 results = perform_find(mindepth, prune, dirlist, filename [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
prune.h | 0 // prune.h 56 void Prune(MutableFst<Arc> *fst, 63 LOG(FATAL) << "Prune: Weight needs to have the path property and" 128 void Prune(MutableFst<Arc> *fst, typename Arc::Weight threshold) { 130 Prune(fst, opts); 141 void Prune(const Fst<Arc> &ifst, 149 LOG(FATAL) << "Prune: Weight needs to have the path property and" 238 void Prune(const Fst<Arc> &ifst, 242 Prune(ifst, ofst, opts);
|
fstlib.h | 71 #include "fst/lib/prune.h"
|
/external/webkit/WebCore/history/ |
PageCache.cpp | 63 prune(); 98 prune(); 114 void PageCache::prune() function in class:WebCore::PageCache 187 // Now do the prune. 189 cache()->prune();
|
PageCache.h | 66 void prune();
|
/external/webkit/WebKitTools/Scripts/ |
do-file-rename | 55 $File::Find::prune = 1; 60 $File::Find::prune = 1;
|
do-webcore-rename | 56 $File::Find::prune = 1; 61 $File::Find::prune = 1;
|
find-extra-includes | 44 $File::Find::prune = 1;
|
report-include-statistics | 45 $File::Find::prune = 1;
|
/dalvik/vm/compiler/template/ |
Makefile-template | 38 $(shell find . -path ./$(OUTPUT_DIR) -prune -o -type f -print)
|
/dalvik/vm/mterp/ |
Makefile-mterp | 38 $(shell find . -path ./$(OUTPUT_DIR) -prune -o -type f -print) \
|
/external/webkit/WebCore/platform/graphics/qt/ |
StillImageQt.h | 43 // to prune because these functions are not implemented yet.
|
/external/srec/srec/crec/ |
comp_stats.c | 59 init_cs_clock(&c.prune); 88 print_cs_clock(&cs->prune, cs->total_time, fp, " Prune", "HMM States");
|
srec.c | 93 /* first prune the CDR of the list, ie everything but the head */ 529 /*this seems like an unlikely case, but if we can't prune enough to make room, give up 533 PLogError ("reprune_new_states: can't seem to prune enough - best cost %d num_new_states %d\n", 536 print_fsmarc_token_list(rec, rec->active_fsmarc_tokens, "CANNOT PRUNE"); 608 /*this seems like an unlikely case, but if we can't prune enough to make room, give up 612 PLogError ("reprune_fsmnode_tokens: can't seem to prune enough - best cost %d\n", 615 print_fsmnode_token_list(rec, rec->active_fsmnode_tokens, "CANNOT PRUNE: "); [all...] |
/external/webkit/WebCore/bindings/scripts/ |
CodeGenerator.pm | 145 &$beforeRecursion($parentInterface) eq 'prune' and next; 188 # Prune the recursion here. 189 return 'prune'; 245 $File::Find::prune = 1 if /^\../;
|
/external/webkit/WebCore/platform/graphics/cg/ |
PDFDocumentImage.h | 54 // to prune because these functions are not implemented yet.
|
/external/webkit/WebCore/svg/graphics/ |
SVGImage.h | 62 // to prune because these functions are not implemented yet.
|
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/ |
PolicyNodeImpl.java | 137 void prune(int i) {
method in class:PolicyNodeImpl 146 policynodeimpl.prune(i);
|
/external/icu4c/tools/gennorm/ |
gennorm.c | 77 UOPTION_DEF("prune", 'p', UOPT_REQUIRES_ARG) 124 "\t-p or --prune flags Prune for data modularization:\n" 219 fprintf(stderr, "ignoring undefined prune flag '%c'\n", c);
|
/external/srec/srec/include/ |
comp_stats.h | 85 CS_CLOCK prune; member in struct:COMP_STATS_t
|
/external/webkit/WebCore/css/ |
MediaQueryEvaluator.h | 49 * the device characteristics are not known. This can be used to prune the loading
|
/external/webkit/WebKit/chromium/src/ |
WebCache.cpp | 77 cache->setCapacities(0, 0, 0); // Will prune the cache.
|
/external/tcpdump/ |
print-dvmrp.c | 52 #define DVMRP_PRUNE 7 /* prune message */ 140 printf(" Prune");
|
/external/webkit/WebCore/loader/ |
Cache.h | 120 void prune() function in class:WebCore::Cache 125 pruneDeadResources(); // Prune dead first, in case it was "borrowing" capacity from live.
|
/build/core/ |
cleanspec.mk | 190 $(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git . CleanSpec.mk)
|