HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 551 - 575 of 962) sorted by null

<<21222324252627282930>>

  /external/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 66 void AddError(const string& filename, int line, int column,
69 filename, line, column, message);
  /external/v8/test/mjsunit/
debug-mirror-cache.js 30 // testing of source line/column easier.
  /external/v8/tools/
stats-viewer.py 234 name.grid(row=index, column=0, padx=1, pady=1)
243 value.grid(row=index, column=(1 + i), padx=1, pady=1)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 33 ; * [in] pPredBufCol pointer to the coefficient column buffer; must be
52 ; * [out] pPredBufCol pointer to the updated coefficient column buffer
174 LDRNESH absCoeffDC,[pPredBufCol] ;// If horizontal load the coeff from column Prediction Buffer
280 ;// Updating source and column prediction buffer contents
287 VST1 {dtemp0},[pPredBufCol]! ;// Updating Pridiction column buffer
  /frameworks/base/docs/html/reference/renderscript/
doxygen.css 33 -moz-column-gap: 1em;
34 -webkit-column-gap: 1em;
35 -moz-column-count: 3;
36 -webkit-column-count: 3;
  /frameworks/base/tools/preload/
sorttable.js 77 // work through each column and calculate its type
95 // if we're already sorted by this column, just
108 // if we're already sorted by this column in reverse, just
166 guessType: function(table, column) {
167 // guess the type of a column based on its first non-blank row
170 text = sorttable.getInnerText(table.tBodies[0].rows[i].cells[column]);
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 703 * Determine whether the column position is Saturday or not.
705 * @param column the column position
707 * @return true if the column is Saturday position
709 public static boolean isSaturday(int column, int firstDayOfWeek) {
710 return (firstDayOfWeek == Time.SUNDAY && column == 6)
711 || (firstDayOfWeek == Time.MONDAY && column == 5)
712 || (firstDayOfWeek == Time.SATURDAY && column == 0);
716 * Determine whether the column position is Sunday or not.
718 * @param column the column positio
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 237 private void appendValue(StringBuilder sb, ValuesDelta values, String column) {
238 String value = values.getAsString(column);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configDialog.py 311 labelTargetTitle.grid(row=0,column=0,columnspan=2,sticky=W)
312 self.listBindings.grid(row=1,column=0,sticky=NSEW)
313 scrollTargetY.grid(row=1,column=1,sticky=NS)
314 scrollTargetX.grid(row=2,column=0,sticky=EW)
316 self.radioKeysBuiltin.grid(row=0, column=0, sticky=W+NS)
317 self.radioKeysCustom.grid(row=1, column=0, sticky=W+NS)
318 self.optMenuKeysBuiltin.grid(row=0, column=1, sticky=NSEW)
319 self.optMenuKeysCustom.grid(row=1, column=1, sticky=NSEW)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
__init__.py 117 getbaseclasses(column)
312 'ccol' : column,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configDialog.py 311 labelTargetTitle.grid(row=0,column=0,columnspan=2,sticky=W)
312 self.listBindings.grid(row=1,column=0,sticky=NSEW)
313 scrollTargetY.grid(row=1,column=1,sticky=NS)
314 scrollTargetX.grid(row=2,column=0,sticky=EW)
316 self.radioKeysBuiltin.grid(row=0, column=0, sticky=W+NS)
317 self.radioKeysCustom.grid(row=1, column=0, sticky=W+NS)
318 self.optMenuKeysBuiltin.grid(row=0, column=1, sticky=NSEW)
319 self.optMenuKeysCustom.grid(row=1, column=1, sticky=NSEW)
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /bionic/libc/kernel/common/linux/mtd/
nand.h 195 void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column, int page_addr);
  /development/ndk/platforms/android-3/include/linux/mtd/
nand.h 194 void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column, int page_addr);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 83 the input stream column at which the token starts
1120 def column method in class:ANTLR3.Hypothetical.Lexer.Hypothetical.Parser.Lexer
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 84 int JavaScriptCallFrame::column() const function in class:WebCore::JavaScriptCallFrame
88 v8::Handle<v8::Value> result = m_callFrame.newLocal(m_isolate)->Get(v8::String::NewSymbol("column"));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ConsoleMessage.js 42 * @param {number=} column
49 WebInspector.ConsoleMessageImpl = function(source, level, message, linkifier, type, url, line, column, repeatCount, parameters, stackTrace, requestId, isOutdated)
51 WebInspector.ConsoleMessage.call(this, source, level, url, line, column, repeatCount);
174 this._anchorElement = this._linkifyLocation(this.url, this.line, this.column);
241 // FIXME(62725): stack trace line/column numbers are one-based.
    [all...]
SourceMap.js 152 this._parseMap(section.map, section.offset.line, section.offset.column);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 564 * of delimiters, making it impossible to keep track of line and column
581 // The line and column numbers of the current token.
583 private int column = 0; field in class:TextFormat.Tokenizer
585 // The line and column numbers of the previous token (allows throwing
627 previousColumn = column;
633 column = 0;
635 ++column;
907 * Returns a {@link ParseException} with the current line and column
911 // Note: People generally prefer one-based line and column numbers.
913 line + 1, column + 1, description)
950 private final int column; field in class:TextFormat.ParseException
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-setbreakpoint.js 90 testArguments(dcp, '{"type":"function","target":"f","column":-1}', false);
109 testArguments(dcp, '{"type":"script","target":"test","column":1}', true, true);
  /external/clang/tools/libclang/
Indexing.cpp     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 37 return SourceLocation(Info.file, Info.line, Info.column);
  /external/elfutils/libdw/
libdwP.h 235 unsigned short int column; member in struct:Dwarf_Lines_s::Dwarf_Line_s

Completed in 1543 milliseconds

<<21222324252627282930>>