Home
last modified time | relevance | path

Searched refs:exclude (Results 1 – 25 of 137) sorted by relevance

123456

/external/webkit/Source/WebCore/gyp/
DWebCore.gyp68 ['exclude', 'bindings/[^/]+/'],
74 ['exclude', 'thirdparty/'],
77 …['exclude', '(android|brew|cairo|chromium|curl|efl|freetype|fftw|gstreamer|gtk|haiku|linux|mkl|ope…
78 …['exclude', '(Android|Brew|Cairo|Curl|Chromium|Efl|Haiku|Gtk|Linux|OpenType|Qt|Safari|Soup|Symbian…
79 ['exclude', 'Chromium[^/]*\\.(cpp|mm?)$'],
81 ['exclude', 'platform/image-decoders/'],
82 ['exclude', 'platform/image-encoders/'],
84 ['exclude', 'bridge/testbindings\\.cpp$'], # Remove from GYPI?
85 ['exclude', 'bridge/testbindings\\.mm$'], # Remove from GYPI?
86 ['exclude', 'bridge/testqtbindings\\.cpp$'], # Remove from GYPI?
[all …]
Dcopy-forwarding-and-icu-headers.sh3 rsync -aq --exclude ".svn" --exclude ".DS_Store" "$SRCROOT/../ForwardingHeaders" "$BUILT_PRODUCTS_D…
4 rsync -aq --exclude ".svn" --exclude ".DS_Store" "$SRCROOT/../icu" "$BUILT_PRODUCTS_DIR/$PRIVATE_HE…
/external/webkit/Source/JavaScriptCore/JavaScriptCore.gyp/
DJavaScriptCore.gyp114 # First exclude everything ...
115 ['exclude', '../'],
119 ['exclude', '../wtf/android'],
120 ['exclude', '../wtf/brew'],
121 ['exclude', '../wtf/efl'],
122 ['exclude', '../wtf/gobject'],
123 ['exclude', '../wtf/gtk'],
124 ['exclude', '../wtf/haiku'],
125 ['exclude', '../wtf/mac'],
126 ['exclude', '../wtf/qt'],
[all …]
/external/icu4c/tools/gendraft/
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 …$deprecatedFile, $deprecatedHeaderName, $destDir, $deprecatedAppend, $deprecatedDefine, \%exclude);
89 …iteFile($obsoleteFile, $obsoleteHeaderName, $destDir, $obsoleteAppend, $obsoleteDefine, \%exclude);
90 writeFile($systemFile, $systemHeaderName, $destDir, $systemAppend, $systemDefine, \%exclude);
[all …]
/external/webkit/Source/JavaScriptCore/dfg/
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)
178 silentSpillGPR(name, exclude);
[all …]
/external/webkit/Source/JavaScriptCore/gyp/
DJavaScriptCore.gyp78 ['exclude', 'API/tests/'],
79 ['exclude', 'ForwardingHeaders/'],
80 ['exclude', '(?<!unicode)/icu/'],
81 ['exclude', 'os-win32/'],
82 ['exclude', 'qt/'],
83 ['exclude', 'wtf/(android|brew|efl|gtk|haiku|qt|wince|wx)/'],
84 ['exclude', 'wtf/unicode/brew/'],
85 ['exclude', 'wtf/unicode/glib/'],
86 ['exclude', 'wtf/unicode/qt4/'],
87 ['exclude', 'wtf/unicode/wince/'],
[all …]
/external/oprofile/libutil++/
Dpath_filter.cpp29 cit = find_if(exclude.begin(), exclude.end(), in match()
31 if (cit != exclude.end()) in match()
43 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(base)); in match()
44 if (cit != exclude.end()) in match()
Dstring_filter.cpp23 exclude(separate_token(exclude_patterns, ',')) in string_filter()
31 exclude(exclude_patterns) in string_filter()
40 cit = find(exclude.begin(), exclude.end(), str); in match()
41 if (cit != exclude.end()) in match()
Dglob_filter.cpp30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str)); in match()
31 if (cit != exclude.end()) in match()
Dstring_filter.h52 std::vector<std::string> exclude; variable
/external/webkit/Source/WebCore/WebCore.gyp/
DWebCore.gyp1202 ['exclude', '.*'],
1205 ['exclude', 'AllInOne\\.cpp$'],
1222 ['exclude', '.*'],
1229 ['exclude', 'AllInOne\\.cpp$'],
1249 ['exclude', '.*'],
1253 …['exclude', '(android|brew|cairo|ca|cf|cg|curl|efl|freetype|gstreamer|gtk|haiku|linux|mac|opengl|o…
1254 …['exclude', '(?<!Chromium)(Android|Cairo|CF|CG|Curl|Gtk|JSC|Linux|Mac|OpenType|POSIX|Posix|Qt|Safa…
1258 ['exclude', 'platform/LinkHash\\.cpp$'],
1259 ['exclude', 'platform/MIMETypeRegistry\\.cpp$'],
1260 ['exclude', 'platform/Theme\\.cpp$'],
[all …]
/external/e2fsprogs/util/
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) \
Dall.exclude12 .exclude-file
/external/chromium/chrome/browser/ui/views/
Ddropdown_bar_host.cc286 Path::Point exclude[4]; in UpdateWindowEdges() local
287 exclude[0].x = max_x - difference; // Top left corner. in UpdateWindowEdges()
288 exclude[0].y = 0; in UpdateWindowEdges()
290 exclude[1].x = max_x; // Top right corner. in UpdateWindowEdges()
291 exclude[1].y = 0; in UpdateWindowEdges()
293 exclude[2].x = max_x; // Bottom right corner. in UpdateWindowEdges()
294 exclude[2].y = max_y; in UpdateWindowEdges()
296 exclude[3].x = max_x - difference; // Bottom left corner. in UpdateWindowEdges()
297 exclude[3].y = max_y; in UpdateWindowEdges()
300 gfx::Path exclude_path(exclude, arraysize(exclude)); in UpdateWindowEdges()
/external/e2fsprogs/resize/
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-file
138 -X $$a/.exclude-file $$a | \
[all …]
/external/webkit/Source/WebCore/WebCore.vcproj/
DcopyWebCoreResourceFiles.cmd2 xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\inspector\front-end\*" "%CONFIGURATIONBUILDD…
3 xcopy /y /d /s /exclude:xcopy.excludes "%CONFIGURATIONBUILDDIR%\obj\WebCore\DerivedSources\Inspecto…
5 xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\localizedStrings.js" "%CONFIGU…
6 xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\Localizable.strings" "%CONFIGU…
/external/webkit/PerformanceTests/SunSpider/
DSunSpider.make2 …xcopy /exclude:$(SRCROOT)\xcopy.excludes "$(SRCROOT)\tests" "$(DSTROOT)\AppleInternal\tests\SunSpi…
3 …xcopy /exclude:$(SRCROOT)\xcopy.excludes "$(SRCROOT)\resources" "$(DSTROOT)\AppleInternal\tests\Su…
4 …xcopy /exclude:$(SRCROOT)\xcopy.excludes "$(SRCROOT)\sunspider" "$(DSTROOT)\AppleInternal\tests\Su…
/external/protobuf/
D.gitignore1 # git-ls-files --others --exclude-from=.git/info/exclude
4 # exclude patterns (uncomment them if you want to use them):
/external/webkit/Source/JavaScriptCore/profiler/
DProfile.cpp82 void Profile::exclude(const ProfileNode* profileNode) in exclude() function in JSC::Profile
90 currentNode->exclude(callIdentifier); in exclude()
/external/sonivox/jet_tools/JetCreator/
Dmidifile.py301 def __init__ (self, events, exclude=True): argument
303 self.exclude = exclude
306 return not self.exclude
307 return self.exclude
310 def __init__ (self, notes, exclude=True): argument
312 self.exclude = exclude
316 return not self.exclude
317 return self.exclude
320 def __init__ (self, channel, exclude=True): argument
322 self.exclude = exclude
[all …]
/external/qemu/distrib/sdl-1.2.12/src/main/macos/exports/
Dgendef.pl16 if ( not $exclude{$1} ) {
/external/chromium/base/
Dbase.gypi358 ['exclude', '^nix/'],
380 # For now, just test the *BSD platforms enough to exclude them.
383 'sources/': [ ['exclude', '_freebsd\\.cc$'] ],
387 'sources/': [ ['exclude', '_openbsd\\.cc$'] ],
391 'sources/': [ ['exclude', '^win/'] ],
479 ['exclude', '/xdg_user_dirs/'],
480 ['exclude', '_nss\.cc$'],
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dlighttpd.conf42 static-file.exclude-extensions = ( ".php", ".pl", ".cgi" )
/external/webkit/Tools/BuildSlaveSupport/gtk/crashmon/
Dcrashmon40 inotifywait -q -m --format '%f' --exclude '.trace.html$' -e close_write "${coredir}" | \
/external/chromium/webkit/glue/
Dwebkit_glue.gypi450 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'],
451 ['exclude', r'/gtk_']],
454 'sources/': [['exclude', '_mac\\.(cc|mm)$']],
459 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']],
474 'sources/': [['exclude', '_win\\.cc$']],
479 'sources/': [['exclude', '_posix\\.cc$']],

123456