| /external/doclava/res/assets/templates-sdk/assets/design/ |
| D | default.js | 6 if (pagePath == '' || pagePath.charAt(pagePath.length - 1) == '/') { 13 // finding the relative URL to this page. This will allow us to find links on the page 22 relativePagePathParts.push(pathParts[pathParts.length - (upDirs - i) - 1]); 24 relativePagePathParts.push(pathParts[pathParts.length - 1]); 31 // select current page in sidenav and set up prev/next links if they exist 32 var $selNavLink = $('.nav-y').find('a[href="' + pagePath + '"]'); 39 // set up prev links 43 if ($prevListItem.hasClass('nav-section')) { 45 $prevLink = $prevListItem.find('a:last'); 48 $prevLink = $prevListItem.find('a:eq(0)'); [all …]
|
| /external/mesa3d/src/freedreno/decode/ |
| D | crashdec-prefetch.c | 32 * fetching up to 3 subsequent CP_INDIRECT_BUFFER contents into the ROQ before 41 * CP_FOO <- PFP/SQE is reading from here 43 * CP_BAR <- ROQ has prefetched up to here 51 * CP_FOO <- PFP/SQE is reading here 55 * CP_BAR <- ROQ has prefetched up to here 58 * larger than the size of the second IB, indicating that we need to back up 66 * CP_FOO <- PFP/SQE IB2 is reading here 71 * CP_BAR <- ROQ IB2 has prefetched up to here 73 * CP_BAZ <- PFP/SQE IB1 is reading here 81 * cmdstream at the time of the crash, we do a pre-pass scanning the [all …]
|
| /external/rust/crates/regex/ |
| D | PERFORMANCE.md | 44 turn it into a proper automaton that decodes a subset of UTF-8 which 55 life-before-main, and therefore, one cannot utter this: 68 fn some_helper_function(text: &str) -> bool { 97 therefore read-only. Unfortunately, this is not true. Each type of search 119 * find 135 **Advice**: Prefer in this order: `is_match`, `find`, `captures`. 140 * find 145 `is_match` is fastest because it doesn't actually need to find the start or the 146 end of the leftmost-first match. It can quit immediately after it knows there 150 In contrast, `find` must return both the start and end location of the [all …]
|
| /external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
| D | equivalence_relation.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 36 // A disjoint-set (a.k.a. union-find or merge-find) data structure is used to 55 // constructed by repeatedly adding pairs of (typically non-equal) values that 60 // IDs in a SPIR-V binary that are known to contain the same value at run time, 64 // Each unique (up to equality) value added to the relation is copied into 82 // Look up canonical pointers to each of the values in the value pool. in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent() 92 // Find the representative for each value's equivalence class, and if they in MakeEquivalent() 94 const T* representative1 = Find(value1_ptr); in MakeEquivalent() [all …]
|
| /external/deqp-deps/SPIRV-Tools/source/fuzz/ |
| D | equivalence_relation.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 36 // A disjoint-set (a.k.a. union-find or merge-find) data structure is used to 55 // constructed by repeatedly adding pairs of (typically non-equal) values that 60 // IDs in a SPIR-V binary that are known to contain the same value at run time, 64 // Each unique (up to equality) value added to the relation is copied into 82 // Look up canonical pointers to each of the values in the value pool. in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent() 92 // Find the representative for each value's equivalence class, and if they in MakeEquivalent() 94 const T* representative1 = Find(value1_ptr); in MakeEquivalent() [all …]
|
| /external/angle/third_party/spirv-tools/src/source/fuzz/ |
| D | equivalence_relation.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 36 // A disjoint-set (a.k.a. union-find or merge-find) data structure is used to 55 // constructed by repeatedly adding pairs of (typically non-equal) values that 60 // IDs in a SPIR-V binary that are known to contain the same value at run time, 64 // Each unique (up to equality) value added to the relation is copied into 82 // Look up canonical pointers to each of the values in the value pool. in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent() 92 // Find the representative for each value's equivalence class, and if they in MakeEquivalent() 94 const T* representative1 = Find(value1_ptr); in MakeEquivalent() [all …]
|
| /external/mesa3d/src/imgui/ |
| D | imstb_textedit.h | 4 // - Fix in stb_textedit_discard_redo (see https://github.com/nothings/stb/issues/321) 5 // Grep for [DEAR IMGUI] to find the changes. 7 // stb_textedit.h - v1.13 - public domain - Sean Barrett 10 // This C header file implements the guts of a multi-line text-editing 11 // widget; you implement display, word-wrapping, and low-level string 17 // their own custom widgets and which do not have heavy text-editing 21 // Non-trivial behaviors are modelled after Windows text controls. 38 // 1.13 (2019-02-07) fix bug in undo size management 39 // 1.12 (2018-01-29) user can change STB_TEXTEDIT_KEYTYPE, fix redo to avoid crash 40 // 1.11 (2017-03-03) fix HOME on last line, dragging off single-line textfield [all …]
|
| /external/skia/tools/debugger/ |
| D | DebugLayerManager.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 30 auto* drawEvent = fDraws.find({frame, nodeId}); in setCommand() 39 const int count = drawEvent->debugCanvas->getSize(); in setCommand() 40 drawEvent->command = command < count ? command : count - 1; in setCommand() 57 const auto& layerBounds = picture->cullRect().roundOut(); in storeSkPicture() 59 // Must be set or they end up undefined due to cosmic rays, bad luck, etc. in storeSkPicture() 60 debugCanvas->setOverdrawViz(false); in storeSkPicture() 61 debugCanvas->setDrawGpuOpBounds(false); in storeSkPicture() 62 debugCanvas->setClipVizColor(SK_ColorTRANSPARENT); in storeSkPicture() 64 debugCanvas->setLayerManagerAndFrame(this, frame); in storeSkPicture() [all …]
|
| /external/apache-xml/src/main/java/org/apache/xml/serializer/ |
| D | AttributesImplSerializer.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 * $Id: AttributesImplSerializer.java 468654 2006-10-28 07:09:23Z minchau $ 46 * The keys to the hashtable to find the index are either 55 * and can be tuned, but 12 seems good for now - Brian M. 63 private static final int MAXMinus1 = MAX - 1; 78 // super class look it up in getIndex() 83 // so find it quickly using our Hashtable. in getIndex() 86 index = -1; in getIndex() 113 // so either compare (index+1) to MAX, or compare index to (MAX-1) in addAttribute() 141 * up of attributes, but up until now we haven't kept any [all …]
|
| /external/python/typing/.github/workflows/ |
| D | package.yml | 13 runs-on: ubuntu-latest 16 - uses: actions/checkout@v2 18 - name: Set up Python 19 uses: actions/setup-python@v2 21 python-version: 3 23 - name: Install pypa/build 26 # accidentally pick up typing_extensions as installed by a dependency 27 python -m pip install --upgrade build 28 python -m pip list 30 - name: Build and install wheel [all …]
|
| /external/freetype/builds/cmake/ |
| D | iOS.cmake | 3 # Copyright (C) 2014-2023 by 21 # ------- 28 # OS - the default, used to build for iPhone and iPad physical devices, 30 # SIMULATOR - used to build for the Simulator platforms, which have an 44 # up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT path. If you 50 # ------ 62 # A macro to find executable programs on the host system, not within the 63 # iOS environment. Thanks to the `android-cmake' project for providing 79 # determine the cmake host system version so we know where to find the iOS 83 exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION) [all …]
|
| /external/autotest/server/cros/ap_configurators/ |
| D | web_driver_core_helpers.py | 2 # Use of this source code is governed by a BSD-style license that can be 31 if (message.find('An open modal dialog blocked') != -1 and 32 message.find('unexpected alert open') != -1): 52 if (message.find('An open modal dialog blocked') == -1 and 53 message.find('unexpected alert open') == -1): 98 """Wait for one of the element_ids to show up. 100 @param element_ids: A list of all the element ids to find. 101 @param wait_time: The time to wait before giving up. 116 """Wait for one of the items in the xpath to show up. 118 @param xpaths: A list of all the xpath's of elements to find. [all …]
|
| /external/replicaisland/res/values/ |
| D | kyle.xml | 1 <?xml version="1.0" encoding="utf-8"?> 4 <!-- Kyle Dialog Entries --> 11 … are truly pathetic. It’s no wonder he hasn’t found The Source in 50 years--the man sets a new ba… 19 …Can’t you take a hint, you bumbling bundle of bolts? I was right about you--you’re a little Kaboc… 23 …t. I pulled my punches because frankly, I didn’t think it would take a full-strength hit to bring… 43 …ws no machine could ever survive for long on this island. We can make split-second decisions, alt… 47 …inite resources--even the puny little array of logic gates you call a brain should be able to unde… 63 I warned you, you over-complicated washing machine. I told you not to cross my path again, and yet… 67 Still kicking, huh? I guess Kabocha really went all out on your design--you’re a lot more sophisti… 71 …I said before: you get in our way and I’ll take you apart. We’re here to find The Source for Mr. … [all …]
|
| /external/ltp/testcases/kernel/device-drivers/nls/ |
| D | README | 3 --------------------------------------- 7 top level README file in LTP to find out the kernel configuration dependencies 13 -------- 19 ----------------------- 21 find the test results in the "dmesg" output. 23 Cleaning up 24 ----------- 25 To clean up your test system can unload the nlsTest.ko module with 26 "rmmod nlsTest". To clean up your build system execute "make clean". 29 -------
|
| /external/google-smali/smali/ |
| D | run_antlr.sh | 15 # Get the location of this script used to find locations of other things in the tree. 19 if [[ -z "$ANTLR" ]] 21 # Best effort to find it inside of the gradle cache 22 ANTLR="$(find $HOME/.gradle/caches/modules-* -name 'org.antlr' | head -n 1)" 28 if ! [[ -d "$ANTLR" ]]; then 29 echo >&2 "ERROR: Could not find ANTLR jars directory" 33 # Build up the classpath by finding all the JARs 36 for jar_file_name in $(find "$ANTLR" -name '*.jar'); do 37 if ! [[ -z "$ANTLR_JARS" ]]; then 43 if [[ -z "$ANTLR_JARS" ]]; then [all …]
|
| /external/guice/core/src/com/google/inject/ |
| D | Injector.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 26 * Builds the graphs of objects that make up your application. The injector tracks the dependencies 28 * interact with it directly. This "behind-the-scenes" operation is what distinguishes dependency 43 * already-constructed instances. This can be used to interoperate with objects created by other 76 * @see Binder#getMembersInjector(TypeLiteral) for an alternative that offers up front error 85 * instead to get increased up front error detection. 88 * @see Binder#getMembersInjector(Class) for an alternative that offers up front error detection 107 * just-in-time</strong>. The returned map is immutable; it contains only the bindings that were 108 * present when {@code getAllBindings()} was invoked. Just-in-time bindings are only present if 110 * just-in-time bindings. [all …]
|
| /external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/ |
| D | ClassMap.java | 12 * http://www.apache.org/licenses/LICENSE-2.0 33 * method name and the names of classes that make up the parameters. 107 * Find a Method using the method name and parameter objects. 109 * @param name The method name to look up. 129 // Looks through all elements in the class hierarchy. This one is bottom-first (i.e. we start in createMethodCache() 130 // with the actual declaring class and its interfaces and then move up (superclass etc.) until we in createMethodCache() 132 // which might in turn be abstract further up the tree. in createMethodCache() 137 … also omit all that complicated getPublic, getAccessible and upcast logic that the class map had up in createMethodCache() 158 /* recurses up interface heirarchy to get all super interfaces (VELOCITY-689) */ 198 * This is the cache to store and look up the method information. [all …]
|
| /external/linux-kselftest/tools/testing/selftests/drivers/net/dsa/ |
| D | bridge_vlan_mcast.sh | 2 # SPDX-License-Identifier: GPL-2.0 17 ip link add l $h1 $h1.10 up type vlan id 10 29 ip link add l $h2 $h2.10 up type vlan id 10 45 ip link set dev br0 up 46 ip link set dev $swp1 up 47 ip link set dev $swp2 up 52 bridge vlan add vid 10-11 dev $swp1 master 53 bridge vlan add vid 10-11 dev $swp2 master 105 bridge -j mdb show dev br0 | 106 jq -e ".[].mdb[] | select(.grp == \"$TEST_GROUP\" and .vid == 10)" &>/dev/null [all …]
|
| /external/linux-kselftest/tools/testing/selftests/net/forwarding/ |
| D | bridge_vlan_mcast.sh | 2 # SPDX-License-Identifier: GPL-2.0 17 ip link add l $h1 $h1.10 up type vlan id 10 29 ip link add l $h2 $h2.10 up type vlan id 10 45 ip link set dev br0 up 46 ip link set dev $swp1 up 47 ip link set dev $swp2 up 52 bridge vlan add vid 10-11 dev $swp1 master 53 bridge vlan add vid 10-11 dev $swp2 master 105 bridge -j mdb show dev br0 | 106 jq -e ".[].mdb[] | select(.grp == \"$TEST_GROUP\" and .vid == 10)" &>/dev/null [all …]
|
| /external/openscreen/osp/impl/quic/ |
| D | quic_client.cc | 2 // Use of this source code is governed by a BSD-style license that can be 36 Cleanup(); // Start periodic clean-ups. in Start() 37 observer_->OnRunning(); in Start() 46 Cleanup(); // Final clean-up. in Stop() 47 observer_->OnStopped(); in Stop() 53 entry.second.delegate->DestroyClosedStreams(); in Cleanup() 54 if (!entry.second.delegate->has_streams()) in Cleanup() 55 entry.second.connection->Close(); in Cleanup() 59 auto it = connections_.find(endpoint_id); in Cleanup() 77 auto endpoint_entry = endpoint_map_.find(endpoint); in Connect() [all …]
|
| /external/google-styleguide/include/ |
| D | jsguide.js | 3 function find(querySelector, callback) { function 18 find('p', function(paragraph) { 19 var match = /^([a-z]+):/i.exec(paragraph.textContent); 25 // Fill in text for intra-document links, ensuring that links 26 // remain up-to-date even if sections are moved or renumbered. 28 // starting with "#", and the filled-in text is exactly the same 30 find('a[href^="#"]', function(link) { 42 find('pre > code', function(code) { 51 // Call the pretty-printer after we've fixed up the code blocks. 53 pretty.src = 'https://cdn.rawgit.com/google/code-prettify/master/loader/' +
|
| /external/python/cpython2/Mac/Modules/cg/ |
| D | CFMLateImport.c | 14 … changes. If you're going to re-distribute the source, we require that you make 22 <11> 21/9/01 Quinn Changes for CWPro7 Mach-O build. 34 <6> 15/2/01 Quinn Modify compile-time warnings to complain if you try to build 35 this module into a Mach-O binary. 54 // � test with non-zero fragment offset in the file 89 #error CFMLateImport is not suitable for use in a Mach-O project. 91 #error CFMLateImport has not been qualified for 68K or CFM-68K use. 95 #pragma mark ----- Utility Routines ----- 118 #pragma mark ----- Late Import Engine ----- 122 // to fix up. It starts off with the first three fields, which are [all …]
|
| /external/autotest/client/common_lib/cros/network/ |
| D | interface.py | 3 # Use of this source code is governed by a BSD-style license that can be 99 DeviceInfo(compatible='qcom,wcn3990-wifi'): NAME_QUALCOMM_WCN3990, 133 raise error.TestFail('Failed to find ethernet interface.') 158 # 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast 174 # The "ip" command will return non-zero if the interface does 260 if re.match('^OF_COMPATIBLE_[0-9]+$', key): 283 logging.error('Device description not supported on non-wifi ' 295 kernel_release = self._run('uname -r').stdout.strip() 298 module_path = self._run('find %s -name %s.ko -printf %%P' % ( 317 # 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast [all …]
|
| /external/mesa3d/.gitlab-ci/common/ |
| D | init-stage2.sh | 7 # Second-stage init, used to set up devices and our job environment before 10 shopt -s extglob 32 kill -9 "$pid" 2>/dev/null || true 36 set -x 45 for path in '/dut-env-vars.sh' '/set-job-env-vars.sh' './set-job-env-vars.sh'; do 46 [ -f "$path" ] && source "$path" 48 . "$SCRIPTS_DIR"/setup-test-env.sh 50 set -ex 52 # Set up any devices required by the jobs 53 [ -z "$HWCI_KERNEL_MODULES" ] || { [all …]
|
| /external/ltp/testcases/open_posix_testsuite/scripts/ |
| D | locate-test | 3 # Created by: inaky.perez-gonzalez REMOVE-THIS AT intel DOT com 16 --buildonly List only tests that require building 17 --runnable List only tests that are executable 20 name it something including the "-buildonly" string. 21 --test-tools List all test tools that require building. 22 --help Show this help and exit 25 up by this tool. This might change in the future. So far, the ones 26 picked up are: 28 NUMBER-NUMBER.c [requires compilation] 29 NUMBER-NUMBER.sh [does not require compilation] [all …]
|