HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 76 - 100 of 2353) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/test/004-SignalTest/
signaltest.cc 79 struct sigaction action; local
80 action.sa_sigaction = signalhandler;
81 sigemptyset(&action.sa_mask);
82 action.sa_flags = SA_SIGINFO | SA_ONSTACK;
84 action.sa_restorer = nullptr;
87 sigaction(SIGSEGV, &action, &oldaction);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
WorkStatusTestActivity.java 53 String action = getIntent().getAction(); local
55 if (ACTION_WORK_STATUS_ICON.equals(action)) {
57 } else if (ACTION_WORK_STATUS_TOAST.equals(action)) {
  /cts/tests/app/app/src/android/app/stubs/
MockAlarmReceiver.java 41 final String action = intent.getAction(); local
42 if (action.equals(mTargetAction)) {
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/
BootBroadcastReceiver.java 47 String action = intent.getAction(); local
48 Log.i(TAG, "Received action: " + action + ", user unlocked: " + UserManagerCompat
51 bootCompleted = Intent.ACTION_LOCKED_BOOT_COMPLETED.equals(action);
53 bootCompleted = Intent.ACTION_BOOT_COMPLETED.equals(action);
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/
BootBroadcastReceiver.java 47 String action = intent.getAction(); local
48 Log.i(TAG, "Received action: " + action + ", user unlocked: " + UserManagerCompat
51 bootCompleted = Intent.ACTION_LOCKED_BOOT_COMPLETED.equals(action);
53 bootCompleted = Intent.ACTION_BOOT_COMPLETED.equals(action);
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleBroadcastReceiver.java 40 String action = intent.getAction(); local
41 if (action.equals(Intent.ACTION_TIMEZONE_CHANGED)
42 || action.equals(Intent.ACTION_TIME_CHANGED)) {
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
TechFilter.java 39 String action = intent.getAction(); local
40 if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(action)) {
  /development/samples/NotePad/src/com/example/android/notepad/
NotesLiveFolder.java 48 * Gets the incoming Intent and its action. If the incoming Intent was
53 final String action = intent.getAction(); local
55 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) {
84 * Adds a base action for items in the live folder list, as an Intent. When the
87 * Its action is ACTION_EDIT, so it triggers the Note Editor activity. Its
105 // If the original action was not ACTION_CREATE_LIVE_FOLDER, creates an
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/
BootBroadcastReceiver.java 47 String action = intent.getAction(); local
48 Log.i(TAG, "Received action: " + action + ", user unlocked: " + UserManagerCompat
51 bootCompleted = Intent.ACTION_LOCKED_BOOT_COMPLETED.equals(action);
53 bootCompleted = Intent.ACTION_BOOT_COMPLETED.equals(action);
  /development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/receiver/
MessagingReceiver.java 36 String action = intent == null ? null : intent.getAction(); local
40 if (Intents.SMS_DELIVER_ACTION.equals(action)) {
42 } else if (Intents.WAP_PUSH_DELIVER_ACTION.equals(action)) {
46 if (Intents.SMS_RECEIVED_ACTION.equals(action)) {
48 } else if (Intents.WAP_PUSH_RECEIVED_ACTION.equals(action)) {
  /external/bison/lib/
spawn_int.h 19 /* Data structure to contain the action information. */
47 } action; member in struct:__spawn_action
  /external/chromium-trace/catapult/devil/devil/android/sdk/
intent.py 14 def __init__(self, action='android.intent.action.VIEW', activity=None,
20 action: A string containing the action.
32 self._action = action
50 def action(self): member in class:Intent
89 if self.action:
90 args.extend(['-a', self.action])
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
jsmin.c 22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
122 /* action -- do something! What you do is determined by the argument:
126 action treats a string as a single character. Wow!
127 action recognizes a regular expression if it is preceded by ( or , or =.
131 action(int d) function
212 action(3);
217 action(1);
219 action(2);
229 action(1);
232 action(3)
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ThaiStateTransition.java 18 char action; field in class:ThaiStateTransition
20 public ThaiStateTransition(int nextState, char action)
23 this.action = action;
33 return action;
43 action = newAction;
48 return ((nextState < 10) ? "0" : "") + nextState + "/" + action + " ";
62 output.print(action);
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DeviceBoot.java 57 String action = intent.getAction(); local
58 if (RcsPresence.ACTION_PUBLISH_STATE_CHANGED.equalsIgnoreCase(action)) {
PresenceBroadcastReceiver.java 47 String action = intent.getAction(); local
48 if (RcsPresence.ACTION_PUBLISH_STATE_CHANGED.equals(action)) {
52 logger.debug("No interest in this intent: " + action);
  /external/libchrome/sandbox/linux/services/
init_process_reaper.cc 47 struct sigaction action; local
48 memset(&action, 0, sizeof(action));
49 action.sa_handler = &DoNothingSignalHandler;
50 CHECK(sigaction(SIGCHLD, &action, NULL) == 0);
  /external/libcxx/test/std/thread/thread.threads/thread.thread.this/
sleep_for.pass.cpp 29 struct sigaction action; local
30 action.sa_handler = &sig_action;
31 sigemptyset(&action.sa_mask);
32 action.sa_flags = 0;
34 ec = sigaction(SIGALRM, &action, nullptr);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
RemoveAction.java 19 import com.badlogic.gdx.scenes.scene2d.Action;
22 /** Removes an action from an actor.
24 public class RemoveAction extends Action {
25 private Action action; field in class:RemoveAction
28 target.removeAction(action);
32 public Action getAction () {
33 return action;
36 public void setAction (Action action) {
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdfdoc_embeddertest.cpp 48 // The target action is nearly the size of the whole page.
52 FPDF_ACTION action = FPDFLink_GetAction(link); local
53 ASSERT_TRUE(action);
57 unsigned long bufsize = FPDFAction_GetFilePath(action, nullptr, 0);
61 EXPECT_EQ(bufsize, FPDFAction_GetFilePath(action, buf, bufsize));
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
MediaButtonCallback.java 60 String action = mediaButtonIntent.getAction(); local
61 Log.d("Received intent with action " + action);
62 if (action.equals(Intent.ACTION_MEDIA_BUTTON)) {
66 Log.d("Received KeyEvent with action " + keyAction);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptsLiveFolder.java 39 final String action = intent.getAction(); local
40 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) {
  /external/vogar/src/vogar/android/
DexTask.java 20 import vogar.Action;
30 private final Action action; field in class:DexTask
34 File jar, Action action, File localDex) {
40 this.action = action;
47 if (benchmark && action != null) {
  /frameworks/base/core/java/android/service/restrictions/
RestrictionsReceiver.java 70 * convenience callbacks for each action.
74 String action = intent.getAction(); local
76 if (RestrictionsManager.ACTION_REQUEST_PERMISSION.equals(action)) {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
PackageReceiver.java 33 final String action = intent.getAction(); local
34 if (Intent.ACTION_PACKAGE_FULLY_REMOVED.equals(action)) {
37 } else if (Intent.ACTION_PACKAGE_DATA_CLEARED.equals(action)) {

Completed in 827 milliseconds

1 2 34 5 6 7 8 91011>>