/external/v8/build/android/pylib/utils/ |
findbugs.py | 101 def Run(exclude, classes_to_analyze, auxiliary_classes, output_file, 106 exclude: the exclude xml file, refer to FindBugs's -exclude command option. 133 if exclude: 134 cmd.extend(['-exclude', os.path.abspath(exclude)])
|
/prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-common-artifact-filters/1.4/ |
maven-common-artifact-filters-1.4.jar | |
/frameworks/support/fragment/api21/android/support/v4/app/ |
FragmentTransitionCompat21.java | 60 public static void excludeTarget(Object transitionObject, View view, boolean exclude) { 62 transition.excludeTarget(view, exclude); 96 ArrayList<View> views, boolean exclude) { 100 transition.excludeTarget(views.get(i), exclude); local 106 * Exclude (or remove the exclude) of shared element views from the enter and exit transitions. 112 * @param exclude <code>true</code> to exclude or <code>false</code> to remove the excluded 117 boolean exclude) { 121 excludeViews(enterTransition, sharedElementTransition, views, exclude); [all...] |
/frameworks/opt/net/wifi/tests/wifitests/ |
Android.mk | 74 # Provide jack a list of classes to exclude form code coverage 79 # Generated exclude list: com.android.server.wifi.Test*,com.android.server.wifi.AnotherTest* 91 # Convert class name list to jacoco exclude list
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
migrate_test_names.py | 453 cls, old_entity, new_name, parent_key, exclude): 461 exclude: Properties to not copy from the old entity. 475 for prop, val in old_entity.to_dict(exclude=exclude).iteritems():
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/ |
_base.py | 353 def generateImpliedEndTags(self, exclude=None): 357 and name != exclude): 361 self.generateImpliedEndTags(exclude)
|
/build/core/ |
cxx_stl_setup.mk | 96 my_ldflags += -Wl,--exclude-libs,libunwind_llvm.a
|
/external/chromium-trace/catapult/third_party/gsutil/ |
setup.py | 115 # Note: we exclude the update command here because binary distributions 159 packages=find_packages(exclude=['third_party']),
|
/external/chromium-trace/catapult/third_party/typ/tools/ |
cov.py | 124 cov.exclude('pragma: %s' % pragma)
|
/frameworks/base/core/java/android/transition/ |
Transition.java | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/ |
AdtPrefs.java | 625 * @param exclude if true, exclude library projects 627 public void setSkipLibrariesFromLint(boolean exclude) { 628 if (exclude != mSkipLibrariesFromLint) { 629 mSkipLibrariesFromLint = exclude; 631 if (exclude) { 642 * @return if true, exclude library projects
|
/external/autotest/contrib/ |
coverage.py | 207 def doSuite(self, intro, body, exclude=0): 209 if exclude or (intro and not self.recordNodeLine(intro)): 215 # Finding the exclude lines for else's is tricky, because they aren't 218 # first line are excluded, then we exclude the else. 223 self.doSuite(None, suite, exclude=self.excluded.has_key(l)) 314 self.exclude('# *pragma[: ]*[nN][oO] *[cC][oO][vV][eE][rR]') 461 def exclude(self, re): member in class:coverage 596 source.read(), exclude=self.exclude_re 692 def find_executable_statements(self, text, exclude=None): 696 if exclude 956 def exclude(*args, **kw): function [all...] |
/development/tools/idegen/src/ |
Configuration.java | 142 if (excludes.exclude(path)) { 164 if (excludes.exclude(path)) {
|
/external/okhttp/website/static/ |
jquery.smooth-scroll.min.js | 7 (function(l){function t(l){return l.replace(/(:|\.)/g,"\\$1")}var e="1.4.10",o={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficent:2},r=function(t){var e=[],o=!1,r=t.dir&&"left"==t.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!=document&&this!=window){var t=l(this);t[r]()>0?e.push(this):(t[r](1),o=t[r]()>0,o&&e.push(this),t[r](0))}}),e.length||this.each(function(){"BODY"===this.nodeName&&(e=[this])}),"first"===t.el&&e.length>1&&(e=[e[0]]),e};l.fn.extend({scrollable:function(l){var t=r.call(this,{dir:l});return this.pushStack(t)},firstScrollable:function(l){var t=r.call(this,{el:"first",dir:l});return this.pushStack(t)},smoothScroll:function(e){e=e||{};var o=l.extend({},l.fn.smoothScroll.defaults,e),r=l.smoothScroll.filterPath(location.pathname);return this.unbind("click.smoothscroll").bind("click.smoothscroll",function(e){var n=this,s=l(this),c=o.exclude,i=o.excludeWithin,a=0,f=0,h=!0,u={},d=location.hostname===n.hostname||!n.hostname,m=o.scrollTarget (…)
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
StorageUtils.java | 202 * @param exclude ignore dirs with this name, or {@code null} to ignore. 205 static List<ConcreteFile> listFilesRecursive(File startDir, String exclude, int uid) { 211 if (Objects.equals(dir.getName(), exclude)) continue;
|
/external/chromium-trace/catapult/third_party/coverage/coverage/ |
parser.py | 24 def __init__(self, text=None, filename=None, exclude=None): 28 `exclude`, a regex. 43 self.exclude = exclude 98 if self.exclude: 99 self.excluded = self.lines_matching(self.exclude) 123 # we need to exclude them. The simplest way is to note the
|
/toolchain/binutils/binutils-2.25/gold/ |
yyscript.y | 588 $$.input_sections.exclude = NULL; 616 $$.exclude = $1.exclude; 621 $$.exclude = NULL; 626 $$.exclude = script_string_list_append($1.exclude, $5); 631 $$.exclude = $3; 682 /* A list of file names to exclude. */
|
/external/autotest/frontend/afe/ |
admin.py | 286 return models.AclGroup.objects.exclude(name='Everyone') 305 for drone_set in models.DroneSet.objects.exclude(id=self.instance.id): 307 available_drones = models.Drone.objects.exclude(id__in=drone_ids_used)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
ThemeMenuAction.java | 238 // to exclude on multiple prefixes: Holo, DeviceDefault, Light, ... 270 private List<String> filterThemes(String include, String exclude) { 273 if (theme.startsWith(include) && (exclude == null || !theme.startsWith(exclude))) {
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/ |
ModuleRepo.java | 266 // Exclude all the exclusions 451 File excludeFile = createFilterFile(name, ".exclude", excludes); 455 for (TestFilter exclude : excludes) { 456 test.addExcludeFilter(exclude.getTest()); 489 for (TestFilter exclude : excludes) { 490 if (exclude.getTest() == null) {
|
/external/bison/ |
cfg.mk | 40 # Exclude changelog-check here so that there's less churn in ChangeLog 76 exclude = \ macro 78 $(call exclude, \
|
/external/deqp/executor/tools/ |
xeCommandLineExecutor.cpp | 102 << Option<ExcludeSet> ("e", "exclude", "Comma-separated list of exclude filters.", parseCommaSeparatedList, "") 134 vector<string> exclude; member in struct:__anon8825::CommandLine 199 cmdLine.exclude = opts.getOption<opt::ExcludeSet>(); 595 for (vector<string>::const_iterator filterIter = cmdLine.exclude.begin(); filterIter != cmdLine.exclude.end(); ++filterIter)
|
/external/libcxx/ |
Android.mk | 78 LOCAL_LDFLAGS_arm := -Wl,--exclude-libs,libunwind_llvm.a
|
/frameworks/native/include/ui/ |
Rect.h | 177 // this calculates (Region(*this) - exclude).bounds() efficiently 178 Rect reduce(const Rect& exclude) const;
|
/ndk/sources/cxx-stl/llvm-libc++/tools/ |
upgrade-upstream.sh | 149 ADDED_FILES=$(git ls-files -o --exclude-standard)
|