HomeSort by relevance Sort by last modified time
    Searched full:cell (Results 26 - 50 of 399) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu4c/tools/toolutil/
ucmstate.c 333 int32_t entry, sum, state, cell, count; local
353 for(cell=0; cell<256; ++cell) {
354 entry=states->stateTable[state][cell];
358 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
362 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
373 for(cell=0; cell<256; ++cell) {
425 int32_t entry, state, cell, count; local
927 int32_t state, cell, entry; local
    [all...]
  /frameworks/base/telephony/java/android/telephony/
NeighboringCellInfo.java 32 * Represents the neighboring cell information, including
33 * Received Signal Strength and Cell ID location.
42 * Cell location is not available
187 * @return cell id in GSM, 0xffff max legal value
203 * @return Radio network type while neighboring cell location is stored.
210 * means that Neighboring Cell information is stored for GSM network, in
219 * means that Neighboring Cell information is stored for UMTS network, in
227 * Set the cell id.
242 * Set the signal strength of the cell.
  /frameworks/base/core/tests/coretests/res/raw/
v21_complicated.vcf 11 TEL;CELL:0311111111
21 EMAIL;CELL:cell@example.com
  /external/srec/config/en.us/grammars/
phone_type_choice.grxml 10 <item>cell <tag>MEANING='M'</tag></item>
  /external/v8/tools/
consarray.js 40 this.tail_ = new ConsArray.Cell(null, null);
56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
85 * A cell object used for constructing a list in ConsArray.
89 ConsArray.Cell = function(data, next) {
  /external/webkit/WebCore/accessibility/
AccessibilityTableRow.cpp 103 AccessibilityObject* cell = rowChildren[0].get();
104 if (!cell->isTableCell())
107 RenderObject* cellRenderer = static_cast<AccessibilityTableCell*>(cell)->renderer();
115 return cell;
AccessibilityARIAGridCell.h 44 // fills in the start location and row span of cell
46 // fills in the start location and column span of cell
AccessibilityARIAGridRow.cpp 133 AccessibilityObject* cell = rowChildren[i].get(); local
134 if (cell->ariaRoleAttribute() == RowHeaderRole)
135 return cell;
  /external/webkit/WebCore/platform/mac/
ThemeMac.mm 80 static void setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
91 if (size != [cell controlSize]) // Only update if we have to, since AppKit does work even if the size is the same.
92 [cell setControlSize:size];
95 static void updateStates(NSCell* cell, ControlStates states)
100 bool oldPressed = [cell isHighlighted];
103 [cell setHighlighted:pressed];
106 bool oldEnabled = [cell isEnabled];
109 [cell setEnabled:enabled];
112 bool oldFocused = [cell showsFirstResponder];
115 [cell setShowsFirstResponder:focused]
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 60 * Indicates the X position of the associated cell.
65 * Indicates the Y position of the associated cell.
70 * Indicates the X cell span.
75 * Indicates the Y cell span.
  /external/webkit/WebCore/rendering/
FixedTableLayout.cpp 37 table's width, the width of the columns, and borders or cell
50 2. Otherwise, a cell in the first row with a value other than
52 the cell spans more than one column, the width is divided over the
56 table space (minus borders or cell spacing).
60 widths (plus cell spacing or borders). If the table is wider than
66 not affect column widths. Any cell that has content that overflows
157 RenderTableCell* cell = toRenderTableCell(child); local
158 if (cell->prefWidthsDirty())
159 cell->calcPrefWidths();
161 Length w = cell->styleOrColWidth()
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 87 private static class Cell extends IElement.Factory.ElementImpl
97 Cell (Tag tag)
110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD); local
111 add (cell);
113 return cell;
  /external/iproute2/tc/
q_cbq.c 32 fprintf(stderr, " [ prio NUMBER ] [ cell BYTES ] [ ewma LOG ]\n");
41 fprintf(stderr, " [ cell BYTES ] [ ewma LOG ]\n");
84 } else if (matches(*argv, "cell") == 0) {
85 unsigned cell; local
88 if (get_size(&cell, *argv)) {
89 explain1("cell");
93 if ((1<<i) == cell)
96 fprintf(stderr, "cell must be 2^n\n");
263 } else if (matches(*argv, "cell") == 0) {
264 unsigned cell; local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Collector.cpp 163 // Each symbian cell within RHeap maps to a 64kb aligned CollectorBlock.
392 typedef HeapConstants::Cell Cell;
407 // Fast case: find the next garbage cell and recycle it.
414 if (!block->marked.get(m_heap.nextCell)) { // Always false for the last cell in the block
415 Cell* cell = block->cells + m_heap.nextCell; local
418 JSCell* imp = reinterpret_cast<JSCell*>(cell);
423 return cell;
728 // Cell size needs to be a power of two for isPossibleCell to be valid
1075 JSCell* cell = *it; local
    [all...]
JSCell.h 328 ALWAYS_INLINE void MarkStack::append(JSCell* cell)
331 ASSERT(cell);
332 if (Heap::isCellMarked(cell))
334 Heap::markCell(cell);
335 if (cell->structure()->typeInfo().type() >= CompoundType)
336 m_values.append(cell);
  /external/webkit/WebCore/inspector/front-end/
ProfileDataGridTree.js 81 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
84 cell.addStyleClass("highlight");
86 cell.addStyleClass("highlight");
88 cell.addStyleClass("highlight");
90 cell.addStyleClass("highlight");
93 return cell;
96 cell.addStyleClass("highlight");
112 cell.insertBefore(urlElement, cell.firstChild);
115 return cell;
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 201 final HTMLTable.ICell cell = coverage.newCell (); local
202 cell.setText (buf.toString (), true);
203 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT);
380 final HTMLTable.ICell cell = coverage.newCell (); local
381 cell.setText (buf.toString (), true);
382 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT);
497 final HTMLTable.ICell cell = coverage.newCell (); local
498 cell.setText (buf.toString (), true);
499 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT);
555 // final HTMLTable.ICell cell = subheader.newCell ()
674 final HTMLTable.ICell cell = coverage.newCell (); local
791 final HTMLTable.ICell cell = navRow.newCell (); local
826 final HTMLTable.ICell cell = navRow.newCell (); local
846 final HTMLTable.ICell cell = titleRow.newCell (); local
884 final HTMLTable.ICell cell = header.newCell (); local
921 final HTMLTable.ICell cell = row.newCell (); local
951 final HTMLTable.ICell cell = row.newCell (); local
988 final HTMLTable.ICell cell = row.newCell (); local
1016 final HTMLTable.ICell cell = row.newCell (); local
1045 final HTMLTable.ICell cell = row.newCell (); local
1077 final HTMLTable.ICell cell = row.newCell (); local
1398 final HTMLTable.ICell cell = titleRow.newCell (); local
    [all...]
  /external/webkit/WebKit/mac/Panels/English.lproj/WebAuthenticationPanel.nib/
keyedobjects.nib 78 ??o?t?5?H?f?@???+??N?W?b?>??????????????????????????????????????????????????????????????????????????????????_Text Field Cell-1_Text Field Cell (Password:)_?Static Text (Google Account (https://www.google.com/)'' Certified by: VeriSign Inc. Get more information by clicking ''Certificate)ZText Field_Static Text (Name:)_Button Cell (Cancel)\Content View_Button Cell (Log In)_Text Field Cell (Name:)_TText Field Cell (To view this page, you must log in to this area on www.server.com:)_3Button Cell (Remember this password in my keychain)_5Static Text (Your password will be sent unencrypted.)_Push Button (Log In)\File's Owner_Text Field Cell_Static Text (Password:)_PStatic Text (To view this page, you must log in to this area on www.server.com:)_?Text Field Cell (Google Account (https://www.google.com/)'' Certified by: VeriSign Inc. Get more information by clicking ''Certificate)UPanel_Push Button (Cancel)[Application_1Check Box (Remember this password in my keychain)_Secure Text FieldZImage ViewZImage Cell_9Text Field Cell (Your password will be sent unencrypted.)?>???????>??????>????-?:Kg?RVUkYUZJnW)+P?aNX$Qm?MNI??LH???OS?T? ?v???F?m?e???p?B? ???????4????r?7?-?]?`?
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
EditableDialogCellEditor.java 78 protected Control createContents(Composite cell) {
79 text = new Text(cell, SWT.SINGLE);
93 // disposed this cell editor
127 text.setFont(cell.getFont());
128 text.setBackground(cell.getBackground());
215 * Processes a modify event that occurred in this text cell editor.
256 * value and deactivating this cell editor.
333 * Returns <code>true</code> if this cell editor is
354 * Processes a key release event that occurred in this cell editor.
  /external/iproute2/man/man8/
tc-tbf.8 8 bytes/cell
18 bytes/cell
91 .B cell
93 byte cell size, set a burst of 6000/16. You will probably never have to set
119 .B cell
  /frameworks/base/telephony/java/android/telephony/cdma/
CdmaCellLocation.java 23 * Represents the cell location on a CDMA phone.
112 * Invalidate this object. The cell location data is set to invalid values.
123 * Set the cell location data.
134 * Set the cell location data.
195 * Fill the cell location data into the intent notifier Bundle based on service state
  /frameworks/base/common/java/com/android/common/
ArrayListCursor.java 129 Object cell = mRows[mPos].get(columnIndex); local
130 return (cell == null) ? null : cell.toString();
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 123 int cell = mGameView.getSelection(); local
124 mButtonNext.setEnabled(cell >= 0);
138 int cell = mGameView.getSelection(); local
139 if (cell >= 0) {
141 mGameView.setCell(cell, player);
152 // Pick a non-used cell at random. That's about all the AI you need for this game.
  /external/freetype/src/smooth/
ftgrays.c 48 /* coverage of the outline on each pixel cell. */
70 /* each pixel cell. */
281 /* determine the type used to store cell areas. This normally takes at */
453 /* Record the current cell in the table. */
458 PCell *pcell, cell; local
468 cell = *pcell;
469 if ( cell == NULL || cell->x > x )
472 if ( cell->x == x )
475 pcell = &cell->next
499 PCell cell = gray_find_cell( RAS_VAR ); local
1346 PCell cell; local
1377 PCell cell = ras.ycells[yindex]; local
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_CHAIN.S 4 * method through a dedicated chaining cell.
45 bx lr @ return to the callee-chaining cell

Completed in 349 milliseconds

12 3 4 5 6 7 8 91011>>