/external/grpc-grpc/src/python/grpcio/grpc/framework/interfaces/face/ |
D | utilities.py | 41 def unary_unary_inline(behavior): argument 42 """Creates an face.MethodImplementation for the given behavior. 45 behavior: The implementation of a unary-unary RPC method as a callable value 50 An face.MethodImplementation derived from the given behavior. 53 style.Service.INLINE, behavior, None, None, 57 def unary_stream_inline(behavior): argument 58 """Creates an face.MethodImplementation for the given behavior. 61 behavior: The implementation of a unary-stream RPC method as a callable 66 An face.MethodImplementation derived from the given behavior. 69 style.Service.INLINE, None, behavior, None, [all …]
|
/external/jemalloc/test/integration/ |
D | xallocx.c | 162 "Unexpected xallocx() behavior"); in TEST_BEGIN() 166 "Unexpected xallocx() behavior"); in TEST_BEGIN() 170 "Unexpected xallocx() behavior"); in TEST_BEGIN() 172 "Unexpected xallocx() behavior"); in TEST_BEGIN() 192 "Unexpected xallocx() behavior"); in TEST_BEGIN() 194 "Unexpected xallocx() behavior"); in TEST_BEGIN() 198 "Unexpected xallocx() behavior"); in TEST_BEGIN() 200 "Unexpected xallocx() behavior"); in TEST_BEGIN() 202 "Unexpected xallocx() behavior"); in TEST_BEGIN() 204 "Unexpected xallocx() behavior"); in TEST_BEGIN() [all …]
|
/external/grpc-grpc/src/python/grpcio/grpc/framework/foundation/ |
D | callable_util.py | 54 def _call_logging_exceptions(behavior, message, *args, **kwargs): argument 56 return _EasyOutcome(Outcome.Kind.RETURNED, behavior(*args, **kwargs), 63 def with_exceptions_logged(behavior, message): argument 67 behavior: Any callable. 68 message: A string to log if the behavior raises an exception. 71 A callable that when executed invokes the given behavior. The returned 72 callable takes the same arguments as the given behavior but returns a 73 future.Outcome describing whether the given behavior returned a value or 77 @functools.wraps(behavior) 79 return _call_logging_exceptions(behavior, message, *args, **kwargs) [all …]
|
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/ |
D | _time.py | 29 for behavior in behaviors: 31 behavior() 33 _LOGGER.exception('Exception calling behavior "%r"!', behavior) 82 def __init__(self, state, behavior, time): argument 84 self._behavior = behavior 161 def _call_at(self, behavior, time): argument 163 self._state.times_to_behaviors[time].append(behavior) 170 return _Future(self._state, behavior, time) 175 def call_in(self, behavior, delay): argument 176 return self._call_at(behavior, _time.time() + delay) [all …]
|
/external/clang/test/SemaObjC/ |
D | objc-literal-comparison.m | 39 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{… 40 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{… 41 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{… 42 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{… 44 …/ expected-warning{{direct comparison of an array literal has undefined behavior}} expected-note{{… 45 …pected-warning{{direct comparison of a dictionary literal has undefined behavior}} expected-note{{… 46 … expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{… 47 … expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{… 48 … expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{… 49 …expected-warning{{direct comparison of a boxed expression has undefined behavior}} expected-note{{… [all …]
|
/external/e2fsprogs/tests/m_error_behavior/ |
D | expect | 2 Errors behavior: Continue 4 Errors behavior: Continue 6 Errors behavior: Panic 8 Errors behavior: Remount read-only 11 Errors behavior: Continue 13 Errors behavior: Panic 15 Errors behavior: Remount read-only 18 Errors behavior: Continue 20 Errors behavior: Panic 22 Errors behavior: Remount read-only [all …]
|
D | script | 1 test_description="mke2fs with error behavior" 36 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 40 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 44 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 48 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 53 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 59 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 64 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 69 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT 75 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT [all …]
|
/external/jemalloc_new/test/integration/ |
D | xallocx.c | 129 "Unexpected xallocx() behavior"); in TEST_BEGIN() 133 "Unexpected xallocx() behavior"); in TEST_BEGIN() 137 "Unexpected xallocx() behavior"); in TEST_BEGIN() 139 "Unexpected xallocx() behavior"); in TEST_BEGIN() 158 "Unexpected xallocx() behavior"); in TEST_BEGIN() 160 "Unexpected xallocx() behavior"); in TEST_BEGIN() 164 "Unexpected xallocx() behavior"); in TEST_BEGIN() 166 "Unexpected xallocx() behavior"); in TEST_BEGIN() 168 "Unexpected xallocx() behavior"); in TEST_BEGIN() 170 "Unexpected xallocx() behavior"); in TEST_BEGIN() [all …]
|
/external/easymock/src/org/easymock/internal/ |
D | RecordState.java | 37 private final IMocksBehavior behavior; field in RecordState 66 public RecordState(IMocksBehavior behavior) { in RecordState() argument 67 this.behavior = behavior; in RecordState() 137 behavior.addStub(lastInvocation, Result.createReturnResult(value)); in andStubReturn() 149 behavior.addStub( in setDefaultReturnValue() 156 requireMethodCall("stub behavior"); in asStub() 158 behavior.addStub(lastInvocation, Result.createReturnResult(null)); in asStub() 166 behavior.addStub( in setDefaultVoidCallable() 178 behavior.addStub(lastInvocation, Result.createThrowResult(throwable)); in andStubThrow() 189 behavior.addStub( in setDefaultThrowable() [all …]
|
D | ReplayState.java | 28 private final IMocksBehavior behavior; field in ReplayState 32 public ReplayState(IMocksBehavior behavior) { in ReplayState() argument 33 this.behavior = behavior; in ReplayState() 38 behavior.checkThreadSafety(); in invoke() 40 if (behavior.isThreadSafe()) { in invoke() 57 Result result = behavior.addActual(invocation); in invokeInner() 72 behavior.verify(); in verify()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/Lint/ |
D | check-zero-divide.ll | 24 ; CHECK: Undefined behavior: Division by zero 31 ; CHECK: Undefined behavior: Division by zero 38 ; CHECK: Undefined behavior: Division by zero 45 ; CHECK: Undefined behavior: Division by zero 52 ; CHECK: Undefined behavior: Division by zero 59 ; CHECK: Undefined behavior: Division by zero 66 ; CHECK: Undefined behavior: Division by zero 73 ; CHECK: Undefined behavior: Division by zero
|
/external/llvm/test/Analysis/Lint/ |
D | check-zero-divide.ll | 24 ; CHECK: Undefined behavior: Division by zero 31 ; CHECK: Undefined behavior: Division by zero 38 ; CHECK: Undefined behavior: Division by zero 45 ; CHECK: Undefined behavior: Division by zero 52 ; CHECK: Undefined behavior: Division by zero 59 ; CHECK: Undefined behavior: Division by zero 66 ; CHECK: Undefined behavior: Division by zero 73 ; CHECK: Undefined behavior: Division by zero
|
/external/skqp/experimental/canvaskit/canvaskit/ |
D | CODE_OF_CONDUCT.md | 14 Examples of behavior that contributes to creating a positive environment 23 Examples of unacceptable behavior by participants include: 37 behavior and are expected to take appropriate and fair corrective action in 38 response to any instances of unacceptable behavior. 56 Steward has a reasonable belief that an individual's behavior may have a 63 to engage in behavior that violates the project’s code of conduct. 66 the behavior directly with those involved. Many issues can be resolved quickly 69 behavior is threatening or harassing, report it. We are dedicated to providing
|
/external/skqp/modules/pathkit/npm-wasm/ |
D | CODE_OF_CONDUCT.md | 14 Examples of behavior that contributes to creating a positive environment 23 Examples of unacceptable behavior by participants include: 37 behavior and are expected to take appropriate and fair corrective action in 38 response to any instances of unacceptable behavior. 56 Steward has a reasonable belief that an individual's behavior may have a 63 to engage in behavior that violates the project’s code of conduct. 66 the behavior directly with those involved. Many issues can be resolved quickly 69 behavior is threatening or harassing, report it. We are dedicated to providing
|
/external/clang/test/Sema/ |
D | empty1.c | 47 …cted-warning {{subtraction of pointers to type 'struct emp_1' of zero size has undefined behavior}} in func_1() 51 …cted-warning {{subtraction of pointers to type 'struct emp_1' of zero size has undefined behavior}} in func_2() 55 …cted-warning {{subtraction of pointers to type 'struct emp_1' of zero size has undefined behavior}} in func_3() 59 …cted-warning {{subtraction of pointers to type 'struct emp_1' of zero size has undefined behavior}} in func_4() 63 …cted-warning {{subtraction of pointers to type 'struct emp_1' of zero size has undefined behavior}} in func_5() 68 …ected-warning {{subtraction of pointers to type 'union emp_2' of zero size has undefined behavior}} in func_6() 78 …warning {{subtraction of pointers to type 'struct emp_1 [10]' of zero size has undefined behavior}} in func_8() 86 … expected-warning {{subtraction of pointers to type 'int [0]' of zero size has undefined behavior}} in func_10()
|
/external/skqp/modules/pathkit/npm-asmjs/ |
D | CODE_OF_CONDUCT.md | 14 Examples of behavior that contributes to creating a positive environment 23 Examples of unacceptable behavior by participants include: 37 behavior and are expected to take appropriate and fair corrective action in 38 response to any instances of unacceptable behavior. 56 Steward has a reasonable belief that an individual's behavior may have a 63 to engage in behavior that violates the project’s code of conduct. 66 the behavior directly with those involved. Many issues can be resolved quickly 69 behavior is threatening or harassing, report it. We are dedicated to providing
|
/external/skia/modules/pathkit/npm-asmjs/ |
D | CODE_OF_CONDUCT.md | 14 Examples of behavior that contributes to creating a positive environment 23 Examples of unacceptable behavior by participants include: 37 behavior and are expected to take appropriate and fair corrective action in 38 response to any instances of unacceptable behavior. 56 Steward has a reasonable belief that an individual's behavior may have a 63 to engage in behavior that violates the project’s code of conduct. 66 the behavior directly with those involved. Many issues can be resolved quickly 69 behavior is threatening or harassing, report it. We are dedicated to providing
|
/external/skia/modules/canvaskit/canvaskit/ |
D | CODE_OF_CONDUCT.md | 14 Examples of behavior that contributes to creating a positive environment 23 Examples of unacceptable behavior by participants include: 37 behavior and are expected to take appropriate and fair corrective action in 38 response to any instances of unacceptable behavior. 56 Steward has a reasonable belief that an individual's behavior may have a 63 to engage in behavior that violates the project’s code of conduct. 66 the behavior directly with those involved. Many issues can be resolved quickly 69 behavior is threatening or harassing, report it. We are dedicated to providing
|
/external/skia/modules/pathkit/npm-wasm/ |
D | CODE_OF_CONDUCT.md | 14 Examples of behavior that contributes to creating a positive environment 23 Examples of unacceptable behavior by participants include: 37 behavior and are expected to take appropriate and fair corrective action in 38 response to any instances of unacceptable behavior. 56 Steward has a reasonable belief that an individual's behavior may have a 63 to engage in behavior that violates the project’s code of conduct. 66 the behavior directly with those involved. Many issues can be resolved quickly 69 behavior is threatening or harassing, report it. We are dedicated to providing
|
/external/llvm/test/Other/ |
D | lint.ll | 67 ; CHECK: Undefined behavior: Null pointer dereference 69 ; CHECK: Undefined behavior: Null pointer dereference 83 ; CHECK: Undefined behavior: Buffer overflow 86 ; CHECK: Undefined behavior: Buffer overflow 90 ; CHECK: Undefined behavior: Buffer overflow 104 ; CHECK-NOT: Undefined behavior: Buffer overflow 125 ; CHECK: Undefined behavior: Branch to non-blockaddress 132 ; CHECK: Undefined behavior: Call with "tail" keyword references alloca 168 ; CHECK: Undefined behavior: Undef pointer dereference 186 ; CHECK: Undefined behavior: indirectbr with no destinations
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Other/ |
D | lint.ll | 67 ; CHECK: Undefined behavior: Null pointer dereference 69 ; CHECK: Undefined behavior: Null pointer dereference 83 ; CHECK: Undefined behavior: Buffer overflow 86 ; CHECK: Undefined behavior: Buffer overflow 90 ; CHECK: Undefined behavior: Buffer overflow 104 ; CHECK-NOT: Undefined behavior: Buffer overflow 125 ; CHECK: Undefined behavior: Branch to non-blockaddress 132 ; CHECK: Undefined behavior: Call with "tail" keyword references alloca 168 ; CHECK: Undefined behavior: Undef pointer dereference 186 ; CHECK: Undefined behavior: indirectbr with no destinations
|
/external/mockito/src/main/java/org/mockito/quality/ |
D | Strictness.java | 17 * Configures the "strictness" of Mockito, affecting the behavior of stubbings and verification. 21 * How strictness influences the behavior of the test? 28 * <li>{@link Strictness#LENIENT} - no added behavior. 34 …* The default behavior of Mockito 2.x when {@link JUnitRule} or {@link MockitoJUnitRunner} a… 45 * No extra strictness. Mockito 1.x behavior. 58 * Default Mockito 2.x behavior. 75 * Adds following behavior:
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | Lint.cpp | 11 // which produce undefined or likely unintended behavior in LLVM IR. 31 // for the same kinds of things and turns instructions with undefined behavior 184 // This isn't undefined behavior, it's just a little unusual, and it's a in visitFunction() 201 "Undefined behavior: Caller and callee calling convention differ", in visitCallSite() 210 "Undefined behavior: Call argument count mismatches callee " in visitCallSite() 214 "Undefined behavior: Call return type mismatches " in visitCallSite() 226 "Undefined behavior: Call argument type mismatches " in visitCallSite() 258 "Undefined behavior: Call with \"tail\" keyword references " in visitCallSite() 290 "Undefined behavior: memcpy source and destination overlap", &I); in visitCallSite() 315 "Undefined behavior: va_start called in a non-varargs function", in visitCallSite() [all …]
|
/external/libcxx/docs/DesignDocs/ |
D | VisibilityMacros.rst | 36 **Windows Behavior**: Any symbol marked `dllimport` cannot be overridden 77 This macro can be defined by users to control the behavior they want from 91 control the behavior they want by defining `_LIBCPP_HIDE_FROM_ABI_PER_TU` 105 **GCC Behavior**: GCC does not support Clang's `type_visibility(...)` 109 **Windows Behavior**: DLLs do not support dllimport/export on class templates. 117 **Windows Behavior**: DLLs do not support importing or exporting enumeration 120 **GCC Behavior**: GCC un-hides the typeinfo for enumerations by default, even 134 **GCC Behavior**: GCC ignores visibility attributes applied the type in 140 **Windows Behavior**: `extern template` and `dllexport` are fundamentally 169 behavior. We also want classes annotated with `_LIBCPP_TYPE_VIS` to export [all …]
|
/external/mockito/src/main/java/org/mockito/internal/invocation/ |
D | RealMethod.java | 48 private final InvocationFactory.RealMethodBehavior<?> behavior; field in RealMethod.FromBehavior 50 FromBehavior(InvocationFactory.RealMethodBehavior<?> behavior) { in FromBehavior() argument 51 this.behavior = behavior; in FromBehavior() 62 return behavior.call(); in invoke()
|