| /external/armnn/samples/ObjectDetection/test/ |
| D | PipelineTest.cpp | 55 [](od::DetectedObjects detects) -> void { in __anon7b8aca6f0102() argument 56 CHECK(detects.size() == 2); in __anon7b8aca6f0102() 57 CHECK(detects[0].GetLabel() == "0"); in __anon7b8aca6f0102()
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | translate_v2.detections.html | 82 <p class="firstline">Detects the language of text within a request.</p> 85 <p class="firstline">Detects the language of text within a request.</p> 94 <pre>Detects the language of text within a request. 130 <pre>Detects the language of text within a request.
|
| /external/google-cloud-java/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ |
| D | BatchPredictRequestOrBuilder.java | 158 * : (float) When Model detects objects on the image, 198 * : (float) When Model detects objects on video frames, 232 * : (float) When Model detects objects on the image, 272 * : (float) When Model detects objects on video frames, 309 * : (float) When Model detects objects on the image, 349 * : (float) When Model detects objects on video frames, 383 * : (float) When Model detects objects on the image, 423 * : (float) When Model detects objects on video frames, 461 * : (float) When Model detects objects on the image, 501 * : (float) When Model detects objects on video frames,
|
| D | PredictRequestOrBuilder.java | 112 * : (float) When Model detects objects on the image, 144 * : (float) When Model detects objects on the image, 179 * : (float) When Model detects objects on the image, 211 * : (float) When Model detects objects on the image, 247 * : (float) When Model detects objects on the image,
|
| D | BatchPredictRequest.java | 295 * : (float) When Model detects objects on the image, 335 * : (float) When Model detects objects on video frames, 381 * : (float) When Model detects objects on the image, 421 * : (float) When Model detects objects on video frames, 458 * : (float) When Model detects objects on the image, 498 * : (float) When Model detects objects on video frames, 542 * : (float) When Model detects objects on the image, 582 * : (float) When Model detects objects on video frames, 1644 * : (float) When Model detects objects on the image, 1684 * : (float) When Model detects objects on video frames, [all …]
|
| /external/google-cloud-java/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/ |
| D | BatchPredictRequestOrBuilder.java | 155 * `score_threshold` - (float) When Model detects objects on the image, 193 * `score_threshold` - (float) When Model detects objects on video frames, 222 * `score_threshold` - (float) When Model detects objects on the image, 260 * `score_threshold` - (float) When Model detects objects on video frames, 292 * `score_threshold` - (float) When Model detects objects on the image, 330 * `score_threshold` - (float) When Model detects objects on video frames, 359 * `score_threshold` - (float) When Model detects objects on the image, 397 * `score_threshold` - (float) When Model detects objects on video frames, 430 * `score_threshold` - (float) When Model detects objects on the image, 468 * `score_threshold` - (float) When Model detects objects on video frames,
|
| D | PredictRequestOrBuilder.java | 110 * `score_threshold` - (float) When Model detects objects on the image, 136 * `score_threshold` - (float) When Model detects objects on the image, 165 * `score_threshold` - (float) When Model detects objects on the image, 191 * `score_threshold` - (float) When Model detects objects on the image, 221 * `score_threshold` - (float) When Model detects objects on the image,
|
| D | BatchPredictRequest.java | 294 * `score_threshold` - (float) When Model detects objects on the image, 332 * `score_threshold` - (float) When Model detects objects on video frames, 373 * `score_threshold` - (float) When Model detects objects on the image, 411 * `score_threshold` - (float) When Model detects objects on video frames, 443 * `score_threshold` - (float) When Model detects objects on the image, 481 * `score_threshold` - (float) When Model detects objects on video frames, 520 * `score_threshold` - (float) When Model detects objects on the image, 558 * `score_threshold` - (float) When Model detects objects on video frames, 1620 * `score_threshold` - (float) When Model detects objects on the image, 1658 * `score_threshold` - (float) When Model detects objects on video frames, [all …]
|
| /external/pigweed/pw_async2/public/pw_async2/internal/ |
| D | poll_internal.h | 32 // Detects whether `U` has conversion operator to `Poll<T>`, i.e. `operator 44 // Detects whether `T` is constructible or convertible from `Poll<U>`. 82 // Detects whether `T` is constructible or convertible or assignable from 92 // Detects whether direct initializing `Poll<T>` from `U` is ambiguous, i.e. 149 // This trait detects whether `Poll<T>::operator=(U&&)` is ambiguous, which
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
| D | UnivariateRealSolver.java | 71 * or the solver detects convergence problems otherwise. 92 * or the solver detects convergence problems otherwise. 114 * or the solver detects convergence problems otherwise. 137 * or the solver detects convergence problems otherwise.
|
| D | LaguerreSolver.java | 116 * or the solver detects convergence problems otherwise 139 * or the solver detects convergence problems otherwise 185 * or the solver detects convergence problems otherwise 211 * or the solver detects convergence problems otherwise 280 * or the solver detects convergence problems otherwise 305 * or the solver detects convergence problems otherwise 355 * or the solver detects convergence problems otherwise
|
| D | MullerSolver.java | 90 * or the solver detects convergence problems otherwise 113 * or the solver detects convergence problems otherwise 158 * or the solver detects convergence problems otherwise 190 * or the solver detects convergence problems otherwise 301 * or the solver detects convergence problems otherwise 334 * or the solver detects convergence problems otherwise
|
| /external/rust/crates/regex/ |
| D | PERFORMANCE.md | 190 * `(foo|bar)` detects `foo` and `bar` 191 * `(a|b)c` detects `ac` and `bc` 192 * `[ab]foo[yz]` detects `afooy`, `afooz`, `bfooy` and `bfooz` 193 * `a?b` detects `a` and `b` 194 * `a*b` detects `a` and `b` 195 * `(ab){3,6}` detects `ababab`
|
| /external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/execution/ |
| D | executor.hpp | 116 /// The is_executor trait detects whether a type T satisfies the 153 /// The is_executor_of trait detects whether a type T satisfies the 195 /// The executor_shape trait detects the type used by an executor to represent 221 /// The executor_index trait detects the type used by an executor to represent
|
| /external/zstd/lib/common/ |
| D | portability_macros.h | 39 /* detects whether we are being compiled under msan */ 48 /* detects whether we are being compiled under asan */ 59 /* detects whether we are being compiled under dfsan */
|
| /external/aws-sdk-java-v2/.changes/2.17.x/ |
| D | 2.17.240.json | 33 …ggers malware scan on selected EC2 instance resources, after the service detects a potentially mal… 45 …eving (revealing) sample occurrences of sensitive data that Amazon Macie detects and reports in fi…
|
| /external/webrtc/modules/video_coding/timing/ |
| D | rtt_filter.h | 41 // Detects RTT jumps by comparing the difference between 47 // Detects RTT drifts by comparing the difference between
|
| /external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/ |
| D | GrpclbRouteType.php | 11 * The server must fill in "fallback" if it detects that the RPC reached 12 * the server via the "gRPCLB fallback" path, and "backend" if it detects
|
| /external/pigweed/targets/stm32f429i_disc1/py/stm32f429i_disc1_utils/ |
| D | stm32f429i_detector.py | 15 """Detects attached stm32f429i-disc1 boards connected via mini usb.""" 50 """This detects and then displays all attached discovery boards."""
|
| /external/grpc-grpc/src/php/tests/interop/Grpc/Testing/ |
| D | GrpclbRouteType.php | 11 * The server must fill in "fallback" if it detects that the RPC reached 12 * the server via the "gRPCLB fallback" path, and "backend" if it detects
|
| /external/rust/crates/tokio/tests/ |
| D | net_unix_pipe.rs | 175 // Check if Sender detects invalid file type. in open_detects_not_a_fifo() 179 // Check if Receiver detects invalid file type. in open_detects_not_a_fifo() 233 // Check if Sender detects invalid file type. in from_file_detects_not_a_fifo() 238 // Check if Receiver detects invalid file type. in from_file_detects_not_a_fifo() 253 // Check if Receiver detects write-only access mode. in from_file_detects_wrong_access_mode() 261 // Check if Sender detects read-only access mode. in from_file_detects_wrong_access_mode()
|
| /external/cronet/third_party/abseil-cpp/absl/status/internal/ |
| D | statusor_internal.h | 33 // Detects whether `U` has conversion operator to `StatusOr<T>`, i.e. `operator 45 // Detects whether `T` is constructible or convertible from `StatusOr<U>`. 57 // Detects whether `T` is constructible or convertible or assignable from 67 // Detects whether direct initializing `StatusOr<T>` from `U` is ambiguous, i.e. 91 // This trait detects whether `StatusOr<T>::operator=(U&&)` is ambiguous, which
|
| /external/libtextclassifier/abseil-cpp/absl/status/internal/ |
| D | statusor_internal.h | 33 // Detects whether `U` has conversion operator to `StatusOr<T>`, i.e. `operator 45 // Detects whether `T` is constructible or convertible from `StatusOr<U>`. 57 // Detects whether `T` is constructible or convertible or assignable from 67 // Detects whether direct initializing `StatusOr<T>` from `U` is ambiguous, i.e. 91 // This trait detects whether `StatusOr<T>::operator=(U&&)` is ambiguous, which
|
| /external/pigweed/docs/ |
| D | automated_analysis.rst | 37 the default checks; see `.pylintrc`_ for details. PyLint detects problems such 101 * asan: `AddressSanitizer`_ detects memory errors such as out-of-bounds access 103 * tsan: `ThreadSanitizer`_ detects data races. 129 `Fuzz testing`_ detects errors in software by providing it with randomly
|
| /external/webrtc/modules/desktop_capture/ |
| D | blank_detector_desktop_capturer_wrapper.h | 24 // A DesktopCapturer wrapper detects the return value of its owned 59 // Detects whether pixel at (x, y) equals to `blank_pixel_`.
|