HomeSort by relevance Sort by last modified time
    Searched refs:propagate (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/owasp/sanitizer/src/main/org/owasp/html/
Handler.java 53 public static final Handler<Throwable> PROPAGATE = new Handler<Throwable>() {
55 Throwables.propagate(th);
  /external/autotest/client/cros/cellular/
cellular_logging.py 27 log.propagate = False
  /external/droiddriver/src/io/appium/droiddriver/exceptions/
DroidDriverException.java 52 * throw DroidDriverException.propagate(t);
57 * @param throwable the Throwable to propagate
61 public static DroidDriverException propagate(Throwable throwable) { method in class:DroidDriverException
  /external/autotest/frontend/afe/
rpcserver_logging.py 25 rpc_logger.propagate = False
  /external/python/cpython2/Demo/tkinter/matt/
not-what-you-might-think-2.py 11 self.Gpanel.propagate(0)
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
SyntheticCountsUtils.h 26 /// Class with methods to propagate synthetic entry counts.
43 static void propagate(const CallGraphType &CG, GetRelBBFreqTy GetRelBBFreq,
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 65 // Expect the unchecked exception to propagate as-is
125 // Expect the unchecked exception to propagate as-is
145 // Expect the checked exception to propagate as-is
208 // Expect the unchecked exception to propagate as-is
231 // Expect the checked exception to propagate as-is
254 // Expect the checked exception to propagate as-is
275 throw Throwables.propagate(t);
290 throw Throwables.propagate(t);
295 // Expect the unchecked exception to propagate as-is
309 throw Throwables.propagate(t)
    [all...]
  /external/jemalloc/include/jemalloc/internal/
bitmap.h 182 /* Propagate group state transitions up the tree. */
238 UNUSED bool propagate; local
245 propagate = (g == 0);
251 /* Propagate group state transitions up the tree. */
252 if (propagate) {
259 propagate = (g == 0);
264 if (!propagate)
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractIdleService.java 58 throw Throwables.propagate(t);
73 throw Throwables.propagate(t);
AbstractScheduledService.java 183 throw Throwables.propagate(t);
205 throw Throwables.propagate(t);
234 throw Throwables.propagate(t);
  /external/droiddriver/src/io/appium/droiddriver/helpers/
DroidDrivers.java 79 throw DroidDriverException.propagate(t);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ForwardingObjectTester.java 66 throw Throwables.propagate(e);
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
SlashdotPolicyExample.java 107 Throwables.propagate(ex); // System.out suppresses IOExceptions
  /external/jemalloc_new/include/jemalloc/internal/
bitmap.h 221 /* Propagate group state transitions up the tree. */
335 UNUSED bool propagate; local
342 propagate = (g == 0);
348 /* Propagate group state transitions up the tree. */
349 if (propagate) {
356 propagate = (g == 0);
361 if (!propagate) {
  /external/droiddriver/src/io/appium/droiddriver/util/
InstrumentationUtils.java 121 throw DroidDriverException.propagate(t);
173 throw DroidDriverException.propagate(t);
  /external/fonttools/Lib/fontTools/misc/
loggingTools.py 130 propagate All loggers have a "propagate" attribute initially set to True,
133 "propagate" attribute to False.
177 logger.propagate = kwargs.pop("propagate", False)
224 logger.propagate = True
447 self.original_propagate = self.logger.propagate
452 self.logger.propagate = False
460 self.logger.propagate = self.original_propagate
553 if not c.propagate
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/actions/view/
CloseKeyboardAction.java 83 throw DroidDriverException.propagate(e);
  /external/guava/guava/src/com/google/common/base/
Throwables.java 56 * throw Throwables.propagate(t);
102 * @param throwable the Throwable to possibly propagate
120 * @param throwable the Throwable to possibly propagate
149 * throw Throwables.propagate(t);
154 * @param throwable the Throwable to propagate
158 public static RuntimeException propagate(Throwable throwable) { method in class:Throwables
  /external/owasp/sanitizer/src/tests/org/owasp/html/
ExamplesTest.java 68 Throwables.propagate(ex);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
SyntheticCountsUtils.cpp 26 // Given an SCC, propagate entry counts along the edge of the SCC nodes.
96 void SyntheticCountsUtils<CallGraphType>::propagate(const CallGraphType &CG, function in class:SyntheticCountsUtils
DivergenceAnalysis.cpp 90 void propagate();
250 void DivergencePropagator::propagate() { function in class:__anon41835::DivergencePropagator
303 DP.propagate();
  /external/llvm/lib/Analysis/
DivergenceAnalysis.cpp 89 void propagate();
249 void DivergencePropagator::propagate() { function in class:__anon30889::DivergencePropagator
302 DP.propagate();
  /external/u-boot/include/linux/
rbtree_augmented.h 26 void (*propagate)(struct rb_node *node, struct rb_node *stop); member in struct:rb_augment_callbacks
185 augment->propagate(parent, successor);
206 augment->propagate(tmp, NULL);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
config.py 223 if "propagate" in opts:
224 propagate = cp.getint(sectname, "propagate")
226 propagate = 1
243 logger.propagate = propagate
262 logger.propagate = 1
626 logger.propagate = True
763 propagate = config.get('propagate', None)
    [all...]
  /external/python/cpython2/Lib/logging/
config.py 230 if "propagate" in opts:
231 propagate = cp.getint(sectname, "propagate")
233 propagate = 1
250 logger.propagate = propagate
269 logger.propagate = 1
639 logger.propagate = True
781 propagate = config.get('propagate', None
    [all...]

Completed in 1761 milliseconds

1 2 3 4 5