HomeSort by relevance Sort by last modified time
    Searched full:newaction (Results 1 - 25 of 55) 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;
  /external/ltp/testcases/kernel/controllers/cpuctl/
cpuctl_latency_test.c 67 struct sigaction newaction, oldaction; local
70 sigemptyset(&newaction.sa_mask);
71 sigaddset(&newaction.sa_mask, SIGUSR1);
72 newaction.sa_handler = &sighandler;
73 sigaction(SIGUSR1, &newaction, &oldaction);
cpuctl_def_task01.c 105 struct sigaction newaction, oldaction; local
112 sigemptyset(&newaction.sa_mask);
113 newaction.sa_handler = signal_handler_alarm;
114 newaction.sa_flags = 0;
115 sigaction(SIGALRM, &newaction, &oldaction);
cpuctl_def_task02.c 106 struct sigaction newaction, oldaction; local
114 sigemptyset(&newaction.sa_mask);
115 newaction.sa_handler = signal_handler_alarm;
116 newaction.sa_flags = 0;
117 sigaction(SIGALRM, &newaction, &oldaction);
cpuctl_def_task03.c 102 struct sigaction newaction, oldaction; local
110 sigemptyset(&newaction.sa_mask);
111 newaction.sa_handler = signal_handler_alarm;
112 newaction.sa_flags = 0;
113 sigaction(SIGALRM, &newaction, &oldaction);
cpuctl_def_task04.c 105 struct sigaction newaction, oldaction; local
113 sigemptyset(&newaction.sa_mask);
114 newaction.sa_handler = signal_handler_alarm;
115 newaction.sa_flags = 0;
116 sigaction(SIGALRM, &newaction, &oldaction);
cpuctl_test01.c 105 struct sigaction newaction, oldaction; local
112 sigemptyset(&newaction.sa_mask);
113 newaction.sa_handler = signal_handler_alarm;
114 newaction.sa_flags = 0;
115 sigaction(SIGALRM, &newaction, &oldaction);
cpuctl_test02.c 108 struct sigaction newaction, oldaction; local
116 sigemptyset(&newaction.sa_mask);
117 newaction.sa_handler = signal_handler_alarm;
118 newaction.sa_flags = 0;
119 sigaction(SIGALRM, &newaction, &oldaction);
cpuctl_test03.c 104 struct sigaction newaction, oldaction; local
112 sigemptyset(&newaction.sa_mask);
113 newaction.sa_handler = signal_handler_alarm;
114 newaction.sa_flags = 0;
115 sigaction(SIGALRM, &newaction, &oldaction);
cpuctl_test04.c 105 struct sigaction newaction, oldaction; local
113 sigemptyset(&newaction.sa_mask);
114 newaction.sa_handler = signal_handler_alarm;
115 newaction.sa_flags = 0;
116 sigaction(SIGALRM, &newaction, &oldaction);
  /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...]
  /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),
  /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...]
  /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;
  /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);
  /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())
  /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())
  /cts/tests/tests/content/src/android/content/cts/
IntentTest.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationContainer.java 363 private void forwardFakeMotionEvent(MotionEvent original, int newAction) {
365 newEvent.setAction(newAction);
    [all...]

Completed in 4073 milliseconds

1 2 3