Searched refs:selected (Results 301 - 325 of 374) sorted by relevance

<<1112131415

/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Djquery-1.6.4.js1232 // Make sure that a selected-by-default option has a working selected property.
1234 optSelected: opt.selected,
1952 rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
2177 // Nothing was selected
2182 // Loop through all the selected options
2187 if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) &&
2215 this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;
2528 // Safari mis-reports the default selected property of an option
2531 jQuery.propHooks.selected
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js1502 var props = {input: 'checked', option: 'selected', textarea: (Browser.Engine.webkit && Browser.Engine.version < 420) ? 'innerHTML' : 'value'};
1556 var bools = ['compact', 'nowrap', 'ismap', 'declare', 'noshade', 'checked', 'disabled', 'readonly', 'multiple', 'selected', 'noresize', 'defer'];
1775 return option.selected;
1810 for (var j = no.length; j--;) no[j].selected = eo[j].selected;
2853 selected: function() {
2854 return this.selected;
/external/chromium_org/v8/src/arm64/
H A Dsimulator-arm64.cc2430 Instr selected; local
2432 selected = instr->Rn();
2434 selected = instr->Rm();
2438 case FCSEL_s: set_sreg(instr->Rd(), sreg(selected)); break;
2439 case FCSEL_d: set_dreg(instr->Rd(), dreg(selected)); break;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditorCommand.cpp402 bool selected = frame.selection().setSelectedRange(unionDOMRanges(mark.get(), frame.editor().selectedRange().get()).get(), DOWNSTREAM, FrameSelection::NonDirectional, FrameSelection::CloseTyping); local
403 ASSERT(selected);
404 if (!selected)
1260 // "Delete" from DOM is like delete/backspace keypress, affects selected range if non-empty,
1693 // Wee need to pass false here or else the currently selected word will never be skipped.
/external/chromium_org/third_party/libevent/
H A Devdns.c62 #error Multiple id options selected
65 #error Multiple id options selected
72 #error Multiple id options selected
/external/chromium_org/third_party/skia/samplecode/
H A DSampleApp.cpp1570 int selected = -1; local
1571 if (SkOSMenu::FindListIndex(evt, "Device Type", &selected)) {
1572 this->setDeviceType((DeviceType)selected);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_manager.js580 * URL of entry which should be initially selected.
898 * - the selected item is changed in the directory tree.
1636 * if nothing was selected.
1642 // is selected.
1650 * Index of selected item in the typeList of the dialog params.
1652 * @return {number} 1-based index of selected type or 0 if no type selected.
1657 if (index < 0) // Nothing selected.
1828 if (fileType.selected)
1829 option.selected
[all...]
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_controller.cc256 // Index of the selected item; may remain -1.
260 // currently selected item whose mnemonic matches. This may remain -1 even
460 MenuItemView* selected = state_.item; local
471 DCHECK(selected);
475 selected->GetRootMenuItem());
537 // for selected folder menu items. If it's only a left click, show the
848 // Notify the old path it isn't selected.
859 // Notify the new path it is selected.
977 // the selected item. Additionally source may not be the parent of
978 // the selected ite
[all...]
/external/skia/samplecode/
H A DSampleApp.cpp1591 int selected = -1; local
1592 if (SkOSMenu::FindListIndex(evt, "Device Type", &selected)) {
1593 this->setDeviceType((DeviceType)selected);
/external/chromium_org/chrome/browser/resources/options/
H A Dlanguage_options.js272 // on the selected language. Note that we only have less than 100
521 * Updates the currently selected language name.
537 // Update the currently selected language name.
668 // show this preference when general Chinese is selected.
776 // Select first visible item, otherwise previously selected hidden
777 // item will be selected by default at the next time.
778 option.selected = true;
1234 * @param {string} languageCode The newly selected language to use.
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_drag_controller.cc690 double unselected, selected; local
691 attached_tabstrip_->GetCurrentTabWidths(&unselected, &selected);
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dbrowser_options_handler.cc1800 // 3. Is selected? (bool).
1810 bool selected = content::ZoomValuesEqual(factor, default_zoom_factor); local
1811 option->Append(new base::FundamentalValue(selected));
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXRenderObject.cpp894 // RenderMenuList will go straight to the text() of its selected item.
895 // This has to be overridden in the case where the selected item has an ARIA label.
1752 bool selected = Range::selectNodeContents(node, start, end); local
1753 if (!selected)
1858 // Every child should have aria-role option, and if so, check for selected attribute/state.
1906 // The ARIA spec says a tab item can also be selected if it is aria-labeled by a tabpanel
2258 // Determine which rows are selected.
2261 // Prefer active descendant over aria-selected.
/external/libvorbis/doc/
H A D07-floor1.tex52 The list of selected X values in increasing order is
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js1299 fragment.appendChild(elt("div", null, "CodeMirror-selected", "position: absolute; left: " + left +
2218 // When something is selected, it is present in the textarea, and
2219 // selected (unless it is huge, in which case a placeholder is
2220 // used). When nothing is selected, the cursor sits after previously
2303 // when not typing and nothing is selected)
2305 var minimal, selected, doc = cm.doc;
2310 (range.to().line - range.from().line > 100 || (selected = cm.getSelection()).length > 1000);
2311 var content = minimal ? "-" : selected || cm.getSelection();
2806 // Don't do a replace if the drop happened inside of the selected text.
2816 var selected
[all...]
/external/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js1299 fragment.appendChild(elt("div", null, "CodeMirror-selected", "position: absolute; left: " + left +
2218 // When something is selected, it is present in the textarea, and
2219 // selected (unless it is huge, in which case a placeholder is
2220 // used). When nothing is selected, the cursor sits after previously
2303 // when not typing and nothing is selected)
2305 var minimal, selected, doc = cm.doc;
2310 (range.to().line - range.from().line > 100 || (selected = cm.getSelection()).length > 1000);
2311 var content = minimal ? "-" : selected || cm.getSelection();
2806 // Don't do a replace if the drop happened inside of the selected text.
2816 var selected
[all...]
/external/chromium_org/chrome/browser/extensions/api/sessions/
H A Dsessions_api.cc98 tab_struct->selected = index == selected_index;
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dnetwork_list.js867 * Close bubble and menu when a different list item is selected.
875 // is selected, not when the menu's owner item is deselected.
878 if (event.changes[i].selected) {
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_win.h178 CONTENT_EXPORT STDMETHODIMP get_accSelection(VARIANT* selected);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
H A DSettingsScreen.js816 this.itemForId(this._selectedId).classList.remove("selected");
820 this.itemForId(this._selectedId).classList.add("selected");
1019 options[i].selected = (options[i].value === value);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
H A DPrettyPatch.rb386 .selected .lineNumber {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devlist.c54 * @evlist: selected event list
922 evlist->selected = evsel;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DElementsTreeOutline.js1191 this.selectionElement.className = "selection selected";
1256 var wasSelected = child.selected;
1497 // or create a new attribute on the selected element.
2158 if (this.selected)

Completed in 4130 milliseconds

<<1112131415