/external/webkit/Source/WebCore/gyp/ |
copy-forwarding-and-icu-headers.sh | 3 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++/ |
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/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} ) {
|
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGNonSpeculativeJIT.h | 93 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/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/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...] |
Makefile | 18 EXCLUDE=$(srcdir)/exclude.txt 35 perl ./genheaders.pl --srcdir=$(DOCDIR) --destdir=$(COMMONHDR) --version=$(VERSION) --exclusion-list=$(EXCLUDE) $(GENHEADERS_OPTS)
|
/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/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
lighttpd.conf | 42 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...] |
/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/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-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/valgrind/tsan/ |
mk-self-contained-valgrind.sh | 71 (cd $IN_DIR && tar zcvh --exclude=$EXCLUDE_FILES $IN_FILES) >> $OUT || exit 1
|
/external/webkit/Source/JavaScriptCore/profiler/ |
Profile.h | 50 void exclude(const ProfileNode*);
|
Profile.cpp | 82 void Profile::exclude(const ProfileNode* profileNode) function in class:JSC::Profile 90 currentNode->exclude(callIdentifier);
|
/external/webkit/Tools/BuildSlaveSupport/gtk/crashmon/ |
crashmon | 40 inotifywait -q -m --format '%f' --exclude '.trace.html$' -e close_write "${coredir}" | \
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeLayoutWizard.java | 113 // We don't exclude RelativeLayout even if the current layout is RelativeLayout, 116 Set<String> exclude = new HashSet<String>(); local 117 exclude.add(VIEW_INCLUDE); 118 exclude.add(VIEW_MERGE); 119 exclude.add(VIEW_FRAGMENT); 123 exclude.add(mOldType); 125 mClassNames = WrapInWizard.addLayouts(mProject, mOldType, mTypeCombo, exclude, false);
|
WrapInWizard.java | 103 Set<String> exclude = Collections.singleton(VIEW_INCLUDE); local 104 mClassNames = addLayouts(mProject, mOldType, mTypeCombo, exclude, true); 167 Set<String> exclude, boolean addGestureOverlay) { 218 if (exclude == null || !exclude.contains(className)) { 254 if (exclude == null || !exclude.contains(className)) {
|
/sdk/traceview/src/com/android/traceview/ |
Selection.java | 39 public static Selection exclude(String name, Object value) { method in class:Selection 40 return new Selection(Action.Exclude, name, value); 68 Highlight, Include, Exclude, Aggregate
|
/tools/motodev/src/plugins/videos/src/com/motorola/studio/android/videos/ui/views/ |
VideoPlayerComposite.java | 109 data.exclude = true; 125 data.exclude = true; 251 ((GridData) globalVideoTitle.getLayoutData()).exclude = false; 257 ((GridData) browser.getLayoutData()).exclude = false;
|