Home
last modified time | relevance | path

Searched refs:to_exclude (Results 1 – 9 of 9) sorted by relevance

/external/cronet/tot/build/android/pylib/utils/
Dinstrumentation_tracing.py60 def _shouldTrace(frame, to_include, to_exclude, included, excluded): argument
94 if to_exclude:
98 for pattern in to_exclude:
105 def _generate_trace_function(to_include, to_exclude): argument
107 to_exclude = {re.compile(item) for item in to_exclude}
108 to_exclude.update({re.compile(item) for item in DEFAULT_EXCLUDE})
131 if _shouldTrace(frame, to_include, to_exclude, included, excluded):
184 def start_instrumenting(output_file, to_include=(), to_exclude=()): argument
188 traceFunc = _generate_trace_function(to_include, to_exclude)
201 def Instrument(output_file, to_include=(), to_exclude=()): argument
[all …]
/external/angle/build/android/pylib/utils/
Dinstrumentation_tracing.py60 def _shouldTrace(frame, to_include, to_exclude, included, excluded): argument
94 if to_exclude:
98 for pattern in to_exclude:
105 def _generate_trace_function(to_include, to_exclude): argument
107 to_exclude = {re.compile(item) for item in to_exclude}
108 to_exclude.update({re.compile(item) for item in DEFAULT_EXCLUDE})
131 if _shouldTrace(frame, to_include, to_exclude, included, excluded):
184 def start_instrumenting(output_file, to_include=(), to_exclude=()): argument
188 traceFunc = _generate_trace_function(to_include, to_exclude)
201 def Instrument(output_file, to_include=(), to_exclude=()): argument
[all …]
/external/cronet/stable/build/android/pylib/utils/
Dinstrumentation_tracing.py60 def _shouldTrace(frame, to_include, to_exclude, included, excluded): argument
94 if to_exclude:
98 for pattern in to_exclude:
105 def _generate_trace_function(to_include, to_exclude): argument
107 to_exclude = {re.compile(item) for item in to_exclude}
108 to_exclude.update({re.compile(item) for item in DEFAULT_EXCLUDE})
131 if _shouldTrace(frame, to_include, to_exclude, included, excluded):
184 def start_instrumenting(output_file, to_include=(), to_exclude=()): argument
188 traceFunc = _generate_trace_function(to_include, to_exclude)
201 def Instrument(output_file, to_include=(), to_exclude=()): argument
[all …]
/external/pytorch/aten/src/ATen/functorch/
DInterpreter.cpp60 auto to_exclude = local_keyset.excluded_; in setup_dispatch_key_tls() local
61 to_exclude = to_exclude | keysToExcludeWhenEnteringDynamicLayer(key); in setup_dispatch_key_tls()
62 to_exclude = to_exclude - keysForEnteringDynamicLayer(key); in setup_dispatch_key_tls()
63 local_keyset.excluded_ = to_exclude; in setup_dispatch_key_tls()
/external/pigweed/pw_watch/py/pw_watch/
Dcommon.py197 def minimal_watch_directories(to_watch: Path, to_exclude: Iterable[Path]):
207 for directory_to_exclude in to_exclude
/external/cronet/stable/build/android/pylib/local/device/
Dlocal_device_environment.py144 to_exclude = ["logging"]
146 to_exclude)
/external/cronet/tot/build/android/pylib/local/device/
Dlocal_device_environment.py144 to_exclude = ["logging"]
146 to_exclude)
/external/angle/build/android/pylib/local/device/
Dlocal_device_environment.py144 to_exclude = ["logging"]
146 to_exclude)
/external/bazelbuild-rules_java/java/common/rules/impl/
Djava_binary_impl.bzl377 to_exclude = depset(transitive = [
382 if to_exclude:
402 excluded_set = {x: None for x in to_exclude.to_list()}