Searched refs:isSelected (Results 1 - 25 of 75) sorted by relevance

123

/external/webkit/Source/WebKit/mac/Plugins/
H A DWebPlugin.h84 - (void)webPlugInSetIsSelected:(BOOL)isSelected;
/external/chromium/chrome/browser/resources/net_internals/
H A Dsourceentry.js23 SourceEntry.prototype.isSelected = function() {
27 SourceEntry.prototype.setSelectedStyles = function(isSelected) {
28 changeClassName(this.row_, 'selected', isSelected);
29 this.getSelectionCheckbox().checked = isSelected;
131 SourceEntry.prototype.setSelected = function(isSelected) {
132 if (isSelected == this.isSelected())
135 this.isSelected_ = isSelected;
137 this.setSelectedStyles(isSelected);
138 this.parentView_.modifySelectionArray(this, isSelected);
[all...]
H A Dtabswitcherview.js156 TabEntry.prototype.setSelected = function(isSelected) {
157 this.active = isSelected;
158 changeClassName(this.getTabHandleNode(), 'selected', isSelected);
159 this.contentView.show(isSelected);
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityMenuListOption.cpp70 return !m_popup->isOffScreen() || isSelected();
79 bool AccessibilityMenuListOption::isSelected() const function in class:WebCore::AccessibilityMenuListOption
H A DAccessibilityListBoxOption.h55 virtual bool isSelected() const;
H A DAccessibilityMenuListOption.h57 virtual bool isSelected() const;
H A DAccessibilityListBoxOption.cpp75 bool AccessibilityListBoxOption::isSelected() const function in class:WebCore::AccessibilityListBoxOption
178 bool isOptionSelected = isSelected();
H A DAccessibilityListBox.cpp101 if (listBoxOption->isSelected())
124 if (static_cast<AccessibilityListBoxOption*>(m_children[i].get())->isSelected())
/external/webkit/Source/WebCore/platform/gtk/
H A DWidgetGtk.cpp89 void Widget::setIsSelected(bool isSelected) argument
101 g_object_set(platformWidget(), "webkit-widget-is-selected", isSelected, NULL);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundleHitTestResult.cpp108 bool InjectedBundleHitTestResult::isSelected() const function in class:WebKit::InjectedBundleHitTestResult
110 return m_hitTestResult.isSelected();
H A DInjectedBundleHitTestResult.h61 bool isSelected() const;
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAXObjectCacheAtk.cpp118 bool isSelected = item->isSelected(); local
119 g_signal_emit_by_name(axItem, "state-change", "selected", isSelected);
120 g_signal_emit_by_name(axItem, "focus-event", isSelected);
121 g_signal_emit_by_name(axItem, "state-change", "focused", isSelected);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCFlatButton.java63 boolean isSelected = m_down | m_selected;
64 Color faceColor = isSelected ? COLOR_FACE_SELECTED : COLOR_FACE;
66 isSelected ? COLOR_BORDER_GRADIENT1_SELECTED : COLOR_BORDER_GRADIENT1;
68 isSelected ? COLOR_BORDER_GRADIENT2_SELECTED : COLOR_BORDER_GRADIENT2;
/external/proguard/src/proguard/gui/
H A DProGuardGUI.java1109 if (boilerplateKeepCheckBoxes[index].isSelected())
1119 if (boilerplateKeepNamesCheckBoxes[index].isSelected())
1138 if (boilerplateNoSideEffectMethodCheckBoxes[index].isSelected())
1163 configuration.shrink = shrinkCheckBox .isSelected();
1164 configuration.printUsage = printUsageCheckBox .isSelected() ? new File(printUsageTextField .getText()) : null;
1166 configuration.optimize = optimizeCheckBox .isSelected();
1167 configuration.allowAccessModification = allowAccessModificationCheckBox .isSelected();
1168 configuration.mergeInterfacesAggressively = mergeInterfacesAggressivelyCheckBox .isSelected();
1172 configuration.obfuscate = obfuscateCheckBox .isSelected();
1173 configuration.printMapping = printMappingCheckBox .isSelected()
[all...]
H A DClassSpecificationsPanel.java203 boolean isSelected,
215 if (isSelected)
200 getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument
H A DMemberSpecificationsPanel.java224 boolean isSelected,
248 if (isSelected)
221 getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument
H A DClassSpecificationDialog.java416 boolean markClasses = !keepClassMembersRadioButton .isSelected();
417 boolean markConditionally = keepClassesWithMembersRadioButton.isSelected();
418 boolean allowShrinking = allowShrinkingCheckBox .isSelected();
419 boolean allowOptimization = allowOptimizationCheckBox .isSelected();
420 boolean allowObfuscation = allowObfuscationCheckBox .isSelected();
511 if (radioButtons[0].isSelected())
515 else if (radioButtons[1].isSelected())
H A DFilterBuilder.java87 if (checkBox.isSelected())
/external/webkit/Source/WebCore/platform/android/
H A DWidgetAndroid.cpp101 void Widget::setIsSelected(bool isSelected) argument
/external/webkit/Source/WebCore/rendering/
H A DRenderReplaced.h48 bool isSelected() const;
H A DRenderReplaced.cpp185 if (isSelected() && m_inlineBoxWrapper) {
317 if (!isSelected())
331 if (checkWhetherSelected && !isSelected())
351 line->setHasSelectedChildren(isSelected());
355 bool RenderReplaced::isSelected() const function in class:WebCore::RenderReplaced
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundleHitTestResult.cpp79 return toImpl(hitTestResultRef)->isSelected();
/external/webkit/Source/WebCore/platform/mac/
H A DWidgetMac.mm55 - (void)setIsSelected:(BOOL)isSelected;
56 - (void)webPlugInSetIsSelected:(BOOL)isSelected;
323 void Widget::setIsSelected(bool isSelected)
329 [view webPlugInSetIsSelected:isSelected];
331 [view setIsSelected:isSelected];
/external/skia/samplecode/
H A DSampleDraw.cpp97 bool isSelected() const { return SkToBool(fFlags & kSelected_Flag); } function in class:Draw
111 if (this->isSelected()) {
362 if ((*iter)->isSelected()) {
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java119 boolean isSelected, boolean hasFocus) {
117 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean hasFocus) argument

Completed in 565 milliseconds

123