Searched refs:expanded (Results 1 - 25 of 105) sorted by relevance

12345

/macosx-10.10/tcsh-65/tcsh/
H A Dsh.dol.c101 Char **expanded; local
103 expanded = Dfix2(t->t_dcom); /* found one */
105 t->t_dcom = expanded;
118 Char *Dv[2], **expanded; local
124 expanded = Dfix2(Dv);
125 if (expanded[0] == NULL || expanded[1] != NULL) {
126 blkfree(expanded);
130 cp = Strsave(expanded[0]);
131 blkfree(expanded);
[all...]
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLViewer.js137 collapsible.expanded.start.appendChild(createTag(node, false, false));
139 nodeParentPairs.push({parentElement: collapsible.expanded.content, node: child});
140 collapsible.expanded.end.appendChild(createTag(node, true, false));
157 collapsible.expanded.start.appendChild(createComment('<!--'));
158 collapsible.expanded.content.appendChild(createComment(node.nodeValue));
159 collapsible.expanded.end.appendChild(createComment('-->'));
177 collapsible.expanded.start.appendChild(createText('<![CDATA['));
178 collapsible.expanded.content.appendChild(createText(node.nodeValue));
179 collapsible.expanded.end.appendChild(createText(']]>'));
197 collapsible.expanded
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DOverviewTimelineView.css64 .timeline-view.overview > .data-grid tr.parent:not(.expanded) td.graph-column .timeline-record-bar:not(.has-inactive-segment) > .segment {
68 .timeline-view.overview > .data-grid tr.parent:not(.expanded).selected td.graph-column .timeline-record-bar:not(.has-inactive-segment) > .segment {
72 .timeline-view.overview > .data-grid:focus tr.parent:not(.expanded).selected td.graph-column .timeline-record-bar:not(.has-inactive-segment) > .segment {
76 .timeline-view.overview > .data-grid tr.parent:not(.expanded) td.graph-column .timeline-record-bar.has-inactive-segment > .segment:not(.inactive) {
80 .timeline-view.overview > .data-grid tr.parent:not(.expanded).selected td.graph-column .timeline-record-bar.has-inactive-segment > .segment:not(.inactive) {
84 .timeline-view.overview > .data-grid:focus tr.parent:not(.expanded).selected td.graph-column .timeline-record-bar.has-inactive-segment > .segment:not(.inactive) {
H A DSection.css54 .section.expanded .header::before {
73 .section.expanded .header label, .event-bar.expanded .header label {
93 .section.expanded .properties, .event-bar.expanded .event-properties {
98 .section.expanded.no-header .properties {
147 .properties-tree li.parent.expanded::before {
163 .properties-tree ol.expanded {
H A DSection.js109 get expanded()
114 set expanded(x)
198 this.element.classList.add("expanded");
212 this.element.classList.remove("expanded");
217 this.expanded = !this.expanded;
H A DTreeOutline.js45 this.expanded = true;
86 child.expanded = child.treeOutline._treeElementsExpandedState[child.identifier];
94 if (isFirstChild && this.expanded)
135 child.expanded = child.treeOutline._treeElementsExpandedState[child.identifier];
143 if (isFirstChild && this.expanded)
400 if (this.selectedTreeElement.expanded) {
422 if (this.selectedTreeElement.expanded) {
510 this.expanded = false;
630 if (x && this.expanded)
694 if (this.expanded)
[all...]
H A DDOMTreeOutline.css97 .dom-tree-outline ol.children.expanded {
142 .dom-tree-outline li.parent.expanded::before {
146 .dom-tree-outline:focus li.parent.expanded.selected::before {
H A DIndexedDatabaseObjectStoreContentView.css69 .content-view.indexed-database-object-store > .data-grid:focus tr.selected td .section.expanded .header::before {
77 .content-view.indexed-database-object-store > .data-grid:focus tr.selected td .properties-tree li.parent.expanded::before {
H A DTreeOutlineDataGridSynchronizer.js206 if (!dataGridNode.__treeElement.expanded)
218 if (dataGridNode.__treeElement.expanded)
270 if (!dataGridNode.expanded)
282 if (dataGridNode.expanded)
H A DDataGrid.js39 this.expanded = true;
100 ExpandedNode: "datagrid-expanded-node",
744 if (this.expanded)
892 if (this.selectedNode.expanded) {
912 if (this.selectedNode.expanded) {
1168 if (gridNode.expanded) {
1352 if (this.expanded)
1353 this._element.classList.add("expanded");
1410 if (!currentAncestor.expanded) {
1435 if (this.expanded)
[all...]
H A DObjectPropertiesSection.js280 var context = { expanded: this.expanded }; property in class:context
299 if (context.expanded)
H A DLegacyProfileDataGridTree.js130 if (!force && (!gridNode.expanded || gridNode.lastComparator === comparator)) {
312 get expanded()
H A DDataGrid.css233 .data-grid tr.parent.expanded td.disclosure::before {
241 .data-grid:focus tr.parent.expanded.selected td.disclosure::before {
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dbashhist.c196 be expanded? */
417 If there is an error, return NULL, otherwise the expanded line is
429 int expanded; local
432 expanded = 0;
439 expanded = history_expand (line, &history_value);
441 if (expanded)
445 if (expanded < 0)
448 else if (hist_verify == 0 || expanded == 2)
456 if (expanded < 0 || expanded
[all...]
/macosx-10.10/xnu-2782.1.97/makedefs/
H A DMakeInc.cmd201 # $(1) is an expanded kernel config from a TARGET_CONFIGS_UC tuple
202 # $(2) is an expanded arch config from a TARGET_CONFIGS_UC tuple
203 # $(3) is an expanded machine config from a TARGET_CONFIGS_UC tuple
206 # $(1) is an un-expanded kernel config from a TARGET_CONFIGS_UC tuple
207 # $(2) is an un-expanded arch config from a TARGET_CONFIGS_UC tuple
208 # $(3) is an un-expanded machine config from a TARGET_CONFIGS_UC tuple
227 # $(1) is an un-expanded TARGET_CONFIGS_UC list, which must be consumed
245 # $(1) is a fully-expanded kernel config
246 # $(2) is a fully-expanded arch config
247 # $(3) is a fully-expanded machin
[all...]
/macosx-10.10/ncurses-44/ncurses/form/
H A Dfld_def.c308 New_Field->expanded = typeCalloc(char *, 1 + (unsigned)nbuf);
383 if (field->expanded != 0)
389 FreeIfNeeded(field->expanded[n]);
391 free(field->expanded);
H A Dform.priv.h52 #define NCURSES_FIELD_INTERNALS char** expanded; WINDOW *working;
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/
H A Dmake55.tcl62 regexp -expanded {s(.)@vfs_LIB_FILE@\1(.*)\1} $line => sep files([platform])
/macosx-10.10/ncurses-44/xcodescripts/
H A Dderived_sources.sh27 # expanded.c
30 > "$BUILT_PRODUCTS_DIR"/expanded.c
/macosx-10.10/vim-55/runtime/ftplugin/
H A Doccam.vim18 " Let tab keys always be expanded to spaces
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DNSScrollerImpDetails.h47 - (void)setExpanded:(BOOL)expanded;
/macosx-10.10/Chess-310.6/sjeng/
H A Dproof.c66 unsigned char expanded; member in struct:node
466 while (tnode->expanded)
512 if (node->expanded)
874 newnode->expanded = FALSE;
903 node->expanded = TRUE;
914 node->expanded = FALSE;
1007 root->expanded = FALSE;
1215 if (root->expanded)
1376 while (currentnode->expanded)
1444 while (currentnode->expanded)
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/
H A Dtext.rb68 expanded = []
77 expanded << line
80 expanded.join
/macosx-10.10/ruby-106/ruby/lib/rdoc/ri/
H A Ddriver.rb890 # will be expanded to Zlib::DataError.
893 klass.split('::').inject '' do |expanded, klass_part|
894 expanded << '::' unless expanded.empty?
895 short = expanded << klass_part
898 klass_name =~ /^#{expanded}[^:]*$/
903 expanded = abbrevs[short]
905 raise NotFoundError, short unless expanded
907 expanded.dup
/macosx-10.10/swig-12/Source/CParse/
H A Dtempl.c51 static int expanded = 0; local
62 if (!expanded) {
63 expanded = 1;
66 expanded = 0;

Completed in 213 milliseconds

12345