HomeSort by relevance Sort by last modified time
    Searched refs:exclude (Results 1 - 25 of 2347) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 15 EXCLUDE="
35 for exclude in ${EXCLUDE}; do
36 echo "Excluding $exclude"
37 rm -r $exclude
  /external/antlr/antlr-3.4/runtime/Perl5/
Makefile.PL 9 --exclude=blib \
10 --exclude='*~' \
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
examples.sh 17 # List of script names to exclude.
22 example_tests=$(filter_strings "${example_tests}" "${word}" exclude)
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/exports/
gendef.pl 16 if ( not $exclude{$1} ) {
  /developers/build/
build.gradle 123 // Copy entire sample into output -- since it's already in Gradle format, we'll explicitly exclude content that
127 // Paths to exclude from output
128 exclude ".gradle"
129 exclude "_index.jd"
130 exclude "bin"
131 exclude "buildSrc"
132 exclude "local.properties"
133 exclude "template-params.xml"
134 exclude "*.iml"
135 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/chromium_org/tools/telemetry/build/
generate_telemetry_harness.sh 15 --exclude=*/third_party/trace-viewer/test_data/* \
  /frameworks/testing/espresso/espresso-contrib/
build.gradle 32 exclude 'LICENSE.txt'
  /frameworks/testing/espresso/espresso-contrib-tests/
build.gradle 29 exclude 'LICENSE.txt'
  /frameworks/testing/espresso/espresso-sample/
build.gradle 29 exclude 'LICENSE.txt'
  /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;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
TransitionHelper.java 102 public void exclude(Object transition, int targetId, boolean exclude); method in interface:TransitionHelper.TransitionHelperVersionImpl
104 public void exclude(Object transition, View targetView, boolean exclude); method in interface:TransitionHelper.TransitionHelperVersionImpl
106 public void excludeChildren(Object transition, int targetId, boolean exclude);
108 public void excludeChildren(Object transition, View target, boolean exclude);
231 public void exclude(Object transition, int targetId, boolean exclude) { method in class:TransitionHelper.TransitionHelperStubImpl
235 public void exclude(Object transition, View targetView, boolean exclude) { method in class:TransitionHelper.TransitionHelperStubImpl
403 public void exclude(Object transition, int targetId, boolean exclude) { method in class:TransitionHelper.TransitionHelperKitkatImpl
408 public void exclude(Object transition, View targetView, boolean exclude) { method in class:TransitionHelper.TransitionHelperKitkatImpl
611 public void exclude(Object transition, int targetId, boolean exclude) { method in class:TransitionHelper
615 public void exclude(Object transition, View targetView, boolean exclude) { method in class:TransitionHelper
    [all...]
  /frameworks/base/core/java/android/app/
IAppTask.aidl 30 void setExcludeFromRecents(boolean exclude);
  /frameworks/testing/espresso/espresso-lib-tests/
build.gradle 29 exclude 'LICENSE.txt'
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host.cc 303 Path::Point exclude[4]; local
304 exclude[0].x = max_x - difference; // Top left corner.
305 exclude[0].y = 0;
307 exclude[1].x = max_x; // Top right corner.
308 exclude[1].y = 0;
310 exclude[2].x = max_x; // Bottom right corner.
311 exclude[2].y = max_y;
313 exclude[3].x = max_x - difference; // Bottom left corner.
314 exclude[3].y = max_y;
317 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
21 LOCAL_LDFLAGS_x86 := -Wl,--exclude-libs=libgcc_eh.a
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
TransitionHelperKitkat.java 163 static void exclude(Object transition, int targetId, boolean exclude) { method in class:TransitionHelperKitkat
164 ((Transition) transition).excludeTarget(targetId, exclude);
167 static void exclude(Object transition, View targetView, boolean exclude) { method in class:TransitionHelperKitkat
168 ((Transition) transition).excludeTarget(targetView, exclude);
171 static void excludeChildren(Object transition, int targetId, boolean exclude) {
172 ((Transition) transition).excludeChildren(targetId, exclude);
175 static void excludeChildren(Object transition, View targetView, boolean exclude) {
176 ((Transition) transition).excludeChildren(targetView, exclude);
    [all...]
  /external/libcxx/
Makefile 37 tar cf - --exclude=".*" --exclude=support \
38 --exclude=CMakeLists.txt *) | \

Completed in 1183 milliseconds

1 2 3 4 5 6 7 8 91011>>