/external/grpc-grpc/src/python/grpcio/grpc/framework/interfaces/face/ |
D | utilities.py | 41 def unary_unary_inline(behavior): argument 53 style.Service.INLINE, behavior, None, None, 57 def unary_stream_inline(behavior): argument 69 style.Service.INLINE, None, behavior, None, 73 def stream_unary_inline(behavior): argument 85 style.Service.INLINE, None, None, behavior, 89 def stream_stream_inline(behavior): argument 102 behavior, None, None, None, None) 105 def unary_unary_event(behavior): argument 118 behavior, None, None, None) [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/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/llvm-project/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/javassist/src/main/javassist/tools/ |
D | Callback.java | 93 public static void insertBefore(CtBehavior behavior, Callback callback) in insertBefore() argument 96 behavior.insertBefore(callback.toString()); in insertBefore() 109 public static void insertAfter(CtBehavior behavior,Callback callback) in insertAfter() argument 112 behavior.insertAfter(callback.toString(), false); in insertAfter() 130 public static void insertAfter(CtBehavior behavior, Callback callback, boolean asFinally) in insertAfter() argument 133 behavior.insertAfter(callback.toString(), asFinally); in insertAfter() 149 public static int insertAt(CtBehavior behavior, Callback callback, int lineNum) in insertAt() argument 152 return behavior.insertAt(lineNum, callback.toString()); in insertAt()
|
/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 77 @functools.wraps(behavior) 79 return _call_logging_exceptions(behavior, message, *args, **kwargs) 84 def call_logging_exceptions(behavior, message, *args, **kwargs): argument 97 return _call_logging_exceptions(behavior, message, *args, **kwargs)
|
D | logging_pool.py | 24 def _wrap(behavior): argument 29 return behavior(*args, **kwargs) 33 behavior)
|
/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() 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() 201 behavior.addStub(lastInvocation, Result.createAnswerResult(answer)); in andStubAnswer() [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/skia/src/gpu/effects/ |
D | GrBlendFragmentProcessor.cpp | 28 static const char* BlendBehavior_Name(BlendBehavior behavior) { in BlendBehavior_Name() argument 29 SkASSERT(unsigned(behavior) <= unsigned(BlendBehavior::kLastBlendBehavior)); in BlendBehavior_Name() 37 return gStrings[int(behavior)]; in BlendBehavior_Name() 46 SkBlendMode mode, BlendBehavior behavior) { in Make() argument 48 new BlendFragmentProcessor(std::move(src), std::move(dst), mode, behavior)); in Make() 61 SkBlendMode mode, BlendBehavior behavior) in BlendFragmentProcessor() argument 64 , fBlendBehavior(behavior) { in BlendFragmentProcessor() 244 BlendBehavior behavior; in TestCreate() local 247 behavior = static_cast<BlendBehavior>( in TestCreate() 251 new BlendFragmentProcessor(std::move(src), std::move(dst), mode, behavior)); in TestCreate() [all …]
|
/external/protobuf/benchmarks/util/ |
D | result_parser.py | 68 behavior = benchmark["name"][len(data_filename) + 1:] 74 "behavior": behavior, 133 for behavior in result["benchmarks"]: 137 "behavior": behavior, 138 "throughput": result["benchmarks"][behavior] 226 behavior = behavior_with_suffix 228 behavior = behavior_with_suffix[:last_dash] 232 "behavior": behavior, 258 for behavior in result["benchmarks"]: 262 "behavior": behavior, [all …]
|
/external/libwebsockets/scripts/ |
D | autobahn-test-server.sh | 78 R=`cat /tmp/jis | grep -v '"behavior": "OK"' | grep -v '"behavior": "NON-STRICT"' | grep -v '"behav… 86 …cat /tmp/jis | grep -v '"behavior": "OK"' | grep -v '"behavior": "NON-STRICT"' | grep -v '"behavio…
|
/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()
|
/external/tensorflow/tensorflow/python/framework/ |
D | py_context_manager_test.py | 28 def __init__(self, behavior="basic"): argument 30 self.behavior = behavior 34 if self.behavior == "raise_from_enter": 40 if self.behavior == "raise_from_exit": 42 if self.behavior == "suppress_exception":
|
/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/llvm-project/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-project/clang/test/SemaObjCXX/ |
D | warn-implicit-self-in-block.mm | 20 …{block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior}} 28 …{block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior}} 30 …{block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior}} 32 …{block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior}} 40 …{block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior}}
|
/external/llvm-project/llvm/test/Transforms/InstSimplify/ |
D | constfold-constrained.ll | 4 ; Verify that floor(10.1) is folded to 10.0 when the exception behavior is 'ignore'. 15 ; Verify that floor(-10.1) is folded to -11.0 when the exception behavior is not 'ignore'. 26 ; Verify that ceil(10.1) is folded to 11.0 when the exception behavior is 'ignore'. 37 ; Verify that ceil(-10.1) is folded to -10.0 when the exception behavior is not 'ignore'. 48 ; Verify that trunc(10.1) is folded to 10.0 when the exception behavior is 'ignore'. 59 ; Verify that trunc(-10.1) is folded to -10.0 when the exception behavior is NOT 'ignore'. 70 ; Verify that round(10.5) is folded to 11.0 when the exception behavior is 'ignore'. 81 ; Verify that floor(-10.5) is folded to -11.0 when the exception behavior is NOT 'ignore'. 153 ; Verify that trunc(SNAN) is NOT folded if the exception behavior mode is not 'ignore'. 165 ; Verify that trunc(SNAN) is folded to QNAN if the exception behavior mode is 'ignore'. [all …]
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | Versions.cpp | 758 TExtensionBehavior behavior = getExtensionBehavior(extensions[i]); in checkExtensionsRequested() local 759 if (behavior == EBhEnable || behavior == EBhRequire) in checkExtensionsRequested() 766 TExtensionBehavior behavior = getExtensionBehavior(extensions[i]); in checkExtensionsRequested() local 767 if (behavior == EBhDisable && relaxedErrors()) { in checkExtensionsRequested() 769 behavior = EBhWarn; in checkExtensionsRequested() 771 if (behavior == EBhWarn) { in checkExtensionsRequested() 859 TExtensionBehavior behavior = EBhDisable; in updateExtensionBehavior() local 861 behavior = EBhRequire; in updateExtensionBehavior() 863 behavior = EBhEnable; in updateExtensionBehavior() 865 behavior = EBhDisable; in updateExtensionBehavior() [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | Versions.cpp | 788 TExtensionBehavior behavior = getExtensionBehavior(extensions[i]); in checkExtensionsRequested() local 789 if (behavior == EBhEnable || behavior == EBhRequire) in checkExtensionsRequested() 796 TExtensionBehavior behavior = getExtensionBehavior(extensions[i]); in checkExtensionsRequested() local 797 if (behavior == EBhDisable && relaxedErrors()) { in checkExtensionsRequested() 799 behavior = EBhWarn; in checkExtensionsRequested() 801 if (behavior == EBhWarn) { in checkExtensionsRequested() 889 TExtensionBehavior behavior = EBhDisable; in updateExtensionBehavior() local 891 behavior = EBhRequire; in updateExtensionBehavior() 893 behavior = EBhEnable; in updateExtensionBehavior() 895 behavior = EBhDisable; in updateExtensionBehavior() [all …]
|
/external/lottie/ |
D | CODE_OF_CONDUCT.md | 7 … all those who participate in our community, as well as the consequences for unacceptable behavior. 26 * Refrain from demeaning, discriminatory, or harassing behavior and speech. 43 * Advocating for, or encouraging, any of the above behavior. 48 Unacceptable behavior from any community member, including sponsors and those with decision-making … 50 Anyone asked to stop unacceptable behavior is expected to comply immediately. 52 If a community member engages in unacceptable behavior, the community organizers may take any actio… 56 If you are subject to or witness unacceptable behavior, or have any other concerns, please notify a… 60 …al law enforcement or to otherwise help those experiencing unacceptable behavior feel safe. In the… 72 …cedures also applies to unacceptable behavior occurring outside the scope of community activities …
|
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | no-action.test | 1 ## Show the behavior of llvm-readobj/llvm-readelf when no operations are requested. 3 ## Check the behavior on ET_EXEC input. 26 ## Check the behavior on ET_REL input. 32 ## Check the behavior on ET_DYN input.
|
/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
|