Searched refs:exclude (Results 1 - 25 of 53) sorted by relevance

123

/external/webkit/Source/WebCore/gyp/
H A Dcopy-forwarding-and-icu-headers.sh3 rsync -aq --exclude ".svn" --exclude ".DS_Store" "$SRCROOT/../ForwardingHeaders" "$BUILT_PRODUCTS_DIR/$PRIVATE_HEADERS_FOLDER_PATH"
4 rsync -aq --exclude ".svn" --exclude ".DS_Store" "$SRCROOT/../icu" "$BUILT_PRODUCTS_DIR/$PRIVATE_HEADERS_FOLDER_PATH"
/external/oprofile/libutil++/
H A Dstring_filter.cpp3 * 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())
H A Dglob_filter.cpp3 * Filter strings based on globbed exclude/include list
30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str));
31 if (cit != exclude.end())
H A Dpath_filter.cpp3 * 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())
H A Dstring_filter.h3 * 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/qemu/distrib/sdl-1.2.15/src/main/macos/exports/
H A Dgendef.pl16 if ( not $exclude{$1} ) {
/external/antlr/antlr-3.4/runtime/Perl5/
H A DMakefile.PL9 --exclude=blib \
10 --exclude='*~' \
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGNonSpeculativeJIT.h93 void silentSpillGPR(VirtualRegister spillMe, GPRReg exclude = InvalidGPRReg)
98 if (!info.needsSpill() || (info.gpr() == exclude))
112 void silentSpillFPR(VirtualRegister spillMe, GPRReg canTrample, FPRReg exclude = InvalidFPRReg)
117 if (!info.needsSpill() || (info.fpr() == exclude))
124 void silentFillGPR(VirtualRegister spillMe, GPRReg exclude = InvalidGPRReg)
127 if (info.gpr() == exclude)
152 void silentFillFPR(VirtualRegister spillMe, GPRReg canTrample, FPRReg exclude = InvalidFPRReg)
155 if (info.fpr() == exclude)
171 void silentSpillAllRegisters(GPRReg exclude, GPRReg preserve = InvalidGPRReg) argument
178 silentSpillGPR(name, exclude);
186 silentSpillAllRegisters(FPRReg exclude, GPRReg preserve = InvalidGPRReg) argument
201 silentFillAllRegisters(GPRReg exclude) argument
216 silentFillAllRegisters(FPRReg exclude) argument
[all...]
/external/e2fsprogs/util/
H A Dgen-tarball.in10 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/icu4c/tools/gendraft/
H A Dgenheaders.pl61 "--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);
90 writeFile($systemFile, $systemHeaderName, $destDir, $systemAppend, $systemDefine, \%exclude);
[all...]
H A DMakefile18 EXCLUDE=$(srcdir)/exclude.txt
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dlighttpd.conf42 static-file.exclude-extensions = ( ".php", ".pl", ".cgi" )
/external/chromium/chrome/browser/ui/views/
H A Ddropdown_bar_host.cc286 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, arraysiz
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dsimplefileflags.py154 for exclude in FLAGS.exclude_files:
155 if f.endswith('/' + exclude) or f == exclude:
/external/e2fsprogs/resize/
H A DMakefile.in121 $(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
[all...]
/external/valgrind/tsan/
H A Dmk-self-contained-valgrind.sh71 (cd $IN_DIR && tar zcvh --exclude=$EXCLUDE_FILES $IN_FILES) >> $OUT || exit 1
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfile.h50 void exclude(const ProfileNode*);
H A DProfile.cpp82 void Profile::exclude(const ProfileNode* profileNode) function in class:JSC::Profile
90 currentNode->exclude(callIdentifier);
/external/webkit/Tools/BuildSlaveSupport/gtk/crashmon/
H A Dcrashmon40 inotifywait -q -m --format '%f' --exclude '.trace.html$' -e close_write "${coredir}" | \
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DGridDataFactory.java537 public GridDataFactory exclude(boolean value) { method in class:GridDataFactory
538 m_data.exclude = value;
/external/webkit/Source/WebCore/inspector/front-end/
H A DTopDownProfileDataGridTree.js91 exclude: function(/*ProfileDataGridNode*/ profileDataGrideNode)
/external/chromium/base/mac/
H A Dmac_util.h81 bool SetFileBackupExclusion(const FilePath& file_path, bool exclude);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFramePrivate.h91 - (void)_setExcludeFromTextSearch:(bool)exclude;
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py301 def __init__ (self, events, exclude=True):
303 self.exclude = exclude
306 return not self.exclude
307 return self.exclude
310 def __init__ (self, notes, exclude=True):
312 self.exclude = exclude
316 return not self.exclude
317 return self.exclude
[all...]
/external/webkit/Source/WebCore/page/
H A DFrame.h345 inline void Frame::setExcludeFromTextSearch(bool exclude) argument
347 m_excludeFromTextSearch = exclude;

Completed in 3546 milliseconds

123