/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/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/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/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/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/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 …]
|
D | bottom_navigation_bar.dart | 53 /// four [items]. The selected item is rendered with the 61 /// [BottomNavigationBarItem.backgroundColor] of the selected item. In this 68 /// widgets and the [currentIndex] is set to index 0. The selected item is 69 /// amber. The `_onItemTapped` function changes the selected item's index 73 /// bar items. The first one is selected.](https://flutter.github.io/assets-for-api-docs/assets/mat… 218 /// track of the index of the selected [BottomNavigationBarItem] and call 256 /// The color of the selected [BottomNavigationBarItem.icon] and 268 /// The size, opacity, and color of the icon in the currently selected 291 /// selected. 295 /// selected. [all …]
|
/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()
|
/third_party/libabigail/tests/ |
D | mockfedabipkgdiff.in | 355 selected = build['package_id'] == packageID 357 selected = selected and build['state'] == state 358 return selected 396 selected = rpm['build_id'] == buildID 398 selected = selected and rpm['arch'] in arches 399 return selected
|
/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/openssl/test/ssl-tests/ |
D | 09-alpn.cnf | 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 …]
|
D | 08-npn.cnf | 13 test-8 = 8-npn-selected-sni-server-supports-npn 14 test-9 = 9-npn-selected-sni-server-does-not-support-npn 299 [8-npn-selected-sni-server-supports-npn] 300 ssl_conf = 8-npn-selected-sni-server-supports-npn-ssl 302 [8-npn-selected-sni-server-supports-npn-ssl] 303 server = 8-npn-selected-sni-server-supports-npn-server 304 client = 8-npn-selected-sni-server-supports-npn-client 305 server2 = 8-npn-selected-sni-server-supports-npn-server2 307 [8-npn-selected-sni-server-supports-npn-server] 312 [8-npn-selected-sni-server-supports-npn-server2] [all …]
|
/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/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/ffmpeg/libavcodec/ |
D | dvdsubenc.c | 160 int selected[4] = { 0 }; in select_palette() local 183 if (hits[j] > hits[selected[i]]) in select_palette() 184 selected[i] = j; in select_palette() 185 hits[selected[i]] = 0; in select_palette() 195 int best_d = color_distance(refcolor[i], pseudopal[selected[i]]); in select_palette() 197 int d = color_distance(refcolor[i], pseudopal[selected[j]]); in select_palette() 199 FFSWAP(int, selected[i], selected[j]); in select_palette() 207 out_palette[i] = selected[i] ? (selected[i] - 1) & 0xF : 0; in select_palette() 208 out_alpha [i] = !selected[i] ? 0 : selected[i] < 17 ? 0x80 : 0xFF; in select_palette()
|
/third_party/python/Tools/pynche/ |
D | README | 66 initially selected color. This overrides any color saved in 83 which will popup Pynche as a modal dialog, and return the selected 105 the color to set as the initial selected color 139 strips always indicate the currently selected color by a highlight 140 rectangle around the selected color chip, with an arrow pointing 143 shows you the colors that are reachable from the selected color by 146 For example, when the selected color is (in Red/Green/Blue 154 selected color while you drag along any variation strip (this will 166 color selected in the variation strips, along with its X11 color 168 the X11 database to the selected color, giving its X11 color [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | interworking.c | 884 struct wpa_bss *selected; in already_connected() local 898 selected = wpa_supplicant_pick_network(wpa_s, &sel_ssid); in already_connected() 899 if (selected && sel_ssid && sel_ssid->priority > ssid->priority) in already_connected() 1372 struct wpa_cred *cred, *selected = NULL; in interworking_credentials_available_roaming_consortium() local 1412 if (selected == NULL) { in interworking_credentials_available_roaming_consortium() 1413 selected = cred; in interworking_credentials_available_roaming_consortium() 1417 if (selected == NULL || is_excluded || in interworking_credentials_available_roaming_consortium() 1418 cred_prio_cmp(selected, cred) < 0) { in interworking_credentials_available_roaming_consortium() 1419 selected = cred; in interworking_credentials_available_roaming_consortium() 1428 return selected; in interworking_credentials_available_roaming_consortium() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | interworking.c | 887 struct wpa_bss *selected; in already_connected() local 901 selected = wpa_supplicant_pick_network(wpa_s, &sel_ssid); in already_connected() 902 if (selected && sel_ssid && sel_ssid->priority > ssid->priority) in already_connected() 1378 struct wpa_cred *cred, *selected = NULL; in interworking_credentials_available_roaming_consortium() local 1422 if (selected == NULL) { in interworking_credentials_available_roaming_consortium() 1423 selected = cred; in interworking_credentials_available_roaming_consortium() 1427 if (selected == NULL || is_excluded || in interworking_credentials_available_roaming_consortium() 1428 cred_prio_cmp(selected, cred) < 0) { in interworking_credentials_available_roaming_consortium() 1429 selected = cred; in interworking_credentials_available_roaming_consortium() 1438 return selected; in interworking_credentials_available_roaming_consortium() [all …]
|
/third_party/python/Lib/test/libregrtest/ |
D | main.py | 60 self.selected = [] 251 self.selected = self.tests or self.ns.args or alltests 253 self.selected = self.tests 255 self.selected = self.selected[:1] 257 pos = alltests.index(self.selected[0]) 265 del self.selected[:self.selected.index(self.ns.start)] 274 random.shuffle(self.selected) 277 for name in self.selected: 294 for test_name in self.selected: 362 omitted = set(self.selected) - self.get_executed() [all …]
|