HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 351 - 375 of 2687) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
SearchDialogBase.py 54 l.grid(row=self.row, column=0, sticky="nw")
56 e.grid(row=self.row, column=1, sticky="nwe")
63 l.grid(row=self.row, column=0, sticky="nw")
65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe")
74 b.grid(pady=1,row=rows,column=0,sticky="ew")
137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
SearchDialogBase.py 54 l.grid(row=self.row, column=0, sticky="nw")
56 e.grid(row=self.row, column=1, sticky="nwe")
63 l.grid(row=self.row, column=0, sticky="nw")
65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe")
74 b.grid(pady=1,row=rows,column=0,sticky="ew")
137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
SearchDialogBase.py 54 l.grid(row=self.row, column=0, sticky="nw")
56 e.grid(row=self.row, column=1, sticky="nwe")
63 l.grid(row=self.row, column=0, sticky="nw")
65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe")
74 b.grid(pady=1,row=rows,column=0,sticky="ew")
137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
SearchDialogBase.py 54 l.grid(row=self.row, column=0, sticky="nw")
56 e.grid(row=self.row, column=1, sticky="nwe")
63 l.grid(row=self.row, column=0, sticky="nw")
65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe")
74 b.grid(pady=1,row=rows,column=0,sticky="ew")
137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-streams.rb 27 @stream.column.should == 1
32 @stream.column.should == 2
37 @stream.column.should == 0
42 @stream.column.should == 1
47 @stream.column.should == 2
52 @stream.column.should == 3
57 @stream.column.should == 4
62 @stream.column.should == 0
67 @stream.column.should == 0
72 @stream.column.should ==
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 158 final int column; field in class:LockPatternView.Cell
175 * @param column The column of the cell.
177 private Cell(int row, int column) {
178 checkRange(row, column);
180 this.column = column;
188 return column;
191 public static Cell of(int row, int column) {
192 checkRange(row, column);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ASTParser.java 79 buf.append(", column ");
140 int column = 0; local
143 line = pakage.getBeginLine(); column = pakage.getBeginColumn();
158 if(line==-1){line = in.getBeginLine(); column = in.getBeginColumn();} imports = add(imports, in);
186 if(line==-1){line = tn.getBeginLine(); column = tn.getBeginColumn();} types = add(types, tn);
200 {if (true) return new CompilationUnit(line == -1 ? 0 : line, column, token.endLine, token.endColumn,pakage, imports, types);}
209 int column; local
224 line=token.beginLine; column=token.beginColumn;
227 {if (true) return new PackageDeclaration(line, column, token.endLine, token.endColumn,annotations, name);}
236 int column; local
403 int column = modifier.beginColumn; local
542 int column = modifier.beginColumn; local
648 int column = -1; local
745 int column; local
1010 int column = modifier.beginColumn; local
1037 int column; local
1107 int column; local
1180 int column = modifier.beginColumn; local
1353 int column = modifier.beginColumn; local
1367 int column = modifier.beginColumn; local
1418 int column = 0; local
1565 int column = 0; local
1693 int column; local
1825 int column; local
2562 int column = 0; local
2637 int column; local
2649 int column; local
2662 int column = 0; local
2755 int column; local
2847 int column; local
3358 int column; local
3649 int column; local
3671 int column; local
3786 int column = modifier.beginColumn; local
3992 int column; local
4022 int column; local
4049 int column; local
4082 int column; local
4097 int column; local
4118 int column; local
4385 int column; local
4405 int column; local
4425 int column; local
4471 int column; local
4484 int column; local
4507 int column; local
4658 int column; local
4679 int column; local
4691 int column; local
4729 int column; local
4790 int column; local
4860 int column = modifier.beginColumn; local
5012 int column = modifier.beginColumn; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
tokenize.py 13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
356 column where the token begins in the source; a 2-tuple (erow, ecol) of
357 ints specifying the row and column where the token ends in the source;
398 column = 0
400 if line[pos] == ' ': column = column + 1
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
402 elif line[pos] == '\f': column = 0
    [all...]
  /external/python/cpython3/Lib/idlelib/
query.py 90 frame.grid(column=0, row=0, sticky='news')
107 entrylabel.grid(column=0, row=0, columnspan=3, padx=5, sticky=W)
108 self.entry.grid(column=0, row=1, columnspan=3, padx=5, sticky=W+E,
110 self.entry_error.grid(column=0, row=2, columnspan=3, padx=5,
112 self.button_ok.grid(column=1, row=99, padx=5)
113 self.button_cancel.grid(column=2, row=99, padx=5)
238 pathlabel.grid(column=0, row=10, columnspan=3, padx=5, pady=[10,0],
240 self.path.grid(column=0, row=11, columnspan=2, padx=5, sticky=W+E,
242 browse.grid(column=2, row=11, padx=5, sticky=W+S)
243 self.path_error.grid(column=0, row=12, columnspan=3, padx=5
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
356 column where the token begins in the source; a 2-tuple (erow, ecol) of
357 ints specifying the row and column where the token ends in the source;
398 column = 0
400 if line[pos] == ' ': column = column + 1
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
402 elif line[pos] == '\f': column =
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
356 column where the token begins in the source; a 2-tuple (erow, ecol) of
357 ints specifying the row and column where the token ends in the source;
398 column = 0
400 if line[pos] == ' ': column = column + 1
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
402 elif line[pos] == '\f': column =
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
356 column where the token begins in the source; a 2-tuple (erow, ecol) of
357 ints specifying the row and column where the token ends in the source;
398 column = 0
400 if line[pos] == ' ': column = column + 1
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
402 elif line[pos] == '\f': column =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
356 column where the token begins in the source; a 2-tuple (erow, ecol) of
357 ints specifying the row and column where the token ends in the source;
398 column = 0
400 if line[pos] == ' ': column = column + 1
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
402 elif line[pos] == '\f': column =
    [all...]
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 88 """Represents a position (line and column) in a text file."""
90 def __init__(self, line=-1, column=-1):
92 self.column = column
95 return self.line == rhs.line and self.column == rhs.column
102 self.line == rhs.line and self.column < rhs.column)
117 return '%s(%s)' % (self.line + 1, self.column)
120 return Cursor(self.line, self.column + offset
    [all...]
  /external/googletest/googletest/scripts/
pump.py 88 """Represents a position (line and column) in a text file."""
90 def __init__(self, line=-1, column=-1):
92 self.column = column
95 return self.line == rhs.line and self.column == rhs.column
102 self.line == rhs.line and self.column < rhs.column)
117 return '%s(%s)' % (self.line + 1, self.column)
120 return Cursor(self.line, self.column + offset
    [all...]
  /external/protobuf/gtest/scripts/
pump.py 89 """Represents a position (line and column) in a text file."""
91 def __init__(self, line=-1, column=-1):
93 self.column = column
96 return self.line == rhs.line and self.column == rhs.column
103 self.line == rhs.line and self.column < rhs.column)
118 return '%s(%s)' % (self.line + 1, self.column)
121 return Cursor(self.line, self.column + offset
    [all...]
  /external/v8/testing/gtest/scripts/
pump.py 88 """Represents a position (line and column) in a text file."""
90 def __init__(self, line=-1, column=-1):
92 self.column = column
95 return self.line == rhs.line and self.column == rhs.column
102 self.line == rhs.line and self.column < rhs.column)
117 return '%s(%s)' % (self.line + 1, self.column)
120 return Cursor(self.line, self.column + offset
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
pump.py 88 """Represents a position (line and column) in a text file."""
90 def __init__(self, line=-1, column=-1):
92 self.column = column
95 return self.line == rhs.line and self.column == rhs.column
102 self.line == rhs.line and self.column < rhs.column)
117 return '%s(%s)' % (self.line + 1, self.column)
120 return Cursor(self.line, self.column + offset
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/scripts/
pump.py 88 """Represents a position (line and column) in a text file."""
90 def __init__(self, line=-1, column=-1):
92 self.column = column
95 return self.line == rhs.line and self.column == rhs.column
102 self.line == rhs.line and self.column < rhs.column)
117 return '%s(%s)' % (self.line + 1, self.column)
120 return Cursor(self.line, self.column + offset
    [all...]
  /external/python/cpython2/Tools/audiopy/
audiopy 102 frame.grid(row=1, column=0, sticky='NSEW')
104 label.grid(row=0, column=0, sticky=E)
113 btn.grid(row=0, column=1, sticky=W)
126 btn.grid(row=1, column=1, sticky=W)
139 btn.grid(row=2, column=1, sticky=W)
154 btn.grid(row=3, column=1, sticky=W)
165 frame.grid(row=2, column=0, sticky='NSEW')
167 label.grid(row=0, column=0, sticky=E)
175 btn.grid(row=0, column=1, sticky=W)
189 btn.grid(row=1, column=1, sticky=W
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 69 for (int column = 0; column < grid.actualColumnCount; column++) {
70 int x = grid.getColumnX(column);
276 for (int column = 1; column < grid.actualColumnCount; column++) {
277 int x = grid.getColumnX(column);
287 int column = columnMatch.cellIndex; local
292 Rect cellBounds = grid.getCellBounds(row, column, 1, 1)
    [all...]
  /external/tensorflow/tensorflow/python/feature_column/
feature_column.py 21 When using FeatureColumns with `Estimators`, the type of feature column you
28 column:
43 To feed sparse features into DNN models, wrap the column with
56 indicator column but with an efficient implementation.
173 for column in feature_columns:
174 if not isinstance(column, _DenseColumn):
177 'You can wrap a categorical column with an '
178 'embedding_column or indicator_column. Given: {}'.format(column))
192 for column in sorted(feature_columns, key=lambda x: x.name):
193 ordered_columns.append(column)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableRow_LayoutParamsTest.java 69 assertEquals(-1, layoutParams.column);
77 assertEquals(-1, layoutParams.column);
82 assertEquals(-1, layoutParams.column);
86 assertEquals(5, layoutParams.column);
92 assertEquals(0, layoutParams.column);
98 assertEquals(0, layoutParams.column);
106 assertEquals(1, layoutParams.column);
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Wearable/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 100 public Object instantiateItem(ViewGroup container, int row, final int column) {
103 switch (column) {
125 if (column == PAGER_PRIMARY_IMAGE_COLUMN) {
183 public Drawable getBackgroundForPage(int row, int column) {
184 if (column == 0) {
190 return super.getBackgroundForPage(row, column);
194 public void destroyItem(ViewGroup viewGroup, int row, int column, Object object) {
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Wearable/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 100 public Object instantiateItem(ViewGroup container, int row, final int column) {
103 switch (column) {
125 if (column == PAGER_PRIMARY_IMAGE_COLUMN) {
183 public Drawable getBackgroundForPage(int row, int column) {
184 if (column == 0) {
190 return super.getBackgroundForPage(row, column);
194 public void destroyItem(ViewGroup viewGroup, int row, int column, Object object) {

Completed in 2755 milliseconds

<<11121314151617181920>>