HomeSort by relevance Sort by last modified time
    Searched refs:expanded (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/webkit/WebCore/html/
HTMLDataGridRowElement.idl 34 attribute boolean expanded; // Whether or not the row is open (if it is, child rows will be shown).
HTMLDataGridRowElement.h 48 bool expanded() const;
HTMLDataGridRowElement.cpp 71 bool HTMLDataGridRowElement::expanded() const function in class:WebCore::HTMLDataGridRowElement
76 void HTMLDataGridRowElement::setExpanded(bool expanded)
78 setAttribute(expandedAttr, expanded ? "" : 0);
  /external/webkit/WebCore/inspector/front-end/
Section.js 87 get expanded()
92 set expanded(x)
119 this.element.addStyleClass("expanded");
132 this.element.removeStyleClass("expanded");
137 this.expanded = !this.expanded;
SidebarPane.js 48 this.expanded = false;
88 get expanded()
93 set expanded(x)
106 this.element.addStyleClass("expanded");
116 this.element.removeStyleClass("expanded");
123 this.expanded = !this.expanded;
WatchExpressionsSidebarPane.js 42 this.expanded = WebInspector.settings.watchExpressions.length > 0;
84 this.expanded = true;
160 // with no expressions, and expanded tree, we get some extra vertical
166 this.expanded = (propertyCount != 0);
250 var context = { expanded: this.expanded };
treeoutline.js 40 this.expanded = true;
78 child.expanded = child.treeOutline._treeElementsExpandedState[child.identifier];
126 child.expanded = child.treeOutline._treeElementsExpandedState[child.identifier];
362 if (this.selectedTreeElement.expanded) {
382 if (this.selectedTreeElement.expanded) {
445 this.expanded = false;
538 if (x && this.expanded)
565 if (this.expanded)
566 this._listItemNode.addStyleClass("expanded");
586 if (this.expanded)
    [all...]
DataGrid.js 133 this.expanded = true;
466 if (this.expanded)
557 if (this.selectedNode.expanded) {
577 if (this.selectedNode.expanded) {
718 if (gridNode.expanded) {
821 if (this.expanded)
822 this._element.addStyleClass("expanded");
854 if (!currentAncestor.expanded) {
879 if (this.expanded)
880 this._element.addStyleClass("expanded");
    [all...]
audits.css 87 #audit-result-view > .pane.expanded:nth-last-of-type(1) {
91 #audit-result-view .pane.expanded:nth-last-of-type(1) {
125 #audit-result-view .section.expanded .section-content {
129 #audit-result-view .section.expanded .section-content > p:nth-of-type(1) {
133 #audit-result-view .section.expanded .section-content > p:nth-of-type(1) > *:nth-child(1) {
141 #audit-result-view .section.expanded .header::before {
ResourceView.js 80 this.requestHeadersTreeElement.expanded = true;
88 this.queryStringTreeElement.expanded = true;
94 this.formDataTreeElement.expanded = true;
100 this.requestPayloadTreeElement.expanded = true;
106 this.responseHeadersTreeElement.expanded = true;
TextViewer.js 139 var wasExpanded = oldChunk.expanded;
140 oldChunk.expanded = false;
171 prefixChunk.expanded = true;
172 lineChunk.expanded = true;
174 suffixChunk.expanded = true;
282 toCollapse[i].expanded = false;
284 toExpand[i].expanded = true;
589 get expanded()
594 set expanded(expanded)
    [all...]
ObjectPropertiesSection.js 200 var context = { expanded: this.expanded };
214 if (context.expanded)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 35 public View row; // the outer expanded view
37 public View expanded; // the inflated RemoteViews field in class:NotificationData.Entry
61 View expanded, StatusBarIconView icon) {
67 entry.expanded = expanded;
104 if (entry.expanded != null) { // the view successfully inflated
118 if (entry.expanded != null) { // the view successfully inflated
StatusBarService.java 114 // expanded notifications
263 ExpandedView expanded = (ExpandedView)View.inflate(context, local
265 expanded.mService = this;
285 mExpandedView = expanded;
286 mExpandedContents = expanded.findViewById(R.id.notificationLinearLayout);
287 mOngoingTitle = (TextView)expanded.findViewById(R.id.ongoingTitle);
288 mOngoingItems = (LinearLayout)expanded.findViewById(R.id.ongoingItems);
289 mLatestTitle = (TextView)expanded.findViewById(R.id.latestTitle);
290 mLatestItems = (LinearLayout)expanded.findViewById(R.id.latestItems);
291 mNoNotificationsTitle = (TextView)expanded.findViewById(R.id.noNotificationsTitle)
521 View expanded = null; local
561 final View expanded = views[2]; local
    [all...]
  /external/e2fsprogs/po/
at-expand.pl 5 "#. since the strings are expanded in two different ways. First of all,\n",
6 "#. there is an \@-expansion, where strings like \"\@i\" are expanded to\n",
14 "#. if \"bblock\" (which indicated that \"\@b\" would be expanded to \"block\")\n",
15 "#. is translated as \"ddatenverlust\", then \"\@d\" will be expanded to\n",
67 my $expanded = 0;
118 $expanded++;
122 $msg_accum = $msg_accum . "#. \@-expanded: $msg\n";
130 $expanded++;
133 $msg_accum = $msg_accum . "#. \@-expanded: $msg\n";
137 if ($expanded) {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List6.java 367 public SpeechView(Context context, String title, String dialogue, boolean expanded) {
383 mDialogue.setVisibility(expanded ? VISIBLE : GONE);
403 public void setExpanded(boolean expanded) {
404 mDialogue.setVisibility(expanded ? VISIBLE : GONE);
  /system/core/libcutils/
buffer.c 63 char* expanded = realloc(buffer->data, expected); local
64 if (expanded == NULL) {
69 buffer->data = expanded;
  /packages/apps/Contacts/src/com/android/contacts/
GroupingListAdapter.java 49 * Information about a specific list item: is it a group, if so is it expanded.
78 * and whether they are expanded.
134 boolean expanded);
140 * Cache should be reset whenever the cursor changes or groups are expanded or collapsed.
203 protected void addGroup(int cursorPosition, int size, boolean expanded) {
213 if (expanded) {
233 boolean expanded = (metadata & EXPANDED_GROUP_MASK) != 0;
238 if (expanded) {
334 boolean expanded = (group & EXPANDED_GROUP_MASK) != 0;
341 metadata.isExpanded = expanded;
    [all...]
  /external/junit/src/junit/swingui/
TestSuitePanel.java 56 boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) {
58 Component c= super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
Utils.java 378 byte[] expanded = new byte[capacity];
379 System.arraycopy(buf, 0, expanded, 0, size);
380 buf = expanded;
  /build/tools/droiddoc/templates/assets/
android-developer-reference.js 123 if (node.expanded) {
126 node.expanded = false;
139 node.expanded = false;
156 node.expanded = false;
177 if (node.children_data && !node.expanded) {
186 node.expanded = true;
302 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
329 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
  /external/quake/quake/src/QW/server/
sv_ccmds.c 305 char expanded[MAX_QPATH]; local
324 sprintf (expanded, "maps/%s.bsp", level);
325 COM_FOpenFile (expanded, &f);
328 Con_Printf ("Can't find %s\n", expanded);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage2.java 147 Object[] expanded = tv.getExpandedElements(); local
149 tv.setExpandedElements(expanded);
  /external/chromium/base/
registry.cc 289 TCHAR expanded[kMaxStringLength]; local
290 size = ExpandEnvironmentStrings(raw_value, expanded, kMaxStringLength);
296 *value = expanded;
  /dalvik/vm/arch/x86-atom/
Call386ABI.S 107 subl %ecx, %esp # %esp<- expanded for arg region

Completed in 747 milliseconds

1 2 3