/external/oprofile/libutil++/ |
string_filter.cpp | 3 * Filter strings based on exclude/include list 23 exclude(separate_token(exclude_patterns, ',')) 31 exclude(exclude_patterns) 40 cit = find(exclude.begin(), exclude.end(), str); 41 if (cit != exclude.end())
|
glob_filter.cpp | 3 * Filter strings based on globbed exclude/include list 30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str)); 31 if (cit != exclude.end())
|
path_filter.cpp | 3 * Filter paths based on globbed exclude/include list 26 // first, if any component of the dir is listed in exclude -> no 29 cit = find_if(exclude.begin(), exclude.end(), 31 if (cit != exclude.end()) 43 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(base)); 44 if (cit != exclude.end())
|
string_filter.h | 3 * Filter strings based on exclude/include list 19 * string_filter - filtering of a string based on include/exclude list 31 * Initialise the filter with the include and exclude list, 38 * Initialise the filter with the include and exclude list. 51 /// exclude patterns 52 std::vector<std::string> exclude; member in class:string_filter
|
/external/mockito/ |
update_source.sh | 14 EXCLUDE=" 41 for exclude in ${EXCLUDE}; do 42 echo "Excluding $exclude" 43 rm -r $exclude
|
/external/antlr/antlr-3.4/runtime/Perl5/ |
Makefile.PL | 9 --exclude=blib \ 10 --exclude='*~' \
|
/external/qemu/distrib/sdl-1.2.15/src/main/macos/exports/ |
gendef.pl | 16 if ( not $exclude{$1} ) {
|
/developers/build/ |
build.gradle | 124 // Copy entire sample into output -- since it's already in Gradle format, we'll explicitly exclude content that 129 // Paths to exclude from output 130 exclude ".gradle" 131 exclude "_index.jd" 132 exclude "bin" 133 exclude "buildSrc" 134 exclude "local.properties" 135 exclude "template-params.xml" 136 exclude "*.iml" 137 exclude "**/.idea [all...] |
/external/e2fsprogs/util/ |
gen-tarball.in | 10 exclude=/tmp/exclude 43 -print) | sed -e "s/^$base_e2fsprogs/$SRCROOT/" > $exclude 44 sed -e "s;^;$SRCROOT/;" < $srcdir/$list.exclude >> $exclude 48 (cd $top_srcdir/.. ; tar -c -h -v -f - -X $exclude $SRCROOT) \
|
/external/chromium_org/third_party/icu/source/tools/gendraft/ |
genheaders.pl | 61 "--exclusion-list=s" => \$exclude, 68 usage() unless defined $exclude; 77 $excludeFH = IO::File->new($exclude,"r") 78 or die "could not open the file $exclude for reading: $! \n"; 79 my %exclude; 84 $exclude{$line}="EXCLUDE"; 87 writeFile($draftFile, $draftHeaderName, $destDir, $draftAppend, $draftDefine, \%exclude); 88 writeFile($deprecatedFile, $deprecatedHeaderName, $destDir, $deprecatedAppend, $deprecatedDefine, \%exclude); 89 writeFile($obsoleteFile, $obsoleteHeaderName, $destDir, $obsoleteAppend, $obsoleteDefine, \%exclude); [all...] |
/external/icu4c/tools/gendraft/ |
genheaders.pl | 61 "--exclusion-list=s" => \$exclude, 68 usage() unless defined $exclude; 77 $excludeFH = IO::File->new($exclude,"r") 78 or die "could not open the file $exclude for reading: $! \n"; 79 my %exclude; 84 $exclude{$line}="EXCLUDE"; 87 writeFile($draftFile, $draftHeaderName, $destDir, $draftAppend, $draftDefine, \%exclude); 88 writeFile($deprecatedFile, $deprecatedHeaderName, $destDir, $deprecatedAppend, $deprecatedDefine, \%exclude); 89 writeFile($obsoleteFile, $obsoleteHeaderName, $destDir, $obsoleteAppend, $obsoleteDefine, \%exclude); [all...] |
/development/tools/idegen/src/ |
Excludes.java | 21 * Decides whether or not to exclude certain paths. 37 public boolean exclude(String path) { method in class:Excludes
|
/external/chromium_org/build/mac/ |
copy_framework_unversioned.sh | 93 rsync -acC --delete --exclude Headers --exclude PrivateHeaders \
|
/frameworks/native/libs/ui/ |
Rect.cpp | 110 Rect Rect::reduce(const Rect& exclude) const { 114 mask |= (exclude.left > left) ? 1 : 0; 115 mask |= (exclude.top > top) ? 2 : 0; 116 mask |= (exclude.right < right) ? 4 : 0; 117 mask |= (exclude.bottom < bottom) ? 8 : 0; 127 result.right = exclude.left; 129 result.bottom = exclude.top; 131 result.left = exclude.right; 133 result.top = exclude.bottom;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/ |
lighttpd.conf | 41 static-file.exclude-extensions = ( ".php", ".pl", ".cgi" )
|
/external/chromium/chrome/browser/ui/views/ |
dropdown_bar_host.cc | 286 Path::Point exclude[4]; local 287 exclude[0].x = max_x - difference; // Top left corner. 288 exclude[0].y = 0; 290 exclude[1].x = max_x; // Top right corner. 291 exclude[1].y = 0; 293 exclude[2].x = max_x; // Bottom right corner. 294 exclude[2].y = max_y; 296 exclude[3].x = max_x - difference; // Bottom left corner. 297 exclude[3].y = max_y; 300 gfx::Path exclude_path(exclude, arraysize(exclude)) [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
dropdown_bar_host.cc | 320 Path::Point exclude[4]; local 321 exclude[0].x = max_x - difference; // Top left corner. 322 exclude[0].y = 0; 324 exclude[1].x = max_x; // Top right corner. 325 exclude[1].y = 0; 327 exclude[2].x = max_x; // Bottom right corner. 328 exclude[2].y = max_y; 330 exclude[3].x = max_x - difference; // Bottom left corner. 331 exclude[3].y = max_y; 334 gfx::Path exclude_path(exclude, arraysize(exclude)) [all...] |
/bionic/libdl/ |
Android.mk | 9 # NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from 16 # DO NOT REMOVE --exclude-libs! 18 LOCAL_LDFLAGS := -Wl,--exclude-libs=libgcc.a 20 # for x86, exclude libgcc_eh.a for the same reasons as above 22 LOCAL_LDFLAGS += -Wl,--exclude-libs=libgcc_eh.a
|
/external/chromium_org/build/android/ |
findbugs_diff.py | 8 This runs findbugs with an additional flag to exclude known bugs. 13 Note that this is separate from findbugs_exclude.xml. The "exclude" file has
|
/external/e2fsprogs/resize/ |
Makefile.in | 121 $(top_srcdir)/.exclude-file: 125 | sed -e "s/e2fsprogs/$$a/" > $(top_srcdir)/.exclude-file 126 echo "$(SRCROOT)/build" >> $(top_srcdir)/.exclude-file 127 echo "$(SRCROOT)/rpm.log" >> $(top_srcdir)/.exclude-file 128 echo "$(SRCROOT)/powerquest" >> $(top_srcdir)/.exclude-file 129 echo "$(SRCROOT)/.exclude-file" >> $(top_srcdir)/.exclude-file 131 >> $(top_srcdir)/.exclude-file 133 >> $(top_srcdir)/.exclude-file 135 source_tar_file: $(top_srcdir)/.exclude-fil [all...] |
/external/chromium_org/build/android/gyp/ |
jar.py | 18 for exclude in build_utils.ParseGypList(options.excluded_classes): 20 lambda f: not fnmatch.fnmatch(f, exclude), class_files) 46 help='List of .class file patterns to exclude from the jar.')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 53 def get_tests(package, mask, verbosity, exclude=()): 58 if modname.split(".")[-1] in exclude: 162 exclude = [] 178 exclude.extend(value.split(",")) 185 run_tests(package, mask, verbosity, search_leaks, exclude) 188 def run_tests(package, mask, verbosity, search_leaks, exclude): 189 skipped, testcases = get_tests(package, mask, verbosity, exclude)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 53 def get_tests(package, mask, verbosity, exclude=()): 58 if modname.split(".")[-1] in exclude: 162 exclude = [] 178 exclude.extend(value.split(",")) 185 run_tests(package, mask, verbosity, search_leaks, exclude) 188 def run_tests(package, mask, verbosity, search_leaks, exclude): 189 skipped, testcases = get_tests(package, mask, verbosity, exclude)
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
simplefileflags.py | 39 'Exclude the specified directories (only applicable along with -r or ' 45 'Exclude the specified files', 154 for exclude in FLAGS.exclude_files: 155 if f.endswith('/' + exclude) or f == exclude:
|
/external/chromium_org/third_party/closure_linter/closure_linter/common/ |
simplefileflags.py | 39 'Exclude the specified directories (only applicable along with -r or ' 45 'Exclude the specified files', 154 for exclude in FLAGS.exclude_files: 155 if f.endswith('/' + exclude) or f == exclude:
|