HomeSort by relevance Sort by last modified time
    Searched defs:Bundle (Results 1 - 25 of 57) sorted by null

1 2 3

  /cts/tests/tests/permission/src/android/permission/cts/
NoBroadcastPackageRemovedPermissionTest.java 20 import android.os.Bundle;
58 * Handler, int, String, Bundle)
83 TEST_RECEIVER_PERMISSION, null, null, 0, "initialData", Bundle.EMPTY);
  /frameworks/native/libs/binder/include/binder/
TextOutput.h 39 class Bundle {
41 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); }
42 inline ~Bundle() { mTO.popBundle(); }
  /system/libhwbinder/include/hwbinder/
TextOutput.h 40 class Bundle {
42 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); }
43 inline ~Bundle() { mTO.popBundle(); }
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 593 // instructions. The cloned call-site needs a funclet bundle operand
598 OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx);
599 if (Bundle.getTagID() == LLVMContext::OB_funclet)
602 OpBundles.emplace_back(Bundle);
    [all...]
  /frameworks/base/tools/aapt/
Bundle.h 4 // State bundle. Used to pass around stuff like command-line args.
45 * Bundle of goodies, including everything specified on the command line.
47 class Bundle {
49 Bundle(void)
73 ~Bundle(void) {}
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 19 // block to rearrange the live registers to match the outgoing bundle.
122 // The edge bundle analysis provides indices into the LiveBundles vector.
361 // Update MBB ingoing bundle mask.
469 // Get the live-in bundle for MBB.
470 const LiveBundle &Bundle =
473 if (!Bundle.Mask) {
479 assert(Bundle.isFixed() && "Reached block before any predecessors");
482 for (unsigned i = Bundle.FixCount; i > 0; --i) {
485 << unsigned(Bundle.FixStack[i-1]) << '\n');
486 pushReg(Bundle.FixStack[i-1])
    [all...]
  /frameworks/base/core/java/android/content/
ContentProvider.java 38 import android.os.Bundle;
212 @Nullable Bundle queryArgs, @Nullable ICancellationSignal cancellationSignal) {
398 public Bundle call(
399 String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras) {
400 Bundle.setDefusable(extras, true);
418 Bundle opts, ICancellationSignal cancellationSignal) throws FileNotFoundException {
419 Bundle.setDefusable(opts, true);
470 public boolean refresh(String callingPkg, Uri uri, Bundle args,
    [all...]
ContentResolver.java 39 import android.os.Bundle;
85 * {@link #requestSync(android.accounts.Account, String, android.os.Bundle)}
190 * @see #openTypedAssetFileDescriptor(Uri, String, Bundle)
191 * @see #openTypedAssetFileDescriptor(Uri, String, Bundle,
205 * Key for an SQL style selection string that may be present in the query Bundle argument
206 * passed to {@link ContentProvider#query(Uri, String[], Bundle, CancellationSignal)}
242 * Key for an SQL style sort string that may be present in the query Bundle argument
243 * passed to {@link ContentProvider#query(Uri, String[], Bundle, CancellationSignal)}
260 * supplied to {@link ContentResolver#query(Uri, String[], Bundle, CancellationSignal)}.
265 * {@link ContentProvider#query(Uri, String[], Bundle, CancellationSignal)}, if sort column
2825 final Bundle bundle = getContentService().getCache(mContext.getPackageName(), key, local
    [all...]
  /frameworks/base/core/java/android/os/
Bundle.java 34 public final class Bundle extends BaseBundle implements Cloneable, Parcelable {
39 public static final Bundle EMPTY;
42 EMPTY = new Bundle();
47 * Constructs a new, empty Bundle.
49 public Bundle() {
55 * Constructs a Bundle whose data is stored as a Parcel. The data
58 * @param parcelledData a Parcel containing a Bundle
60 Bundle(Parcel parcelledData) {
68 /* package */ Bundle(Parcel parcelledData, int length) {
77 * Constructs a new, empty Bundle that uses a specific ClassLoader fo
338 Bundle bundle = this; local
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 283 // Set B[i] = C for every live bundle where B[i] was NoCand.
303 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
ContentService.java 47 import android.os.Bundle;
126 private final SparseArray<ArrayMap<String, ArrayMap<Pair<String, Uri>, Bundle>>>
472 public void requestSync(Account account, String authority, Bundle extras) {
473 Bundle.setDefusable(extras, true);
533 Bundle extras = request.getBundle();
622 Bundle extras = new Bundle(request.getBundle());
746 public void addPeriodicSync(Account account, String authority, Bundle extras,
748 Bundle.setDefusable(extras, true);
775 public void removePeriodicSync(Account account, String authority, Bundle extras)
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
ConnectionServiceWrapper.java 24 import android.os.Bundle;
407 Bundle connectionExtras = parcelableConference.getExtras();
590 public void putExtras(String callId, Bundle extras, Session.Info sessionInfo) {
595 Bundle.setDefusable(extras, true);
729 Bundle connectionExtras = connection.getExtras();
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 424 /// the bundle
565 /// instruction bundle (= a group of instructions which is combined into a
592 /// Returns true for single instructions and for bundle representatives
593 /// (= the head of a bundle).
596 /// Returns true if it represents an instruction bundle and not only a
611 /// the whole bundle.
648 /// Points to the head in an instruction bundle (and always to this for
652 /// Single linked list of all instructions in a bundle. Null if it is a
679 /// instructions. As soon as this is zero, the instruction/bundle gets ready
684 /// The sum of UnscheduledDeps in a bundle. Equals to UnscheduledDeps fo
    [all...]
  /frameworks/base/services/core/java/com/android/server/accounts/
AccountManagerService.java 69 import android.os.Bundle;
432 Bundle extras, Map packageToVisibility) {
433 Bundle.setDefusable(extras, true);
2734 Bundle bundle = new Bundle(); local
2912 Bundle bundle = new Bundle(); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 46 import android.os.Bundle;
2340 PersistableBundle bundle = configManager.getConfig(); local
3960 Bundle bundle = msg.getData(); local
4012 Bundle bundle = msg.getData(); local
4059 Bundle bundle = msg.getData(); local
    [all...]
  /frameworks/base/core/java/android/app/
Notification.java 49 import android.os.Bundle;
831 public Bundle extras = new Bundle();
835 * touching the extras bundle in the system process is not safe because the bundle may contain
6172 Bundle bundle = new Bundle(); local
8126 Bundle bundle = notif.extras == null ? local
8143 Bundle bundle = new Bundle(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityManagerService.java 293 import android.os.Bundle;
2076 Bundle bundle = (Bundle)msg.obj; local
6063 Bundle bundle = new Bundle(); local
    [all...]
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 
  /external/guice/lib/build/
felix-2.0.5.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 

Completed in 568 milliseconds

1 2 3