/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowShortcutManager.java | 59 protected Intent createShortcutResultIntent(ShortcutInfo shortcut) { in createShortcutResultIntent() argument 60 if (disabledPinnedShortcuts.containsKey(shortcut.getId())) { in createShortcutResultIntent() 74 ShortcutInfo shortcut = activePinnedShortcuts.remove(shortcutId); in disableShortcuts() local 75 if (shortcut != null) { in disableShortcuts() 76 disabledPinnedShortcuts.put(shortcutId, shortcut); in disableShortcuts() 84 ShortcutInfo shortcut = disabledPinnedShortcuts.remove(shortcutId); in enableShortcuts() local 85 if (shortcut != null) { in enableShortcuts() 86 activePinnedShortcuts.put(shortcutId, shortcut); in enableShortcuts() 164 protected boolean requestPinShortcut(ShortcutInfo shortcut, IntentSender resultIntent) { in requestPinShortcut() argument 165 if (disabledPinnedShortcuts.containsKey(shortcut.getId())) { in requestPinShortcut() [all …]
|
/external/brotli/research/ |
D | sieve.cc | 18 static TextIdx dryRun(TextIdx sliceLen, Slot* map, TextIdx* shortcut, in dryRun() argument 28 Slot& item = map[shortcut[i]]; in dryRun() 49 Slot* map, TextIdx* shortcut, TextIdx end, TextIdx middle, in createDictionary() argument 59 Slot& item = map[shortcut[i]]; in createDictionary() 137 std::vector<TextIdx> shortcut; in sieve_generate() local 181 shortcut.push_back(slot); in sieve_generate() 189 shortcut.push_back(hashSlot); in sieve_generate() 201 sliceLen, map.data(), shortcut.data(), end, end, a, ++piece); in sieve_generate() 205 data, sliceLen, map.data(), shortcut.data(), end, end, a, ++piece); in sieve_generate() 209 size = dryRun(sliceLen, map.data(), shortcut.data(), end, end, b, ++piece); in sieve_generate() [all …]
|
D | durchschlag.cc | 81 std::vector<MetaSlot>* map, TextIdx span, const TextIdx* shortcut, in buildCandidatesList() argument 96 MetaSlot& item = slots[shortcut[j]]; in buildCandidatesList() 107 TextIdx slice = shortcut[i + span - 1]; in buildCandidatesList() 119 MetaSlot& drop = slots[shortcut[i]]; in buildCandidatesList() 129 TextIdx slice = shortcut[i + span - 1]; in buildCandidatesList() 151 MetaSlot& drop = slots[shortcut[i]]; in buildCandidatesList() 169 std::vector<MetaSlot>* map, TextIdx span, const TextIdx* shortcut, in rebuildCandidatesList() argument 188 MetaSlot& item = slots[shortcut[i]]; in rebuildCandidatesList() 197 MetaSlot& pick = slots[shortcut[i + span - 1]]; in rebuildCandidatesList() 212 MetaSlot& drop = slots[shortcut[i]]; in rebuildCandidatesList() [all …]
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/ |
D | ShortcutCombination.java | 21 protected boolean matches(Object o, boolean shortcut) { in matches() argument 23 if (matcher.matches(o) == shortcut) { in matches() 24 return shortcut; in matches() 27 return !shortcut; in matches()
|
/external/tensorflow/tensorflow/python/keras/applications/ |
D | resnet.py | 244 shortcut = layers.Conv2D( 246 shortcut = layers.BatchNormalization( 247 axis=bn_axis, epsilon=1.001e-5, name=name + '_0_bn')(shortcut) 249 shortcut = x 266 x = layers.Add(name=name + '_add')([shortcut, x]) 312 shortcut = layers.Conv2D( 315 shortcut = layers.MaxPooling2D(1, strides=stride)(x) if stride > 1 else x 335 x = layers.Add(name=name + '_out')([shortcut, x]) 384 shortcut = layers.Conv2D( 390 shortcut = layers.BatchNormalization( [all …]
|
D | mobilenet_v3.py | 492 shortcut = x 551 x = layers.Add(name=prefix + 'Add')([shortcut, x])
|
/external/python/cpython2/Lib/plat-mac/ |
D | FrameWork.py | 515 label, shortcut, callback, kind = menu.items[i] 563 def additem(self, label, shortcut=None, callback=None, kind=None): argument 565 self.items.append((label, shortcut, callback, kind)) 571 if shortcut and type(shortcut) == type(()): 572 modifiers, char = shortcut[:2] 575 if len(shortcut) > 2: 576 self.menu.SetMenuItemKeyGlyph(item, shortcut[2]) 577 elif shortcut: 578 self.menu.SetItemCmd(item, ord(shortcut)) 587 def addcheck(self, label, shortcut=None, callback=None): argument [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowShortcutManagerTest.java | 198 ShortcutInfo shortcut = mock(ShortcutInfo.class); in createShortcut() local 199 when(shortcut.getId()).thenReturn(id); in createShortcut() 200 when(shortcut.isImmutable()).thenReturn(isImmutable); in createShortcut() 201 return shortcut; in createShortcut()
|
/external/python/cpython3/Lib/turtledemo/ |
D | __main__.py | 220 shortcut = 'Command' if darwin else 'Control' 221 text.bind_all('<%s-minus>' % shortcut, self.decrease_size) 222 text.bind_all('<%s-underscore>' % shortcut, self.decrease_size) 223 text.bind_all('<%s-equal>' % shortcut, self.increase_size) 224 text.bind_all('<%s-plus>' % shortcut, self.increase_size)
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | userdatarequest.ui | 79 <property name="shortcut" > 95 <property name="shortcut" >
|
/external/tensorflow/tensorflow/python/eager/benchmarks/resnet50/ |
D | resnet50.py | 160 shortcut = self.conv_shortcut(input_tensor) 161 shortcut = self.bn_shortcut(shortcut, training=training) 163 x += shortcut
|
/external/libvpx/libvpx/vp8/encoder/ |
D | encodemb.c | 211 int shortcut = 0; in optimize_b() local 248 shortcut = 1; in optimize_b() 250 shortcut = 0; in optimize_b() 253 if (shortcut) { in optimize_b() 292 if (shortcut) { in optimize_b()
|
/external/autotest/client/site_tests/policy_DefaultSearchProvider/ |
D | control.Keyword | 14 Verify the 'DefaultSearchProviderKeyword' policy will set the shortcut used
|
D | control | 17 trigger the shortcut used in the omnibox to trigger the search for this
|
/external/autotest/client/site_tests/platform_InputBrowserNav/ |
D | control | 16 Go forward, backward, and refresh webpage in browser using keyboard shortcut.
|
/external/rust/crates/vsock/ |
D | README.md | 24 Start the test vm, you can shutdown the vm with the keyboard shortcut ```Ctrl+A``` and then ```x```:
|
/external/autotest/client/site_tests/platform_InputNewTab/ |
D | control | 16 Open and close new tabs in browser using keyboard shortcut.
|
/external/brotli/c/enc/ |
D | backward_references_hq.h | 61 uint32_t shortcut; member
|
D | backward_references_hq.c | 349 return nodes[pos - clen - ilen].u.shortcut; in ComputeDistanceShortcut() 365 size_t p = nodes[pos].u.shortcut; in ComputeDistanceCache() 372 p = nodes[p - clen - ilen].u.shortcut; in ComputeDistanceCache() 387 nodes[pos].u.shortcut = ComputeDistanceShortcut( in EvaluateNode()
|
/external/clang/tools/clang-format/ |
D | clang-format-bbedit.applescript | 5 -- can assign the menu item a keyboard shortcut in the BBEdit preferences, under
|
/external/llvm-project/clang/tools/clang-format/ |
D | clang-format-bbedit.applescript | 5 -- can assign the menu item a keyboard shortcut in the BBEdit preferences, under
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/ |
D | README.md | 42 shortcut between the Python `tf.Module` and the SavedModel MLIR representation
|
/external/exoplayer/tree/ |
D | javadoc_util.gradle | 32 "<link rel=\"shortcut icon\" href=\"/assets/favicon.ico\">" +
|
/external/protobuf/benchmarks/ |
D | Makefile.am | 183 @echo "Writing shortcut script python-pure-python-benchmark..." 193 @echo "Writing shortcut script python-cpp-reflection-benchmark..." 203 @echo "Writing shortcut script python-cpp-generated-code-benchmark..." 258 @echo "Writing shortcut script go-benchmark..."
|
/external/python/cpython2/Doc/distutils/ |
D | builtdist.rst | 434 This function creates a shortcut. *target* is the path to the program to be 435 started by the shortcut. *description* is the description of the shortcut. 436 *filename* is the title of the shortcut that the user will see. *arguments* 438 for the program. *iconpath* is the file containing the icon for the shortcut,
|