HomeSort by relevance Sort by last modified time
    Searched refs:getColumn (Results 26 - 50 of 345) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smali/smali/src/main/java/org/jf/smali/
smaliFlexLexer.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportPage.java 138 TableColumn dirColumn = dirViewerColumn.getColumn();
142 TableColumn nameColumn = nameViewerColumn.getColumn();
189 TableColumn column = mTable.getColumn(i);
193 mTable.getColumn(0).setWidth(availableWidth);
  /external/clang/utils/analyzer/
CmpRuns.py 60 def getColumn(self):
84 self.getColumn(), self.getCategory(),
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 57 AI.column = SLoc.getColumn();
121 SLoc.getColumn(), common_flags()->strip_path_prefix);
  /external/deqp/framework/common/
tcuMatrix.hpp 62 Vector<T, Rows>& getColumn (int ndx);
63 const Vector<T, Rows>& getColumn (int ndx) const;
65 Vector<T, Rows>& operator[] (int ndx) { return getColumn(ndx); }
66 const Vector<T, Rows>& operator[] (int ndx) const { return getColumn(ndx); }
401 Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx)
407 const Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) const
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
AddTranslationDialog.java 180 TableColumn keyColumn = keyViewerColumn.getColumn();
184 TableColumn defaultColumn = defaultViewerColumn.getColumn();
188 TableColumn translationColumn = translationViewerColumn.getColumn();
312 TableColumn column = mTable.getColumn(i);
316 TableColumn column = mTable.getColumn(DEFAULT_TRANSLATION_COLUMN);
318 column = mTable.getColumn(NEW_TRANSLATION_COLUMN);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLFunctionTraceViewer.java 541 TreeColumn column = tvc.getColumn();
548 column = tvc.getColumn();
556 column = tvc.getColumn();
573 mFrameTreeViewer.getTree().getColumn(2).setWidth(100);
574 mFrameTreeViewer.getTree().getColumn(1).setWidth(100);
575 mFrameTreeViewer.getTree().getColumn(0).setWidth(w - 200);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderMatrixTests.cpp 387 inline tcu::Vec3 reduceToVec3 (const tcu::Mat3& value) { return value.getColumn(0) + value.getColumn(1) + value.getColumn(2); }
388 inline tcu::Vec3 reduceToVec3 (const tcu::Mat4& value) { return value.getColumn(0).swizzle(0,1,2) + value.getColumn(1).swizzle(1,2,3) + value.getColumn(2).swizzle(2,3,0) + value.getColumn(3).swizzle(3,0,1); }
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 505 colMask &= ~(1L << active.getColumn());
524 colMask &= ~(1L << active.getColumn());
610 public int getColumn() {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldMatrix.java 340 T[] getColumn(int column) throws MatrixIndexException;
    [all...]
  /external/llvm/lib/IR/
DiagnosticInfo.cpp 141 *Column = L->getColumn();
LLVMContextImpl.h 243 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()),
247 return Line == RHS->getLine() && Column == RHS->getColumn() &&
600 Column(N->getColumn()) {}
604 Line == RHS->getLine() && Column == RHS->getColumn();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 435 int startColumn = grid.getColumn(state.bounds.x);
436 int endColumn = grid.getColumn(state.bounds.x2());
565 int startColumn = grid.getColumn(state.bounds.x);
566 int endColumn = grid.getColumn(state.bounds.x2());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintList.java 222 TreeColumn column = mTree.getColumn(i);
226 mTree.getColumn(0).setWidth(availableWidth);
630 TreeColumn treeColumn = mTree.getColumn(i);
656 treeColumn = viewerColumn.getColumn();
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 180 public int getColumn() {
397 mPatternDrawLookup[cell.getRow()][cell.getColumn()] = true;
418 mInProgressX = getCenterXForColumn(first.getColumn());
714 mPatternDrawLookup[newCell.getRow()][newCell.getColumn()] = true;
    [all...]
  /external/llvm/include/llvm/IR/
DebugInfoMetadata.h     [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 94 public ColumnInfo getColumn(String columnName) {
251 ColumnInfo column = getColumn(columnName);
  /external/clang/include/clang/Basic/
SourceLocation.h 385 unsigned getColumn() const { return Col; }
  /external/clang/tools/libclang/
CXSourceLocation.cpp 304 if (column) *column = PreLoc.getColumn();
  /external/llvm/include/llvm/MC/
MCDwarf.h 96 /// getColumn - Get the Column of this MCDwarfLoc.
97 unsigned getColumn() const { return Column; }
  /prebuilts/sdk/tools/lib/
common.jar 
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 266 * <code>getColumn</code> returns one of three columns specified by the
273 public Vector3f getColumn(int i) {
274 return getColumn(i, null);
278 * <code>getColumn</code> returns one of three columns specified by the
288 public Vector3f getColumn(int i, Vector3f store) {
316 * <code>getColumn</code> returns one of three rows as specified by the
    [all...]
Quaternion.java 915 axis[0] = tempMat.getColumn(0, axis[0]);
916 axis[1] = tempMat.getColumn(1, axis[1]);
917 axis[2] = tempMat.getColumn(2, axis[2]);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java 344 int column = view.getColumn();
553 public int getColumn() {
667 int column = view.getColumn();
    [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 582 << ':' << PLoc.getColumn();
587 << ':' << PLoc.getColumn();
590 OS << "col" << ':' << PLoc.getColumn();
    [all...]

Completed in 1074 milliseconds

12 3 4 5 6 7 8 91011>>