Searched refs:column (Results 1 - 25 of 672) sorted by relevance

1234567891011>>

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/MailDemo/MailDemoActiveRecordBindings/migrate/
H A D002_create_emails.rb4 t.column :address, :string, :default => 'test@test.com'
5 t.column :subject, :string, :default => 'test subject'
6 t.column :body, :text
7 t.column :updated_at, :datetime
8 t.column :mailbox_id, :integer
H A D001_create_mailboxes.rb4 t.column :title, :string, :default => 'title'
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DExpressionRangeInfo.h34 // Line and column values are encoded in 1 of 3 modes depending on the size
37 // 1. FatLine: 22-bit line, 8-bit column.
38 // 2. FatColumn: 8-bit line, 22-bit column.
39 // 3. FatLineAndColumn: 32-bit line, 32-bit column.
41 // For the first 2 modes, the line and column will be encoded in the 30-bit
44 // holds the FatPosition records with the full 32-bit line and column values.
54 uint32_t column; member in struct:JSC::ExpressionRangeInfo::FatPosition
75 void encodeFatLineMode(unsigned line, unsigned column) argument
78 ASSERT(column <= MaxFatLineModeColumn);
79 position = ((line & FatLineModeLineMask) << FatLineModeLineShift | (column
82 encodeFatColumnMode(unsigned line, unsigned column) argument
89 decodeFatLineMode(unsigned& line, unsigned& column) argument
95 decodeFatColumnMode(unsigned& line, unsigned& column) argument
[all...]
/macosx-10.9.5/text_cmds-87/expand/
H A Dexpand.c71 int c, column; local
112 column = 0;
119 column++;
120 } while (column & 07);
126 column++;
127 } while (((column - 1) % tabstops[0]) != (tabstops[0] - 1));
131 if (tabstops[n] > column)
135 column++;
138 while (column < tabstops[n]) {
140 column
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeColumn.c27 * column in a TreeCtrl.
95 int id; /* unique column identifier */
434 * column description into a pointer to a Column.
499 * Tcl_Obj containing the string representation of the column.
558 * A column description must refer to a single column.
562 "column",
573 * A column description must refer to a single column.
578 "column",
644 TreeColumn column = clientData; local
807 TreeColumn column = *first; local
835 ColumnHasTag( TreeColumn column, Tk_Uid tag ) argument
1138 TreeColumn column = NULL; local
1266 TreeColumn column = TreeColumnList_Nth(columns, i); local
1622 TreeColumn column, column2 = NULL; local
1681 TreeColumn column; local
1760 TreeColumn column = tree->columns; local
1881 TreeColumn column, prev, next, last; local
2049 Column_Config( TreeColumn column, int objc, Tcl_Obj *CONST objv[], int createFlag ) argument
2345 TreeColumn column; local
2433 TreeColumn_SetDInfo( TreeColumn column, TreeColumnDInfo dInfo ) argument
2585 Column_UpdateTextLayout( TreeColumn column, int width ) argument
2653 Column_GetArrowSize( TreeColumn column, int *widthPtr, int *heightPtr ) argument
2749 Column_DoLayout( TreeColumn column, struct Layout *layout ) argument
3444 TreeColumn_BackgroundGC( TreeColumn column, int index ) argument
3502 TreeColumn_StyleDeleted( TreeColumn column, TreeStyle style ) argument
3641 TreeColumn column; local
3818 TreeColumn column; local
3852 TreeColumn column; local
3936 TreeColumn column, last = tree->columnLast; local
4224 TreeColumn column = tree->columns; local
4304 TreeColumn column; local
4325 TreeColumn column; local
4395 Column_DrawArrow( TreeColumn column, TreeDrawable td, int x, int y, struct Layout layout ) argument
4517 Column_Draw( TreeColumn column, TreeDrawable td, int x, int y, int visIndex, int dragImage ) argument
4720 TreeColumn column = tree->columnDrag.indColumn; local
4765 TreeColumn column = tree->columnLockLeft; local
4802 TreeColumn column = tree->columnLockRight; local
4856 TreeColumn column = tree->columns; local
5106 TreeColumn column; local
5146 TreeColumn column; local
5182 TreeColumn_Bbox( TreeColumn column, int *x, int *y, int *w, int *h ) argument
5251 TreeColumn column = tree->columns; local
5341 TreeColumn column; local
5613 TreeColumn column = tree->columnLockLeft; local
5660 TreeColumn column = tree->columnLockRight; local
5700 TreeColumn column; local
5738 TreeColumn column = tree->columns; local
[all...]
/macosx-10.9.5/text_cmds-87/colrm/
H A Dcolrm.c68 u_long column, start, stop; local
88 errx(1, "illegal column -- %s", argv[1]);
93 errx(1, "illegal column -- %s", argv[0]);
104 for (column = 0;;) {
110 if (column)
111 --column;
114 column = 0;
117 column = (column + TAB) & ~(TAB - 1);
121 column
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/lib/Class/DBI/
H A DAttribute.pm5 Class::DBI::Attribute - A value in a column.
9 my $column = Class::DBI::Attribute->new($column => $value);
13 This stores the row-value of a certain column in an object.
24 __PACKAGE__->mk_accessors(qw/column current_value known/);
33 column => $col, current_value => $val, known => 1,
H A DColumn.pm5 Class::DBI::Column - A column in a table
9 my $column = Class::DBI::Column->new($name);
11 my $name = $column->name;
13 my @groups = $column->groups;
16 if ($column->in_database) { ... }
42 my $column = Class::DBI::Column->new($column)
44 A new object for this column.
/macosx-10.9.5/CPANInternal-140/Class-DBI/lib/Class/DBI/
H A DColumn.pm5 Class::DBI::Column - A column in a table
9 my $column = Class::DBI::Column->new($name);
11 my $name = $column->name;
13 my @groups = $column->groups;
16 if ($column->in_database) { ... }
42 my $column = Class::DBI::Column->new($column)
44 A new object for this column.
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DRecognitionException.cpp18 , column(-1)
25 , column(-1)
35 , column(column_) function in namespace:antlr
53 if ( column != -1 )
54 fileLineColumnString = fileLineColumnString + ":" + column;
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DLexerSharedInputState.hpp33 : column(1)
48 : column(1)
64 : column(1)
82 column = 1;
101 column = 1;
111 * @param column_ column number to be set
116 column = column_;
125 int column;
H A DRecognitionException.hpp25 int line, int column ); member in class:antlr::RecognitionException
44 * @return the column number that this exception happened on.
48 return column;
51 /// Return complete error message with line/column number info (if present)
54 /// See what file/line/column info is present and return it as a string
59 int column; // not used by treeparsers member in class:antlr::RecognitionException
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDOMSyntaxHighlighter.js61 var column = 0;
63 var newColumn = this._tokenizer.nextToken(column);
66 if (column > plainTextStart) {
67 var plainText = line.substring(plainTextStart, column);
70 var token = line.substring(column, newColumn);
74 column = newColumn;
75 } while (column < line.length)
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/CDBICompat/
H A DTriggers.pm38 my ($self, $column, $value, @rest) = @_;
39 my $vals = { $column => $value };
40 $self->call_trigger("before_set_${column}", $value, $vals);
41 return $self->next::method($column, $vals->{$column});
H A DAccessorMapping.pm37 my ($class, $column) = @_;
39 return $class->accessor_name($column)
42 return $column;
46 my ($class, $column) = @_;
48 return $class->mutator_name($column)
51 return $column;
H A DTempColumns.pm24 carp "Declaring column $existing_col as TEMP but it already exists";
73 my ($self, $column) = @_;
75 $self->throw_exception( "No such TEMP column '${column}'" ) unless $self->_temp_columns->{$column} ;
76 return $self->{_temp_column_data}{$column}
77 if exists $self->{_temp_column_data}{$column};
82 my ($self, $column, $value) = @_;
83 $self->throw_exception( "No such TEMP column '${column}'" )
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dmessagedialog.itk123 grid $itk_component(image) -row 0 -column 0
124 grid $itk_component(message) -row 1 -column 0
127 grid $itk_component(message) -row 0 -column 0
128 grid $itk_component(image) -row 1 -column 0
131 grid $itk_component(message) -row 0 -column 0
132 grid $itk_component(image) -row 0 -column 1
135 grid $itk_component(image) -row 0 -column 0
136 grid $itk_component(message) -row 0 -column 1
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/ctext/
H A Dctext_scroll_test.tcl10 grid .t -row 0 -column 1
11 grid .x -column 1 -sticky we
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/t/testlib/
H A DActor.pm19 my ($class, $column) = @_;
20 return "set_" . $column->name;
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/library/
H A Dtreectrl.tcl221 # Return 1 if the given column should be resized by the left edge.
225 # column The column.
227 proc ::TreeCtrl::ColumnCanResizeLeft {w column} {
228 if {[$w column cget $column -lock] eq "right"} {
229 if {[$w column compare $column == "first visible lock right"]} {
232 if {[$w column compare $column
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/ace/
H A Dmode_css.js105 var supportType = exports.supportType = "animation-fill-mode|alignment-adjust|alignment-baseline|animation-delay|animation-direction|animation-duration|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|animation|appearance|azimuth|backface-visibility|background-attachment|background-break|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|background|baseline-shift|binding|bleed|bookmark-label|bookmark-level|bookmark-state|bookmark-target|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|border|bottom|box-align|box-decoration-break|box-direction|box-flex-group|box-flex|box-lines|box-ordinal-group|box-orient|box-pack|box-shadow|box-sizing|break-after|break-before|break-inside|caption-side|clear|clip|color-profile|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|crop|cue-after|cue-before|cue|cursor|direction|display|dominant-baseline|drop-initial-after-adjust|drop-initial-after-align|drop-initial-before-adjust|drop-initial-before-align|drop-initial-size|drop-initial-value|elevation|empty-cells|fit|fit-position|float-offset|float|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|font|grid-columns|grid-rows|hanging-punctuation|height|hyphenate-after|hyphenate-before|hyphenate-character|hyphenate-lines|hyphenate-resource|hyphens|icon|image-orientation|image-rendering|image-resolution|inline-box-align|left|letter-spacing|line-height|line-stacking-ruby|line-stacking-shift|line-stacking-strategy|line-stacking|list-style-image|list-style-position|list-style-type|list-style|margin-bottom|margin-left|margin-right|margin-top|margin|mark-after|mark-before|mark|marks|marquee-direction|marquee-play-count|marquee-speed|marquee-style|max-height|max-width|min-height|min-width|move-to|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|orphans|outline-color|outline-offset|outline-style|outline-width|outline|overflow-style|overflow-x|overflow-y|overflow|padding-bottom|padding-left|padding-right|padding-top|padding|page-break-after|page-break-before|page-break-inside|page-policy|page|pause-after|pause-before|pause|perspective-origin|perspective|phonemes|pitch-range|pitch|play-during|position|presentation-level|punctuation-trim|quotes|rendering-intent|resize|rest-after|rest-before|rest|richness|right|rotation-point|rotation|ruby-align|ruby-overhang|ruby-position|ruby-span|size|speak-header|speak-numeral|speak-punctuation|speak|speech-rate|stress|string-set|table-layout|target-name|target-new|target-position|target|text-align-last|text-align|text-decoration|text-emphasis|text-height|text-indent|text-justify|text-outline|text-shadow|text-transform|text-wrap|top|transform-origin|transform-style|transform|transition-delay|transition-duration|transition-property|transition-timing-function|transition|unicode-bidi|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch-range|voice-pitch|voice-rate|voice-stress|voice-volume|volume|white-space-collapse|white-space|widows|width|word-break|word-spacing|word-wrap|z-index";
107 var supportConstant = exports.supportConstant = "absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoi
[all...]
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DSCSITargetProberDocument.m118 id column = nil;
121 // NSTableColumn in an NSDictionary and use the column identifier as the
123 // and 2) allows us to easily look up the table column when it comes time to
141 // No, remove the table column.
142 column = [ table tableColumnWithIdentifier: kTableColumnIDString ];
143 [ invisibleTableColumns setObject: column forKey: kTableColumnIDString ];
144 [ table removeTableColumn: column ];
152 // No, remove the table column.
153 column = [ table tableColumnWithIdentifier: kTableColumnDescriptionString ];
154 [ invisibleTableColumns setObject: column forKe
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/demos/
H A Dmailwasher.tcl30 $T column create -text Delete -textpadx $pad -justify center -tags delete
31 $T column create -text Bounce -textpadx $pad -justify center -tags bounce
32 $T column create -text Status -width 80 -textpadx $pad -tags status
33 $T column create -text Size -width 40 -textpadx $pad -justify right -tags size
34 $T column create -text From -width 140 -textpadx $pad -tags from
35 $T column create -text Subject -width 240 -textpadx $pad -tags subject
36 $T column create -text Received -textpadx $pad -arrow up -tags received
37 $T column create -text Attachments -textpadx $pad -tags attachments
133 if {[%T column compare %C == $SortColumn]} {
134 if {[%T column cge
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dtabify.el47 column)
49 (setq column (current-column))
51 (indent-to column))))))
62 when this can be done without changing the column they end at.
70 ;; since otherwise it will throw off current-column.
79 (let ((end-col (current-column))
82 (current-column))))
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityARIAGrid.cpp124 AccessibilityTableColumn* column = static_cast<AccessibilityTableColumn*>(axCache->getOrCreate(ColumnRole)); local
125 column->setColumnIndex((int)i);
126 column->setParent(this);
127 m_columns.append(column);
128 if (!column->accessibilityIsIgnored())
129 m_children.append(column);

Completed in 280 milliseconds

1234567891011>>