Home
last modified time | relevance | path

Searched refs:actionIndices (Results 1 – 2 of 2) sorted by relevance

/external/libtextclassifier/java/src/com/android/textclassifier/common/logging/
DTextClassifierEvent.java158 private final int[] actionIndices; field in TextClassifierEvent
171 actionIndices = builder.actionIndices; in TextClassifierEvent()
243 return actionIndices; in getActionIndices()
276 out.append(", mActionIndices=").append(Arrays.toString(actionIndices)); in toString()
304 private int[] actionIndices = new int[0]; field in TextClassifierEvent.Builder
399 public T setActionIndices(@Nonnull int... actionIndices) { in setActionIndices() argument
400 this.actionIndices = new int[actionIndices.length]; in setActionIndices()
401 System.arraycopy(actionIndices, 0, this.actionIndices, 0, actionIndices.length); in setActionIndices()
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DPlayerNotificationManager.java1189 int[] actionIndices = new int[3]; in getActionIndicesForCompactView() local
1192 actionIndices[actionCounter++] = skipPreviousActionIndex; in getActionIndicesForCompactView()
1196 actionIndices[actionCounter++] = pauseActionIndex; in getActionIndicesForCompactView()
1198 actionIndices[actionCounter++] = playActionIndex; in getActionIndicesForCompactView()
1201 actionIndices[actionCounter++] = skipNextActionIndex; in getActionIndicesForCompactView()
1203 return Arrays.copyOf(actionIndices, actionCounter); in getActionIndicesForCompactView()