Home
last modified time | relevance | path

Searched refs:cell (Results 1 – 25 of 25) sorted by relevance

/frameworks/base/tests/net/java/com/android/server/connectivity/
DLingerMonitorTest.java173 NetworkAgentInfo cell = cellNai(102); in testMultipleNotifications() local
175 mMonitor.noteLingerDefaultNetwork(wifi1, cell); in testMultipleNotifications()
176 verifyNotification(wifi1, cell); in testMultipleNotifications()
178 mMonitor.noteLingerDefaultNetwork(cell, wifi2); in testMultipleNotifications()
182 mMonitor.noteLingerDefaultNetwork(wifi2, cell); in testMultipleNotifications()
183 verifyNotification(wifi2, cell); in testMultipleNotifications()
195 NetworkAgentInfo cell = cellNai(103); in testRateLimiting() local
197 mMonitor.noteLingerDefaultNetwork(wifi1, cell); in testRateLimiting()
198 verifyNotification(wifi1, cell); in testRateLimiting()
202 mMonitor.noteLingerDefaultNetwork(cell, wifi2); in testRateLimiting()
[all …]
DIpConnectivityMetricsTest.java129 final long cell = BitUtils.packBits(new int[]{NetworkCapabilities.TRANSPORT_CELLULAR}); in testDefaultNetworkEvents() local
134 {null, makeNai(100, 10, false, true, cell)}, in testDefaultNetworkEvents()
136 {makeNai(100, 50, true, true, cell), makeNai(101, 20, true, false, wifi)}, in testDefaultNetworkEvents()
140 {null, makeNai(102, 10, true, true, cell)}, in testDefaultNetworkEvents()
142 {makeNai(102, 50, true, true, cell), makeNai(103, 20, true, false, wifi)}, in testDefaultNetworkEvents()
330 final long cell = BitUtils.packBits(new int[]{NetworkCapabilities.TRANSPORT_CELLULAR}); in testEndToEndLogging() local
332 NetworkAgentInfo cellNai = makeNai(100, 50, false, true, cell); in testEndToEndLogging()
/frameworks/opt/car/setupwizard/library/utils/src/com/android/car/setupwizardlib/
DInitialLockSetupHelper.java45 public static int getPatternCellRowFromByte(byte cell) { in getPatternCellRowFromByte() argument
46 return (byte) ((cell - 1) / 3); in getPatternCellRowFromByte()
52 public static int getPatternCellColumnFromByte(byte cell) { in getPatternCellColumnFromByte() argument
53 return (byte) ((cell - 1) % 3); in getPatternCellColumnFromByte()
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternView.java434 for (Cell cell : pattern) { in setPattern()
435 mPatternDrawLookup[cell.getRow()][cell.getColumn()] = true; in setPattern()
730 final Cell cell = checkForNewHit(x, y); in detectAndAddHit() local
731 if (cell != null) { in detectAndAddHit()
738 int dRow = cell.row - lastCell.row; in detectAndAddHit()
739 int dColumn = cell.column - lastCell.column; in detectAndAddHit()
759 addCellToPattern(cell); in detectAndAddHit()
765 return cell; in detectAndAddHit()
779 private void startCellActivatedAnimation(Cell cell) { in startCellActivatedAnimation() argument
780 final CellState cellState = mCellStates[cell.row][cell.column]; in startCellActivatedAnimation()
[all …]
DLockPatternUtils.java1239 LockPatternView.Cell cell = pattern.get(i); in patternToByteArray() local
1240 res[i] = (byte) (cell.getRow() * 3 + cell.getColumn() + '1'); in patternToByteArray()
1278 LockPatternView.Cell cell = pattern.get(i); in patternToHash() local
1279 res[i] = (byte) (cell.getRow() * 3 + cell.getColumn()); in patternToHash()
/frameworks/base/tools/preload/
Dsorttable.js123 forEach(theadrow.childNodes, function(cell) { argument
124 if (cell.nodeType == 1) { // an element
125 cell.className = cell.className.replace('sorttable_sorted_reverse','');
126 cell.className = cell.className.replace('sorttable_sorted','');
/frameworks/rs/script_api/
Drs_for_each.spec36 summary: Suggested cell processing order
52 cell, like the Array0 index or the current level of detail.
238 Returns the index in the Array0 dimension of the cell being processed, as specified
264 Returns the index in the Array1 dimension of the cell being processed, as specified
277 Returns the index in the Array2 dimension of the cell being processed,
291 Returns the index in the Array3 dimension of the cell being processed, as specified
/frameworks/rs/script_api/include/
Drs_for_each.rsh33 * rs_for_each_strategy_t: Suggested cell processing order
55 * cell, like the Array0 index or the current level of detail.
76 …rs_for_each_strategy_t strategy; // Currently ignored. In the future, will be suggested cell iter…
209 * Returns the index in the Array0 dimension of the cell being processed, as specified
235 * Returns the index in the Array1 dimension of the cell being processed, as specified
248 * Returns the index in the Array2 dimension of the cell being processed,
262 * Returns the index in the Array3 dimension of the cell being processed, as specified
409 * Returns the face on which the cell being processed is found, as specified by the
423 * Returns the index in the Levels of Detail dimension of the cell being processed,
Drs_object_info.rsh44 * i.e. a cell of an Allocation.
138 * rsAllocationGetElement: Get the object that describes the cell of an Allocation
140 * Get the Element object describing the type, kind, and other characteristics of a cell
Drs_allocation_data.rsh59 * dstOff: Offset in the destination of the first cell to be copied into.
63 * srcOff: Offset in the source of the first cell to be copied.
139 * x: X offset in the allocation of the first cell to be copied from.
140 * y: Y offset in the allocation of the first cell to be copied from.
141 * z: Z offset in the allocation of the first cell to be copied from.
619 * x: X offset in the allocation of the first cell to be copied into.
620 * y: Y offset in the allocation of the first cell to be copied into.
621 * z: Z offset in the allocation of the first cell to be copied into.
1074 * rsGetElementAt: Return a cell from an allocation
1076 * This function extracts a single cell from an allocation.
[all …]
/frameworks/ml/nn/tools/api/
Dtypes.spec1436 * g(W_{xc}x_t+W_{hc}h_{t-1}+b_c),\ t_{cell}) & \\
1448 * * \f$C_t\f$ is the cell state,
1452 * * \f$g\f$ is the cell input and cell output activation function, usually
1456 * * \f$W_{ci}\f$ is the cell-to-input weight matrix,
1460 * * \f$W_{cf}\f$ is the cell-to-forget weight matrix,
1462 * * \f$W_{xc}\f$ is the input-to-cell weight matrix,
1463 * * \f$W_{hc}\f$ is the recurrent-to-cell weight matrix,
1464 * * \f$b_c\f$ is the cell bias,
1467 * * \f$W_{co}\f$ is the cell-to-output weight matrix,
1471 * * \f$t_{cell}\f$ is the threshold for clipping the cell state, and
[all …]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dsingle_source_alloc.rscript27 // allocation and validate each cell. The value in a cell must be gStart +
28 // "index-of-the-cell-starting-from-zero". For vector types, the 'x' field
178 // Store to a cell based on the type, vector size and
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dsingle_source_alloc.rscript29 // allocation and validate each cell. The value in a cell must be gStart +
30 // "index-of-the-cell-starting-from-zero". For vector types, the 'x' field
180 // Store to a cell based on the type, vector size and
/frameworks/opt/vcard/tests/res/raw/
Dv21_complicated.vcf22 EMAIL;CELL:cell@example.com
Dv30_complicated.vcf22 EMAIL;CELL:cell@example.com
/frameworks/base/core/java/android/inputmethodservice/
DKeyboard.java769 int [] cell = new int[count]; in computeNearestNeighbors() local
770 System.arraycopy(indices, 0, cell, 0, count); in computeNearestNeighbors()
771 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell; in computeNearestNeighbors()
/frameworks/opt/telephony/proto/src/
Dtelephony.proto199 // If cell-data has been enabled.
202 // If cell-roaming has been enabled.
296 // The device isn't camped on an LTE cell
297 // or the LTE cell doesn't support EN-DC.
300 // The device is camped on an LTE cell that supports EN-DC
305 // The device is camped on an LTE cell that supports EN-DC
310 // The device is camped on an LTE cell that supports EN-DC
311 // and connected to at least one 5G cell
312 // as a secondary serving cell.
/frameworks/base/core/proto/android/stats/dnsresolver/
Ddns_resolver.proto102 NS_T_AFSDB = 18; // AFS cell database.
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
Dlayered_filter_d1new_helper.rsh18 // This allocation contains the kernel stack info: only one float per cell
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioResponse.java2304 NeighboringCellInfo cell; in responseCellList() local
2315 cell = new NeighboringCellInfo(rssi, location, radioType); in responseCellList()
2316 ret.add(cell); in responseCellList()
DRIL.java5885 for (NeighboringCellInfo cell : cells) { in retToString()
5886 sb.append("[").append(cell).append("] "); in retToString()
/frameworks/base/proto/src/
Dwifi.proto2159 // Whether the primary registered cell of current entry is same as that of previous entry
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt25277 field public static final java.lang.String RADIO_CELL = "cell";
25459 field public static final deprecated java.lang.String RADIO_CELL = "cell";
/frameworks/base/non-updatable-api/
Dcurrent.txt39045 field public static final String RADIO_CELL = "cell";
39235 field @Deprecated public static final String RADIO_CELL = "cell";
/frameworks/base/api/
Dcurrent.txt39189 field public static final String RADIO_CELL = "cell";
39379 field @Deprecated public static final String RADIO_CELL = "cell";