/external/apache-commons-math/src/main/java/org/apache/commons/math/ |
D | FunctionEvaluationException.java | 38 private double[] argument; field in FunctionEvaluationException 46 public FunctionEvaluationException(double argument) { in FunctionEvaluationException() 58 public FunctionEvaluationException(double[] argument) { in FunctionEvaluationException() 71 public FunctionEvaluationException(double argument, in FunctionEvaluationException() 84 public FunctionEvaluationException(double argument, in FunctionEvaluationException() 98 public FunctionEvaluationException(double[] argument, in FunctionEvaluationException() 111 public FunctionEvaluationException(double[] argument, in FunctionEvaluationException() 124 public FunctionEvaluationException(Throwable cause, double argument) { in FunctionEvaluationException() 136 public FunctionEvaluationException(Throwable cause, double[] argument) { in FunctionEvaluationException() 151 double argument, String pattern, in FunctionEvaluationException() [all …]
|
/external/mockito/src/test/java/org/mockitousage/matchers/ |
D | CapturingArgumentsTest.java | 66 ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class); in should_allow_assertions_on_captured_argument() local 79 ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class); in should_allow_assertions_on_all_captured_arguments() local 93 ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class); in should_allow_assertions_on_last_argument() local 121 ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class); in should_allow_assertions_on_captured_null() local 135 ArgumentCaptor<List<Person>> argument = ArgumentCaptor.forClass(List.class); in should_allow_construction_of_captor_for_parameterized_type_in_a_convenient_way() local 142 ArgumentCaptor<List<?>> argument = ArgumentCaptor.forClass(ArrayList.class); in should_allow_construction_of_captor_for_a_more_specific_type() local 149 ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class); in should_allow_capturing_for_stubbing() local 162 ArgumentCaptor<String> argument = ArgumentCaptor.forClass(String.class); in should_capture_when_stubbing_only_when_entire_invocation_matches() local 175 ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class); in should_say_something_smart_when_misused() local 200 ArgumentCaptor<Integer> argument = ArgumentCaptor.forClass(Integer.class); in should_capture_int_by_creating_captor_with_primitive_wrapper() local [all …]
|
/external/mesa3d/src/gallium/frontends/clover/core/ |
D | module.hpp | 77 struct argument { struct 78 enum type { 90 enum ext_type { 95 enum semantic { 104 argument(enum type type, size_t size, in argument() function 112 argument(enum type type, size_t size) : in argument() argument 117 argument() : type(scalar), size(0), in argument() argument 121 type type; 122 size_t size; 123 size_t target_size; [all …]
|
/external/arm-trusted-firmware/drivers/brcm/emmc/ |
D | emmc_csl_sdcmd.c | 22 uint32_t argument = 0x0; /* Go to IDLE state. */ in sd_cmd0() local 72 uint32_t argument; in sd_cmd3() local 95 uint32_t argument, options; in sd_cmd7() local 153 uint32_t argument, options, iBlkNum, multiFactor = 1; in sd_cmd9() local 247 uint32_t argument, options; in sd_cmd13() local 269 uint32_t argument, options, ntry; in sd_cmd16() local 316 uint32_t argument, options, ntry; in sd_cmd17() local 370 uint32_t argument, options, ntry; in sd_cmd18() local 460 uint32_t argument, options; in sd_cmd35() local 486 uint32_t argument, options; in sd_cmd36() local [all …]
|
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/ |
D | TestServiceClient.php | 45 public function EmptyCall(\Grpc\Testing\PBEmpty $argument, 59 public function UnaryCall(\Grpc\Testing\SimpleRequest $argument, 75 public function CacheableUnaryCall(\Grpc\Testing\SimpleRequest $argument, 90 public function StreamingOutputCall(\Grpc\Testing\StreamingOutputCallRequest $argument, 144 public function UnimplementedCall(\Grpc\Testing\PBEmpty $argument,
|
D | EchoTestServiceClient.php | 39 public function Echo(\Grpc\Testing\EchoRequest $argument, 62 public function ResponseStream(\Grpc\Testing\EchoRequest $argument, 85 public function Unimplemented(\Grpc\Testing\EchoRequest $argument,
|
D | ReconnectServiceClient.php | 43 public function Start(\Grpc\Testing\ReconnectParams $argument, 56 public function Stop(\Grpc\Testing\PBEmpty $argument,
|
D | MetricsServiceClient.php | 47 public function GetAllGauges(\Grpc\Testing\EmptyMessage $argument, 61 public function GetGauge(\Grpc\Testing\GaugeRequest $argument,
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_stoptheworld_test.cc | 40 void *IncrementerThread(void *argument) { in IncrementerThread() 56 void *argument) { in Callback() 73 CallbackArgument argument; in TEST() local 111 void *AdvancedIncrementerThread(void *argument) { in AdvancedIncrementerThread() 143 void *argument) { in AdvancedCallback() 166 AdvancedCallbackArgument argument; in TEST() local 193 void *argument) { in SegvCallback()
|
D | sanitizer_stoptheworld_testlib.cc | 35 void *argument) { in Callback() 39 void *SuspenderThread(void *argument) { in SuspenderThread()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_stoptheworld_test.cpp | 39 void *IncrementerThread(void *argument) { in IncrementerThread() 55 void *argument) { in Callback() 72 CallbackArgument argument; in TEST() local 110 void *AdvancedIncrementerThread(void *argument) { in AdvancedIncrementerThread() 142 void *argument) { in AdvancedCallback() 165 AdvancedCallbackArgument argument; in TEST() local 192 void *argument) { in SegvCallback()
|
D | sanitizer_stoptheworld_testlib.cpp | 34 void *argument) { in Callback() 38 void *SuspenderThread(void *argument) { in SuspenderThread()
|
/external/rust/crates/quiche/deps/boringssl/src/tool/ |
D | internal.h | 107 struct argument { struct 114 std::vector<std::string> &args, const struct argument *templates); argument
|
/external/boringssl/src/tool/ |
D | internal.h | 107 struct argument { struct 114 std::vector<std::string> &args, const struct argument *templates); argument
|
/external/mockito/src/test/java/org/mockito/internal/matchers/text/ |
D | MatcherToStringTest.java | 16 public boolean matches(Object argument) { in matches() 22 public boolean matches(Object argument) { in matches() 31 public boolean matches(Object argument) { in matches()
|
/external/pthreadpool/src/ |
D | shim.c | 32 void* argument, in pthreadpool_parallelize_1d() 44 void* argument, in pthreadpool_parallelize_1d_with_uarch() 58 void* argument, in pthreadpool_parallelize_1d_tile_1d() 71 void* argument, in pthreadpool_parallelize_2d() 86 void* argument, in pthreadpool_parallelize_2d_tile_1d() 102 void* argument, in pthreadpool_parallelize_2d_tile_2d() 119 void* argument, in pthreadpool_parallelize_2d_tile_2d_with_uarch() 139 void* argument, in pthreadpool_parallelize_3d() 157 void* argument, in pthreadpool_parallelize_3d_tile_1d() 176 void* argument, in pthreadpool_parallelize_3d_tile_2d() [all …]
|
D | legacy-api.c | 17 void* argument, in pthreadpool_compute_1d() 28 void* argument, in pthreadpool_compute_1d_tiled() 40 void* argument, in pthreadpool_compute_2d() 52 void* argument, in pthreadpool_compute_2d_tiled() 65 void* argument; member 96 void* argument, in pthreadpool_compute_3d_tiled() 139 void* argument; member 178 void* argument, in pthreadpool_compute_4d_tiled()
|
D | portable-api.c | 37 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_1d() local 68 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_1d_with_uarch() local 108 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_1d_tile_1d() local 145 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_2d() local 186 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_2d_tile_1d() local 231 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_2d_tile_2d() local 279 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_2d_tile_2d_with_uarch() local 336 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_3d() local 384 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_3d_tile_1d() local 436 void *const argument = pthreadpool_load_relaxed_void_p(&threadpool->argument); in thread_parallelize_3d_tile_2d() local [all …]
|
/external/dokka/core/src/main/kotlin/Samples/ |
D | KotlinWebsiteSampleProcessingService.kt | 31 val (argument, commentArgument) = expression.valueArguments in convertAssertPrints() constant 41 val (argument) = expression.valueArguments in convertAssertTrueFalse() constant 59 val argument = if (funcArgument.getArgumentExpression() is KtLambdaExpression) in convertAssertFails() constant 74 val argument = if (funcArgument.firstChild is KtLambdaExpression) in convertAssertFailsWith() constant
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | FormatUtils.cpp | 18 UString MyFormatNew(const UString &format, const UString &argument) in MyFormatNew() 25 UString MyFormatNew(UINT resourceID, const UString &argument) in MyFormatNew()
|
/external/mockito/src/main/java/org/mockito/internal/matchers/ |
D | CapturingMatcher.java | 27 public boolean matches(Object argument) { in matches() 57 public void captureFrom(Object argument) { in captureFrom()
|
/external/mockito/src/test/java/org/mockito/internal/invocation/ |
D | TypeSafeMatchingTest.java | 118 public boolean matches(Integer argument) { in matchesWithSubTypeExtendingGenericClass() 134 public boolean matches(Integer argument) { in dontMatchesWithSubTypeExtendingGenericClass() 153 public boolean matches(T argument) { in passEveryArgumentTypeIfNoBridgeMethodWasGenerated()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stoptheworld_fuchsia.cpp | 27 void StopTheWorld(StopTheWorldCallback callback, void *argument) { in StopTheWorld() 30 void *argument; in StopTheWorld() member
|
/external/mockito/src/main/java/org/mockito/internal/invocation/ |
D | TypeSafeMatching.java | 23 public boolean apply(ArgumentMatcher matcher, Object argument) { in apply() 33 private static boolean isCompatible(ArgumentMatcher<?> argumentMatcher, Object argument) { in isCompatible()
|
/external/desugar/java/com/google/devtools/common/options/ |
D | OptionsParsingException.java | 29 public OptionsParsingException(String message, String argument) { in OptionsParsingException() 38 public OptionsParsingException(String message, String argument, Throwable throwable) { in OptionsParsingException()
|