HomeSort by relevance Sort by last modified time
    Searched refs:newAction (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ThaiStateTransition.java 43 public final void setAction(char newAction)
45 action = newAction;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleClientTestBaseActivity.java 212 String newAction = null;
228 newAction = BleClientService.BLE_CLIENT_ACTION_BLE_DISCOVER_SERVICE;
235 newAction = BleClientService.BLE_CLIENT_ACTION_READ_CHARACTERISTIC;
242 newAction = BleClientService.BLE_CLIENT_ACTION_REQUEST_MTU_512;
250 newAction = BleClientService.BLE_CLIENT_ACTION_READ_CHARACTERISTIC_NO_PERMISSION;
257 newAction = BleClientService.BLE_CLIENT_ACTION_WRITE_CHARACTERISTIC;
263 newAction = BleClientService.BLE_CLIENT_ACTION_REQUEST_MTU_23;
271 newAction = BleClientService.BLE_CLIENT_ACTION_WRITE_CHARACTERISTIC_NO_PERMISSION;
278 newAction = BleClientService.BLE_CLIENT_ACTION_RELIABLE_WRITE;
285 // newAction = BleClientService.BLE_CLIENT_ACTION_RELIABLE_WRITE_BAD_RESP
    [all...]
  /libcore/ojluni/src/main/java/java/nio/charset/
CharsetDecoder.java 370 * @param newAction The new action; must not be <tt>null</tt>
377 public final CharsetDecoder onMalformedInput(CodingErrorAction newAction) {
378 if (newAction == null)
380 malformedInputAction = newAction;
381 implOnMalformedInput(newAction);
392 * @param newAction The new action
394 protected void implOnMalformedInput(CodingErrorAction newAction) { }
412 * @param newAction The new action; must not be <tt>null</tt>
420 newAction)
422 if (newAction == null
    [all...]
CharsetEncoder.java 393 * @param newAction The new action; must not be <tt>null</tt>
400 public final CharsetEncoder onMalformedInput(CodingErrorAction newAction) {
401 if (newAction == null)
403 malformedInputAction = newAction;
404 implOnMalformedInput(newAction);
415 * @param newAction The new action
417 protected void implOnMalformedInput(CodingErrorAction newAction) { }
435 * @param newAction The new action; must not be <tt>null</tt>
443 newAction)
445 if (newAction == null
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetDecoderICU.java 115 * @param newAction action to be taken
120 protected final void implOnMalformedInput(CodingErrorAction newAction) {
126 if (newAction == CodingErrorAction.REPLACE) {
132 onMalformedInput = getCallback(newAction);
138 * @param newAction action to be taken
143 protected final void implOnUnmappableCharacter(CodingErrorAction newAction) {
149 if (newAction == CodingErrorAction.REPLACE) {
155 onUnmappableCharacter = getCallback(newAction);
CharsetEncoderICU.java 149 * @param newAction
155 protected void implOnMalformedInput(CodingErrorAction newAction) {
156 onMalformedInput = getCallback(newAction);
162 * @param newAction
168 protected void implOnUnmappableCharacter(CodingErrorAction newAction) {
169 onUnmappableInput = getCallback(newAction);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
LoggerUtils.java 214 public static Action newAction(int type) {
221 Action a = newAction(Action.Type.COMMAND);
227 Action a = newAction(Action.Type.TOUCH);
UserEventDispatcher.java 19 import static com.android.launcher3.logging.LoggerUtils.newAction;
313 LauncherEvent event = newLauncherEvent(newAction(Action.Type.TIP),
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 82 @Override protected final void implOnMalformedInput(CodingErrorAction newAction) {
86 @Override protected final void implOnUnmappableCharacter(CodingErrorAction newAction) {
CharsetEncoderICU.java 110 @Override protected void implOnMalformedInput(CodingErrorAction newAction) {
114 @Override protected void implOnUnmappableCharacter(CodingErrorAction newAction) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutActionBar.java 239 RuleAction newAction = after.get(actionIndex);
240 assert newAction.equals(prevAction); // Maybe I can do this lazily instead?
243 item.setData(newAction);
248 assert newAction instanceof Toggle;
249 Toggle toggle = (Toggle) newAction;
252 assert newAction instanceof Choices;
253 Choices choices = (Choices) newAction;
  /external/icu/icu4c/source/common/unicode/
ucnv.h     [all...]
  /frameworks/base/core/java/android/view/
MotionEvent.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoderTest.java 857 public void pubImplOnMalformedInput(CodingErrorAction newAction) {
858 super.implOnMalformedInput(newAction);
861 public void pubImplOnUnmappableCharacter(CodingErrorAction newAction) {
862 super.implOnUnmappableCharacter(newAction);
  /external/icu/icu4c/source/common/
ucnv.cpp 726 UConverterToUCallback newAction,
735 converter->fromCharErrorBehaviour = newAction;
742 UConverterFromUCallback newAction,
751 converter->fromUCharErrorBehaviour = newAction;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationContainer.java 363 private void forwardFakeMotionEvent(MotionEvent original, int newAction) {
365 newEvent.setAction(newAction);
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentTest.java     [all...]
  /prebuilts/go/darwin-x86/src/text/template/parse/
node.go 215 func (t *Tree) newAction(pos Pos, line int, pipe *PipeNode) *ActionNode {
229 return a.tr.newAction(a.Pos, a.Line, a.Pipe.CopyPipe())
parse.go 380 return t.newAction(token.pos, token.line, t.pipeline("command"))
  /prebuilts/go/linux-x86/src/text/template/parse/
node.go 215 func (t *Tree) newAction(pos Pos, line int, pipe *PipeNode) *ActionNode {
229 return a.tr.newAction(a.Pos, a.Line, a.Pipe.CopyPipe())
parse.go 380 return t.newAction(token.pos, token.line, t.pipeline("command"))
  /prebuilts/devtools/tools/lib/
ddms.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddms/24.4.0-beta6/
ddms-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddms/24.5.0/
ddms-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddms/25.0.0-alpha1/
ddms-25.0.0-alpha1.jar 

Completed in 853 milliseconds

1 2 3