/third_party/node/deps/npm/test/tap/ |
D | pick-manifest-from-registry-metadata.js | 20 var selected = pickManifest('^1.0.0', 'latest', versions, metadata) 21 t.equal(selected.manifest.version, '1.1.0', 'picked the right manifest using ^') 22 t.equal(selected.resolvedTo, '1.1.0', 'resolved using version match') 23 selected = pickManifest('^1.0.0', 'example', versions, metadata) 24 t.equal(selected.manifest.version, '1.1.0', 'picked the right manifest using ^') 25 t.equal(selected.resolvedTo, 'example', 'resolved using tag') 43 var selected = pickManifest('~1.0.0', 'latest', versions, metadata) 44 t.equal(selected.manifest.version, '1.0.2', 'picked the right manifest using ~') 45 t.equal(selected.resolvedTo, '1.0.2', 'resolved using version match') 60 var selected = pickManifest('>=1.0.0 <2', 'example', versions, metadata) [all …]
|
/third_party/pyyaml/tests/data/ |
D | resolver.data | 2 "this scalar should be selected" 6 is: [selected] 8 key13: [not, selected] 9 key23: [not, selected] 11 key31: [not, selected] 12 key32: [not, selected] 13 key33: {not: selected} 15 - not selected 16 - selected 17 - not selected [all …]
|
D | resolver.path | 2 "this scalar should be selected" 6 is: [selected] 8 key13: [not, selected] 9 key23: [not, selected] 11 key31: [not, selected] 12 key32: [not, selected] 13 key33: {not: selected} 15 - not selected 16 - !root/key21/1/* selected 17 - not selected [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
D | SwiftConfig.cpp | 235 const std::string selected = "selected='selected'"; in page() local 274 …html += "<option value='0'" + (config.pixelShaderVersion == 0 ? selected : empty) + ">0.0</optio… in page() 275 …html += "<option value='11'" + (config.pixelShaderVersion == 11 ? selected : empty) + ">1.1</optio… in page() 276 …html += "<option value='12'" + (config.pixelShaderVersion == 12 ? selected : empty) + ">1.2</optio… in page() 277 …html += "<option value='13'" + (config.pixelShaderVersion == 13 ? selected : empty) + ">1.3</optio… in page() 278 …html += "<option value='14'" + (config.pixelShaderVersion == 14 ? selected : empty) + ">1.4</optio… in page() 279 …html += "<option value='20'" + (config.pixelShaderVersion == 20 ? selected : empty) + ">2.0</optio… in page() 280 …html += "<option value='21'" + (config.pixelShaderVersion == 21 ? selected : empty) + ">2.x</optio… in page() 281 …html += "<option value='30'" + (config.pixelShaderVersion == 30 ? selected : empty) + ">3.0 (defau… in page() 284 …html += "<option value='0'" + (config.vertexShaderVersion == 0 ? selected : empty) + ">0.0</opti… in page() [all …]
|
/third_party/boringssl/src/tool/ |
D | speed.cc | 185 static bool SpeedRSA(const std::string &selected) { in SpeedRSA() argument 186 if (!selected.empty() && selected.find("RSA") == std::string::npos) { in SpeedRSA() 272 static bool SpeedRSAKeyGen(const std::string &selected) { in SpeedRSAKeyGen() argument 274 if (selected != "RSAKeyGen") { in SpeedRSAKeyGen() 449 size_t ad_len, const std::string &selected) { in SpeedAEAD() argument 450 if (!selected.empty() && name.find(selected) == std::string::npos) { in SpeedAEAD() 463 size_t ad_len, const std::string &selected) { in SpeedAEADOpen() argument 464 if (!selected.empty() && name.find(selected) == std::string::npos) { in SpeedAEADOpen() 478 const std::string &selected) { in SpeedAESBlock() argument 479 if (!selected.empty() && name.find(selected) == std::string::npos) { in SpeedAESBlock() [all …]
|
/third_party/skia/experimental/sktext/editor/ |
D | Texts.cpp | 58 for (auto& selected : fSelection->fTextRanges) { in mergeSelectionIntoDecorations() local 63 if (decorPos + decor.charCount >= selected.fStart) { in mergeSelectionIntoDecorations() 72 if (selected.fStart > decorPos) { in mergeSelectionIntoDecorations() 74 … merged.emplace_back(selected.fStart - decorPos, decor.foregroundPaint, decor.backgroundPaint); in mergeSelectionIntoDecorations() 75 decorPos = selected.fStart; in mergeSelectionIntoDecorations() 77 SkASSERT(decorPos == selected.fStart); in mergeSelectionIntoDecorations() 80 merged.emplace_back(selected.width(), fSelection->fForeground, fSelection->fBackground); in mergeSelectionIntoDecorations() 81 decorPos += selected.width(); in mergeSelectionIntoDecorations() 82 SkASSERT(decorPos == selected.fEnd); in mergeSelectionIntoDecorations() 84 if (lastDecorPos + decor.charCount > selected.fEnd) { in mergeSelectionIntoDecorations() [all …]
|
/third_party/giflib/ |
D | giftool.c | 103 int selected[MAX_IMAGES], nselected = 0; in main() local 159 selected[nselected++] = atoi(cp)-1; in main() 228 selected[nselected++] = i; in main() 231 if (selected[i] >= GifFileIn->ImageCount || selected[i] < 0) in main() 251 DGifSavedExtensionToGCB(GifFileIn, selected[i], &gcb); in main() 253 EGifGCBToSavedExtension(&gcb, GifFileIn, selected[i]); in main() 259 SavedImage *ip = &GifFileIn->SavedImages[selected[i]]; in main() 445 selected[i], in main() 453 (void)printf("%d", selected[i]+1); in main() 469 selected[i], in main() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | checkJsObjectLiteralHasCheckedKeyof.symbols | 17 let selected = "x"; 18 >selected : Symbol(selected, Decl(file.js, 9, 3)) 20 selected = "z"; // should fail 21 >selected : Symbol(selected, Decl(file.js, 9, 3))
|
D | checkJsObjectLiteralHasCheckedKeyof.types | 20 let selected = "x"; 21 >selected : "x" | "y" 24 selected = "z"; // should fail 25 >selected = "z" : "z" 26 >selected : "x" | "y"
|
D | checkJsObjectLiteralHasCheckedKeyof.js | 11 let selected = "x"; variable 12 selected = "z"; // should fail 24 var selected = "x"; 25 selected = "z"; // should fail
|
/third_party/grpc/templates/tools/fuzzer/ |
D | runners.template | 4 cond: selected.build == 'fuzzer' 5 output_name: ${selected.name}.sh 23 …flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=${selected.maxlen} -timeo… 25 %if selected.get('dict'): 26 flags="$flags -dict=${selected.dict}" 39 bins/$config/${selected.name} $flags fuzzer_output ${' '.join(selected.corpus_dirs)}
|
/third_party/uboot/u-boot-2020.01/scripts/kconfig/lxdialog/ |
D | menubox.c | 54 int selected, int hotkey) in do_print_item() argument 75 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item() 78 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item() 82 if (selected) { in do_print_item() 89 #define print_item(index, choice, selected) \ argument 92 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 142 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument 147 print_button(win, gettext("Select"), y, x, selected == 0); in print_buttons() 148 print_button(win, gettext(" Exit "), y, x + 12, selected == 1); in print_buttons() 149 print_button(win, gettext(" Help "), y, x + 24, selected == 2); in print_buttons() [all …]
|
D | checklist.c | 18 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 33 wattrset(win, selected ? dlg.check_selected.atr in print_item() 38 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item() 40 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item() 42 if (selected) { in print_item() 88 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 93 print_button(dialog, gettext("Select"), y, x, selected == 0); in print_buttons() 94 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons() 96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
|
/third_party/boost/libs/geometry/test/algorithms/overlay/ |
D | select_rings.cpp | 57 map_type selected; in test_geometry() local 65 …bg::detail::overlay::select_rings<OverlayType>(geometry1, geometry2, empty, selected, strategy_typ… in test_geometry() 67 BOOST_CHECK_EQUAL(selected.size(), expected_ids.size()); in test_geometry() 69 if (selected.size() <= expected_ids.size()) in test_geometry() 72 … for(typename map_type::const_iterator it = selected.begin(); it != selected.end(); ++it, ++eit) in test_geometry()
|
/third_party/toybox/kconfig/lxdialog/ |
D | menubox.c | 67 int selected, int hotkey) in do_print_item() argument 88 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item() 91 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item() 95 if (selected) { in do_print_item() 102 #define print_item(index, choice, selected) \ argument 105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 155 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument 160 print_button(win, "Select", y, x, selected == 0); in print_buttons() 161 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons() 162 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons() [all …]
|
D | checklist.c | 31 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 42 wattrset(win, selected ? dlg.check_selected.atr in print_item() 46 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item() 48 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item() 50 if (selected) { in print_item() 95 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 100 print_button(dialog, "Select", y, x, selected == 0); in print_buttons() 101 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons() 103 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
|
D | yesno.c | 27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 32 print_button(dialog, " Yes ", y, x, selected == 0); in print_buttons() 33 print_button(dialog, " No ", y, x + 13, selected == 1); in print_buttons() 35 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | radio.dart | 20 /// button in a group is selected, the other radio buttons in the group cease to 21 /// be selected. The values are of type `T`, the type parameter of the [Radio] 26 /// [groupValue] and [value] match, this radio will be selected. Most widgets 35 /// The currently selected character is passed into `groupValue`, which is 37 /// will start off selected because `_character` is initialized to 96 /// radio button is selected, the widget calls the [onChanged] callback. Most 104 /// selected. 118 /// The currently selected value for a group of radio buttons. 120 /// This radio button is considered selected if its [value] matches the 133 /// selected. [all …]
|
D | radio_list_tile.dart | 28 /// The [selected] property on this widget is similar to the [ListTile.selected] 31 /// coordinate the [selected] state and the [checked] state; to have the list 32 /// tile appear selected when the radio button is the selected radio button, set 33 /// [selected] to true when [value] matches [groupValue]. 297 /// button is selected, the widget calls the [onChanged] callback. Most 305 /// selected. 318 this.selected = false, 322 assert(selected != null), 329 /// The currently selected value for this group of radio buttons. 331 /// This radio button is considered selected if its [value] matches the [all …]
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | semantics_1_test.dart | 25 selected: true, 54 selected: true, 64 selected: true, 96 selected: true, 106 selected: true, 150 selected: true, 160 selected: true, 192 selected: true, 202 selected: true,
|
D | semantics_2_test.dart | 32 selected: true, 42 selected: true, 86 selected: true, 96 selected: true, 128 selected: true, 138 selected: true,
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/transformations/ |
D | transformations_demo_color_picker.dart | 24 selected: color == selectedColor, 41 @required this.selected, 44 assert(selected != null); 47 final bool selected; 63 child: !selected ? null : const Icon(
|
/third_party/openssl/test/ssl-tests/ |
D | 09-alpn.conf | 13 test-8 = 8-alpn-selected-sni-server-supports-alpn 14 test-9 = 9-alpn-selected-sni-server-does-not-support-alpn 288 [8-alpn-selected-sni-server-supports-alpn] 289 ssl_conf = 8-alpn-selected-sni-server-supports-alpn-ssl 291 [8-alpn-selected-sni-server-supports-alpn-ssl] 292 server = 8-alpn-selected-sni-server-supports-alpn-server 293 client = 8-alpn-selected-sni-server-supports-alpn-client 294 server2 = 8-alpn-selected-sni-server-supports-alpn-server2 296 [8-alpn-selected-sni-server-supports-alpn-server] 301 [8-alpn-selected-sni-server-supports-alpn-server2] [all …]
|
/third_party/flutter/flutter/examples/catalog/lib/ |
D | animated_list.dart | 35 selected: _selectedItem == _list[index], 53 selected: false, 64 // Remove the selected item from the list model. 89 tooltip: 'remove the selected item', 151 /// the item's value. The text is displayed in bright green if selected is true. 160 this.selected = false, 163 assert(selected != null), 169 final bool selected; 174 if (selected) 214 selected item, '-' to remove the selected item. The tap handlers add or
|
/third_party/boost/boost/numeric/conversion/detail/ |
D | is_subranged.hpp | 184 typedef typename for_::type selected ; typedef 186 typedef typename selected::type type ; 206 selected ; typedef 208 typedef typename selected::type selected2 ; 225 typedef typename mpl::if_<is_trivial,trivial_case,non_trivial_case>::type selected ; typedef 227 typedef typename selected::type type ;
|