/frameworks/base/core/java/android/appwidget/ |
AppWidgetProvider.java | 53 * @param context The Context in which the receiver is running. 103 * @param context The {@link android.content.Context Context} in which this receiver is 122 * @param context The {@link android.content.Context Context} in which this receiver is 142 * @param context The {@link android.content.Context Context} in which this receiver is 162 * @param context The {@link android.content.Context Context} in which this receiver is 177 * @param context The {@link android.content.Context Context} in which this receiver is
|
/packages/apps/CellBroadcastReceiver/ |
AndroidManifest.xml | 97 <receiver android:name="PrivilegedCellBroadcastReceiver" 110 </receiver> 113 <receiver android:name="PrivilegedCellBroadcastReceiver" 118 </receiver> 120 <receiver android:name="CellBroadcastReceiver"> 128 </receiver>
|
/packages/providers/ContactsProvider/ |
AndroidManifest.xml | 65 <receiver android:name="ContactsUpgradeReceiver"> 72 </receiver> 74 <receiver android:name="PackageIntentReceiver"> 91 </receiver> 93 <receiver android:name="LocaleChangeReceiver"> 97 </receiver>
|
/device/generic/goldfish/qemud/ |
qemud.c | 687 /** PACKET RECEIVER 705 } Receiver; 707 /* post a packet to a receiver. Note that this transfers 708 * ownership of the packet to the receiver. 711 receiver_post( Receiver* r, Packet* p ) 719 /* tell a receiver the packet source was closed. 721 * receiver. 724 receiver_close( Receiver* r ) 736 ** these are smart listeners that send incoming packets to a receiver 752 Receiver receiver[1] member in struct:FDHandler 1060 Receiver receiver[1]; \/* send payload there *\/ member in struct:Serial [all...] |
/frameworks/base/docs/html/training/scheduling/ |
alarms.jd | 274 <li>Add the receiver to your app's manifest file with an intent filter that filters on 277 <pre><receiver android:name=".SampleBootReceiver" 282 </receiver></pre> 285 <p>Notice that in the manifest, the boot receiver is set to 286 {@code android:enabled="false"}. This means that the receiver will not be called 287 unless the application explicitly enables it. This prevents the boot receiver from being 288 called unnecessarily. You can enable a receiver (for example, if the user sets an alarm) 291 <pre>ComponentName receiver = new ComponentName(context, SampleBootReceiver.class); 294 pm.setComponentEnabledSetting(receiver, 299 <p>Once you enable the receiver this way, it will stay enabled, even if the user reboot [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
ConnectivityManagerTest.java | 281 // Register a receiver that will capture the connectivity change for hipri. 282 ConnectivityActionReceiver receiver = local 286 mContext.registerReceiver(receiver, filter); 294 assertTrue("Couldn't connect using hipri...", receiver.waitForConnection()); 301 fail("Broadcast receiver waiting for ConnectivityManager interrupted."); 315 ConnectivityActionReceiver receiver = local 319 mContext.registerReceiver(receiver, filter); 323 receiver.waitForConnection()); 325 mContext.unregisterReceiver(receiver); 328 /** Receiver that captures the last connectivity change's network type and state. * [all...] |
/external/v8/src/arm/ |
builtins-arm.cc | 49 // -- r0 : number of arguments excluding receiver 56 // -- sp[4 * argc] : receiver 69 // including the receiver and the extra arguments. 332 // Set up return value, remove receiver from stack and return. 375 // Set up return value, remove receiver and argument from stack and return. 425 // Remove caller arguments and receiver from the stack, setup return value and 429 // sp[0]: receiver 576 // -- sp[argc * 4] : receiver 595 // sp now point to args[0], drop args[0] + receiver. 679 // Load the empty string into r2, remove the receiver from th [all...] |
/external/v8/src/ |
builtins.cc | 62 Handle<Object> receiver() { 71 // Gets the total number of arguments including the receiver (but 80 // Check we have at least the receiver. 97 // Check we have at least the receiver and the called function. 409 Heap* heap, Object* receiver, Arguments* args, int first_added_arg) { 410 if (!receiver->IsJSArray()) return NULL; 411 JSArray* array = JSArray::cast(receiver); 449 JSArray* receiver) { 454 return receiver->GetPrototype() == array_proto && 476 args.receiver(), 487 Object* receiver = *args.receiver(); local 545 Object* receiver = *args.receiver(); local 578 Object* receiver = *args.receiver(); local 620 Object* receiver = *args.receiver(); local 680 Object* receiver = *args.receiver(); local 776 Object* receiver = *args.receiver(); local 1220 Handle<Object> receiver = args.receiver(); local [all...] |
/frameworks/base/core/java/android/content/ |
BroadcastReceiver.java | 42 * {@link android.R.styleable#AndroidManifestReceiver <receiver>} 46 * If registering a receiver in your 64 * Context.sendOrderedBroadcast}) are delivered to one receiver at a time. 65 * As each receiver executes in turn, it can propagate a result to the next 66 * receiver, or it can completely abort the broadcast so that it won't be passed 74 * situations revert to delivering the broadcast one receiver at a time. In 93 * a manifest's {@link android.R.styleable#AndroidManifestReceiver <receiver>} 100 * <li><a href="#ReceiverLifecycle">Receiver Lifecycle</a> 123 * <em>any</em> application may send broadcasts to that registered receiver. You can 125 * <li><p>When you publish a receiver in your application's manifest and specif [all...] |
/frameworks/base/docs/html/training/managing-audio/ |
volume-playback.jd | 100 <receiver android:name=".RemoteControlReceiver"> 104 </receiver> 107 <p>The receiver implementation itself needs to extract which key was pressed to cause the broadcast. 134 event receiver using the {@link android.media.AudioManager}. When registered, your broadcast 135 receiver is the exclusive receiver of all media button broadcasts.<p> 155 <p>A better approach is to register and unregister the media button event receiver when your
|
/frameworks/base/docs/html/training/monitoring-device-state/ |
battery-monitoring.jd | 52 {@code null} as the receiver as shown in the next snippet, the current battery status intent is 90 <pre><receiver android:name=".PowerConnectionReceiver"> 95 </receiver></pre> 138 receiver. The receiver is triggered whenever the device battery becomes low or exits the low 142 <pre><receiver android:name=".BatteryLevelReceiver"> 147 </receiver></pre>
|
/external/chromium_org/v8/src/x64/ |
builtins-x64.cc | 47 // -- rax : number of arguments excluding receiver 55 // -- rsp[8 * (argc + 1)] : receiver 70 // including the receiver and the extra arguments. 89 // Restore receiver. 334 // Allocate the new receiver object using the runtime call. 353 // Push the allocated receiver to the stack. We need two copies 355 // conventions dictate that the called function pops the receiver. 362 // Copy arguments and receiver to the expression stack. 395 // of the receiver and use the result; see ECMA-262 section 13.2.2-7 408 // on-stack receiver as the result [all...] |
/external/v8/src/mips/ |
builtins-mips.cc | 51 // -- a0 : number of arguments excluding receiver 58 // -- sp[4 * agrc] : receiver 71 // including the receiver and the extra arguments. 340 // Set up return value, remove receiver from stack and return. 383 // Set up return value, remove receiver and argument from stack and return. 434 // Remove caller arguments and receiver from the stack, setup return value and 438 // sp[0]: receiver 592 // -- sp[argc * 4] : receiver 611 // sp now point to args[0], drop args[0] + receiver. 695 // Load the empty string into a2, remove the receiver from th [all...] |
/external/v8/src/x64/ |
builtins-x64.cc | 47 // -- rax : number of arguments excluding receiver 55 // -- rsp[8 * (argc +1)] : receiver 70 // including the receiver and the extra arguments. 280 // Allocate the new receiver object using the runtime call. 299 // Push the allocated receiver to the stack. We need two copies 301 // conventions dictate that the called function pops the receiver. 308 // Copy arguments and receiver to the expression stack. 341 // of the receiver and use the result; see ECMA-262 section 13.2.2-7 354 // on-stack receiver as the result. 396 // - Object* receiver [all...] |
/libcore/luni/src/main/java/java/io/ |
EmulatedFields.java | 64 // The collection of slots the receiver represents 195 * in the receiver. If the field has not been assigned any value yet, the 215 * receiver. If the field has not been assigned any value yet, the default 235 * in the receiver. If the field has not been assigned any value yet, the 255 * the receiver. If the field has not been assigned any value yet, the 275 * receiver. If the field has not been assigned any value yet, the default 295 * receiver. If the field has not been assigned any value yet, the default 315 * the receiver. If the field has not been assigned any value yet, the 335 * the receiver. If the field has not been assigned any value yet, the 355 * the receiver. If the field has not been assigned any value yet, th [all...] |
/external/chromium_org/v8/src/ |
builtins.cc | 64 Handle<Object> receiver() { 73 // Gets the total number of arguments including the receiver (but 82 // Check we have at least the receiver. 99 // Check we have at least the receiver and the called function. 306 Heap* heap, Object* receiver, Arguments* args, int first_added_arg) { 307 if (!receiver->IsJSArray()) return NULL; 308 JSArray* array = JSArray::cast(receiver); 358 JSArray* receiver) { 363 return receiver->GetPrototype() == array_proto && 386 args.receiver(), 397 Object* receiver = *args.receiver(); local 512 Object* receiver = *args.receiver(); local 543 Object* receiver = *args.receiver(); local 594 Object* receiver = *args.receiver(); local 661 Object* receiver = *args.receiver(); local 794 Object* receiver = *args.receiver(); local 1244 Handle<Object> receiver = args.receiver(); local [all...] |
messages.js | 47 incompatible_method_receiver: ["Method ", "%0", " called on incompatible receiver ", "%1"], [all...] |
/external/chromium_org/v8/src/arm/ |
builtins-arm.cc | 49 // -- r0 : number of arguments excluding receiver 56 // -- sp[4 * argc] : receiver 69 // including the receiver and the extra arguments. 172 // -- sp[argc * 4] : receiver 191 // sp now point to args[0], drop args[0] + receiver. 272 // Load the empty string into r2, remove the receiver from the 303 // Restore receiver. 559 // Allocate the new receiver object using the runtime call. 566 // Receiver for constructor call allocated. 573 // sp[0]: receiver [all...] |
/packages/apps/Calendar/ |
AndroidManifest.xml | 170 <receiver android:name=".alerts.AlertReceiver"> 187 </receiver> 189 <receiver android:name=".alerts.GlobalDismissManager" 192 <receiver android:name=".UpgradeReceiver"> 200 </receiver> 211 <receiver android:name=".widget.CalendarAppWidgetProvider" android:label="@string/gadget_title"> 217 </receiver> 219 <receiver android:name=".widget.CalendarAppWidgetService$CalendarFactory"> 237 </receiver>
|
/cts/tests/tests/net/src/android/net/http/cts/ |
ApacheHttpClientTest.java | 142 ConnectivityActionReceiver receiver = local 146 mContext.registerReceiver(receiver, filter); 150 receiver.waitForStateChange()); 152 mContext.unregisterReceiver(receiver); 177 /** Receiver that captures the last connectivity change's network type and state. */
|
/external/chromium_org/chrome/browser/storage_monitor/ |
storage_monitor.h | 50 class Receiver { 52 virtual ~Receiver(); 140 virtual Receiver* receiver() const; 159 scoped_ptr<Receiver> receiver_;
|
/external/clang/lib/Sema/ |
SemaExprObjC.cpp | [all...] |
/external/clang/test/Index/ |
complete-super.m | 42 // Check "super" completion as a message receiver. 43 // RUN: c-index-test -code-completion-at=%s:20:4 %s | FileCheck -check-prefix=CHECK-ADD-RECEIVER %s 44 // CHECK-ADD-RECEIVER: ObjCInstanceMethodDecl:{ResultType void}{TypedText super}{HorizontalSpace }{Text add:}{Placeholder a}{HorizontalSpace }{Text to:}{Placeholder b} (20) 46 // RUN: c-index-test -code-completion-at=%s:24:4 %s | FileCheck -check-prefix=CHECK-SELECT-RECEIVER %s 47 // CHECK-SELECT-RECEIVER: ObjCClassMethodDecl:{ResultType void}{TypedText super}{HorizontalSpace }{Text select:}{Placeholder condition}{HorizontalSpace }{Text first:}{Placeholder a}{HorizontalSpace }{Text second:}{Placeholder b} (20)
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/ |
LauncherIconVisibilityManager.java | 39 * been installed, {@link Intent#ACTION_MY_PACKAGE_REPLACED} is received by this receiver and it 43 * been installed, {@link Intent#ACTION_MY_PACKAGE_REPLACED} is received by this receiver but it 51 * receiver and it checks whether the setup wizard's icon should be appeared or not on the launcher 55 * by this receiver and it checks the whether the setup wizard's icon should be appeared or not on 67 // The process that hosts this broadcast receiver is invoked and remains alive even after
|
/external/chromium_org/v8/src/mips/ |
builtins-mips.cc | 51 // -- a0 : number of arguments excluding receiver 58 // -- sp[4 * agrc] : receiver 71 // including the receiver and the extra arguments. 180 // -- sp[argc * 4] : receiver 199 // sp now point to args[0], drop args[0] + receiver. 280 // Load the empty string into a2, remove the receiver from the 308 // Restore call kind information and receiver. 580 // Allocate the new receiver object using the runtime call. 586 // Receiver for constructor call allocated. 593 // sp[0]: receiver [all...] |