| /external/apache-commons-lang/src/test/java/org/apache/commons/lang3/compare/ |
| D | ObjectToStringComparatorTest.java | 50 final List<Thing> things = Arrays.asList(null, new Thing("y"), null); in testNull() local 51 things.sort(ObjectToStringComparator.INSTANCE); in testNull() 52 assertEquals("y", things.get(0).string); in testNull() 53 assertNull(things.get(1)); in testNull() 54 assertNull(things.get(2)); in testNull() 59 final List<Thing> things = Arrays.asList(new Thing(null), new Thing("y"), new Thing(null)); in testNullToString() local 60 things.sort(ObjectToStringComparator.INSTANCE); in testNullToString() 61 assertEquals("y", things.get(0).string); in testNullToString() 62 assertNull(things.get(1).string); in testNullToString() 63 assertNull(things.get(2).string); in testNullToString() [all …]
|
| /external/fonttools/Lib/fontTools/misc/ |
| D | classifyTools.py | 1 """ fontTools.misc.classifyTools.py -- tools for classifying things. 7 Main Classifier object, used to classify things into similar sets. 11 self._things = set() # set of all things known so far 13 self._mapping = {} # map from things to their class set 26 things, sets, mapping = self._things, self._sets, self._mapping 29 intersection = s.intersection(things) # existing things 30 s.difference_update(intersection) # new things 34 # Add new class for new things 36 things.update(difference) 82 """Returns the set of all things known so far. [all …]
|
| /external/cronet/base/tracing/stdlib/chrome/scroll_jank/ |
| D | scroll_jank_cause_map.sql | 25 'things to look for: Browser Main thread (CrBrowserMain) is busy, often ' || 36 'other such things causing a long queuing delay after it has already ' || 39 'Waiting for a BeginFrame to be sent. Key things to look for: check if ' || 44 'connected to other processes and threads. Key things to look for: ' || 49 'Key things to look for: if the GPU Main thread is busy, and does not ' || 53 'Key things to look for: the toolbar on the Browser may be blocked by ' || 60 'latch again. Key things to look for: whether the event duration before ' || 72 'forced to wait for another vsync interval to latch again. Key things ' || 80 'Key things to look for: whether StartDrawToBufferAvailable is also ' || 85 'Key things to look for: whether StartDrawToBufferAvailable is also ' ||
|
| /external/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/scroll_jank/ |
| D | scroll_jank_cause_map.sql | 27 'things to look for: Browser Main thread (CrBrowserMain) is busy, often ' || 38 'other such things causing a long queuing delay after it has already ' || 41 'Waiting for a BeginFrame to be sent. Key things to look for: check if ' || 46 'connected to other processes and threads. Key things to look for: ' || 51 'Key things to look for: if the GPU Main thread is busy, and does not ' || 55 'Key things to look for: the toolbar on the Browser may be blocked by ' || 62 'latch again. Key things to look for: whether the event duration before ' || 74 'forced to wait for another vsync interval to latch again. Key things ' || 82 'Key things to look for: whether StartDrawToBufferAvailable is also ' || 87 'Key things to look for: whether StartDrawToBufferAvailable is also ' ||
|
| /external/rust/crates/clap/3.2.23/examples/ |
| D | git.md | 17 add adds things 20 push pushes things 34 add adds things 37 push pushes things 42 adds things 60 adds things
|
| D | git-derive.md | 19 add adds things 22 push pushes things 36 add adds things 39 push pushes things 44 adds things 62 adds things
|
| /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue112/ |
| D | MyCompositeObject.java | 20 Collection<MyClass<? extends Object>> things; field in MyCompositeObject 23 return this.things; in getThings() 26 public void setThings(Collection<MyClass<? extends Object>> things) { in setThings() argument 27 this.things = things; in setThings()
|
| /external/rust/crates/clap/examples/ |
| D | git.md | 14 push pushes things 15 add adds things 30 push pushes things 31 add adds things 39 adds things 55 adds things
|
| D | git-derive.md | 16 push pushes things 17 add adds things 32 push pushes things 33 add adds things 41 adds things 57 adds things
|
| /external/sdv/vsomeip/third_party/boost/phoenix/doc/ |
| D | maintenance.qbk | 27 Unfortunately, while most things now work, there are a number of subtle bugs where things do not wo… 39 …things which could be fixed easily, while at the same time learning how to use git to keep things … 71 * When I want to move things from develop to master I first branch from develop a new branch which … 84 …e a maintainer are available in one place to a new maintainer. A lot of things which are well kno…
|
| /external/google-cloud-java/java-iot/ |
| D | README.md | 1 # Google Cloud Internet of Things (IoT) Core Client for Java 3 Java idiomatic client for [Cloud Internet of Things (IoT) Core][product-docs]. 68 …Things (IoT) Core APIs, and the authenticated principal must have the [IAM role(s)][predefined-iam… 74 … Platform Console][developer-console] project with the Cloud Internet of Things (IoT) Core [API en… 75 You will need to [enable billing][enable-billing] to use Google Cloud Internet of Things (IoT) Core. 85 ## About Cloud Internet of Things (IoT) Core 88 [Cloud Internet of Things (IoT) Core][product-docs] is a complete set of tools to connect, process,… 90 See the [Cloud Internet of Things (IoT) Core client library docs][javadocs] to learn how to 91 use this Cloud Internet of Things (IoT) Core Client Library. 104 Cloud Internet of Things (IoT) Core uses gRPC for the transport layer.
|
| /external/sdv/vsomeip/third_party/boost/spirit/repository/doc/ |
| D | preface.qbk | 30 The repository is an excellent way of evolving things. The /Spirit/ core has 35 to a minimum. Again, changing things in the repository is ought to be a lot 39 the code itself, but takes into consideration such things as documentation, 41 it's an important point. Only well supported things will evolve over time into 46 Based on the user feedback and general usability of things it is possible over
|
| /external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/rust/crates/grpcio-sys/grpc/src/core/lib/promise/detail/ |
| D | promise_like.h | 31 // Promise interface. For things that already return Poll, this wrapping does 32 // nothing. For things that do not return Poll, we wrap the return type in Poll. 33 // This allows us to write things like: 37 // in preference to things like:
|
| /external/tensorflow/third_party/absl/abseil-cpp/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/libtextclassifier/abseil-cpp/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/abseil-cpp/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/angle/third_party/abseil-cpp/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/webrtc/third_party/abseil-cpp/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/openscreen/third_party/abseil/src/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/cronet/third_party/abseil-cpp/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/ |
| D | escaping_test_common.h | 15 // This test contains common things needed by both escaping_test.cc and 40 "that was unusual or somehow undesirable. So one of the things " in base64_strings() 42 "to show girls that you can be feminine, you can like the things " in base64_strings() 44 "You can be really good at building things." in base64_strings()
|
| /external/curl/tests/data/ |
| D | test89 | 32 HTTP/1.1 301 Things are fine in server land swsclose 53 HTTP/1.1 200 Things are fine in server land swsclose 68 HTTP/1.1 301 Things are fine in server land swsclose 79 HTTP/1.1 200 Things are fine in server land swsclose
|
| /external/rust/crates/config/tests/ |
| D | set.rs | 54 .set_override("data[0].things[1].name", "foo") in test_set_arr_path() 56 .set_override("data[0].things[1].value", 42) in test_set_arr_path() 68 config.get("data[0].things[1].name").ok(), in test_set_arr_path() 71 assert_eq!(config.get("data[0].things[1].value").ok(), Some(42)); in test_set_arr_path()
|
| /external/tensorflow/tensorflow/compiler/mlir/g3doc/ |
| D | dialects.md | 9 * TensorFlow IR, which represents all things possible in TensorFlow graphs. 11 abilities (with output to, among other things, TPUs). 26 Dialects can define entirely custom types, which is how MLIR can model things
|