HomeSort by relevance Sort by last modified time
    Searched full:bundle (Results 226 - 250 of 5506) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/gtk/extensions/
bundle_installed_bubble_gtk.cc 48 const BundleInstaller* bundle, Browser* browser) {
49 new BundleInstalledBubbleGtk(bundle, browser);
53 const BundleInstaller* bundle, Browser* browser)
57 ShowInternal(bundle);
62 void BundleInstalledBubbleGtk::ShowInternal(const BundleInstaller* bundle) {
82 text_column, bundle, BundleInstaller::Item::STATE_INSTALLED);
83 InsertExtensionList(text_column, bundle, BundleInstaller::Item::STATE_FAILED);
109 const BundleInstaller* bundle,
111 base::string16 heading = bundle->GetHeadingTextFor(state);
112 BundleInstaller::ItemList items = bundle->GetItemsWithState(state)
    [all...]
  /external/llvm/include/llvm/CodeGen/
EdgeBundles.h 11 // edges leaving a machine basic block are in the same bundle, and all edges
12 // leaving a basic block are in the same bundle.
29 /// EC - Each edge bundle is an equivalence class. The keys are:
30 /// 2*BB->getNumber() -> Ingoing bundle.
31 /// 2*BB->getNumber()+1 -> Outgoing bundle.
34 /// Blocks - Map each bundle to a list of basic block numbers.
42 /// bundle number for basic block #N
48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 21 import android.os.Bundle;
43 Bundle b1 = new Bundle();
44 Bundle b2 = new Bundle();
94 // Same as op1 but different bundle
115 Bundle b1 = new Bundle();
129 Bundle b2 = new Bundle();
    [all...]
  /frameworks/base/telephony/java/android/telephony/gsm/
GsmCellLocation.java 19 import android.os.Bundle;
40 * Initialize the object from a bundle.
42 public GsmCellLocation(Bundle bundle) {
43 mLac = bundle.getInt("lac", mLac);
44 mCid = bundle.getInt("cid", mCid);
45 mPsc = bundle.getInt("psc", mPsc);
137 * Set intent notifier Bundle based on service state
139 * @param m intent notifier Bundle
141 public void fillInNotifierBundle(Bundle m)
    [all...]
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 19 import android.os.Bundle;
83 * then it will do so and return a {@link Bundle} that contains the results.
86 * and then carry out the request. This intent must be returned in a Bundle as key
119 String authTokenType, String[] features, Bundle options)
128 final Bundle result = AbstractAccountAuthenticator.this.addAccount(
144 Account account, Bundle options) throws RemoteException {
150 final Bundle result = AbstractAccountAuthenticator.this.confirmCredentials(
173 Bundle result = new Bundle();
188 Account account, String authTokenType, Bundle loginOptions
    [all...]
  /cts/tests/src/android/app/cts/
LocalActivityManagerTestHelper.java 24 import android.os.Bundle;
54 protected void onCreate(Bundle savedInstanceState) {
153 final Bundle bundle = mLocalActivityManager.saveInstanceState(); local
154 if (bundle != null) {
164 final Bundle savedBundle = new Bundle();
165 final Bundle bb = new Bundle();
169 final Bundle returnedBundle = mLocalActivityManager.saveInstanceState()
232 final Bundle bundle = mLocalActivityManager.saveInstanceState(); local
    [all...]
MockTabActivity.java 22 import android.os.Bundle;
38 protected void onCreate(Bundle savedInstanceState) {
60 protected void onPostCreate(Bundle icicle) {
66 protected void onRestoreInstanceState(Bundle state) {
72 protected void onSaveInstanceState(Bundle outState) {
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CountingFragment.java 21 import android.os.Bundle;
38 Bundle args = new Bundle();
49 public void onCreate(Bundle savedInstanceState) {
60 Bundle savedInstanceState) {
  /external/chromium/chrome/browser/
shell_integration_mac.mm 17 // We really do want the main bundle here, not base::mac::MainAppBundle(),
18 // which is the bundle for the framework.
26 // Returns true if |identifier| is the bundle id of the default browser.
33 // persist the case of our bundle id.
46 // As above, we want to use the real main bundle.
  /external/chromium_org/chrome/common/
chrome_version_info_mac.mm 18 // Use the main Chrome application bundle and not the framework bundle.
20 NSBundle* bundle = base::mac::OuterBundle();
21 NSString* channel = [bundle objectForInfoDictionaryKey:@"KSChannelID"];
25 if (![bundle objectForInfoDictionaryKey:@"KSProductID"]) {
  /external/libppp/src/
ip.h 34 struct bundle;
36 extern int ip_PushPacket(struct link *, struct bundle *);
37 extern int PacketCheck(struct bundle *, u_int32_t, const unsigned char *, int,
41 extern struct mbuf *ipv4_Input(struct bundle *, struct link *, struct mbuf *);
43 extern struct mbuf *ipv6_Input(struct bundle *, struct link *, struct mbuf *);
pap.c 71 #include "bundle.h"
85 struct bundle *bundle = authp->physical->dl->bundle; local
91 namelen = strlen(bundle->cfg.auth.name);
92 keylen = strlen(bundle->cfg.auth.key);
95 log_Printf(LogPHASE, "Pap Output: %s ********\n", bundle->cfg.auth.name);
96 if (*bundle->cfg.auth.name == '\0')
105 memcpy(cp, bundle->cfg.auth.name, namelen);
108 memcpy(cp, bundle->cfg.auth.key, keylen)
145 struct bundle *bundle = authp->physical->dl->bundle; local
    [all...]
  /frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
SingleUserProvider.java 23 import android.os.Bundle;
61 public Bundle call(String method, String arg, Bundle extras) {
62 Bundle res = new Bundle();
  /frameworks/testing/androidtestlib/src/com/android/test/
InjectBundle.java 18 import android.os.Bundle;
30 * Use this to inject a {@link Bundle} containing the command line arguments passed to the
33 * To use, just add the correct annotation to an {@link Bundle} field like this:
35 * &#64;InjectBundle public Bundle mMyBundle;
37 * The test runner will set the value of this field with the {@link Bundle} after
  /frameworks/testing/androidtestlib/src/com/android/test/runner/
AndroidRunnerBuilder.java 19 import android.os.Bundle;
36 public AndroidRunnerBuilder(boolean canUseSuiteMethod, Instrumentation instr, Bundle bundle,
39 mAndroidJUnit3Builder = new AndroidJUnit3Builder(instr, bundle, skipExecution);
40 mAndroidJUnit4Builder = new AndroidJUnit4Builder(instr, bundle, skipExecution);
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
AndroidJUnit3Builder.java 19 import android.os.Bundle;
34 private final Bundle mBundle;
36 public AndroidJUnit3Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) {
38 mBundle = bundle;
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/
AndroidJUnit4Builder.java 19 import android.os.Bundle;
36 private final Bundle mBundle;
39 public AndroidJUnit4Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) {
41 mBundle = bundle;
  /packages/apps/Email/src/com/android/email/activity/setup/
DuplicateAccountDialogFragment.java 26 import android.os.Bundle;
34 // Argument bundle keys
45 Bundle b = new Bundle();
52 public Dialog onCreateDialog(Bundle savedInstanceState) {
  /packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java 24 import android.os.Bundle;
44 Bundle args = new Bundle();
53 Bundle args = new Bundle();
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockRespondMatrixCursor.java 19 import android.os.Bundle;
43 public Bundle respond(Bundle request) {
44 final Bundle response = new Bundle();
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayTitleTemplatePicker.java 21 import android.os.Bundle;
37 public void onCreate(Bundle savedInstanceState) {
70 final Bundle bundle = MovieOverlay.buildUserAttributes(overlayType, "", ""); local
71 extras.putExtra(PARAM_OVERLAY_ATTRIBUTES, bundle);
  /prebuilts/tools/common/m2/internal/org/slf4j/slf4j-api/1.7.2/
slf4j-api-1.7.2.pom 47 <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
48 <Bundle-Description>${project.description}</Bundle-Description>
56 <id>bundle-test-jar</id>
  /external/chromium_org/third_party/icu/source/i18n/
ulocdata.c 38 * Pointer to the resource bundle associated with this locale data object
40 UResourceBundle *bundle; member in struct:ULocaleData
43 * Pointer to the lang resource bundle associated with this locale data object
66 uld->bundle = ures_open(NULL, localeID, status);
82 ures_close(uld->bundle);
111 exemplarChars = ures_getStringByKey(uld->bundle, exemplarSetTypes[extype], &len, &localStatus);
153 delimiterBundle = ures_getByKey(uld->bundle, "delimiters", NULL, &localStatus);
190 UResourceBundle* bundle=NULL; local
198 bundle = ures_open(NULL, localeID, status);
200 measurement = ures_getByKeyWithFallback(bundle, MEASUREMENT_SYSTEM, NULL, status)
213 UResourceBundle* bundle=NULL; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/META-INF/
MANIFEST.MF 2 Bundle-Localization: plugin
3 Bundle-RequiredExecutionEnvironment: J2SE-1.4
4 Bundle-SymbolicName: org.eclipse.jdt.debug; singleton:=true
7 Bundle-Activator: org.eclipse.jdt.internal.debug.core.JDIDebugPlugin
8 Require-Bundle: org.eclipse.core.resources;bundle-version="[3.5.0,4.0.
9 0)",org.eclipse.debug.core;bundle-version="[3.5.0,4.0.0)",org.eclipse
10 .jdt.core;bundle-version="[3.5.0,4.0.0)",org.eclipse.core.runtime;bun
11 dle-version="[3.5.0,4.0.0)",org.eclipse.core.expressions;bundle-versi
32 Bundle-Version: 3.6.1.v20100715_r36
    [all...]
  /external/icu4c/i18n/
ulocdata.c 38 * Pointer to the resource bundle associated with this locale data object
40 UResourceBundle *bundle; member in struct:ULocaleData
43 * Pointer to the lang resource bundle associated with this locale data object
66 uld->bundle = ures_open(NULL, localeID, status);
82 ures_close(uld->bundle);
114 exemplarChars = ures_getStringByKey(uld->bundle, exemplarSetTypes[extype], &len, &localStatus);
156 delimiterBundle = ures_getByKey(uld->bundle, "delimiters", NULL, &localStatus);
193 UResourceBundle* bundle=NULL; local
201 bundle = ures_open(NULL, localeID, status);
203 measurement = ures_getByKeyWithFallback(bundle, MEASUREMENT_SYSTEM, NULL, status)
216 UResourceBundle* bundle=NULL; local
    [all...]

Completed in 588 milliseconds

1 2 3 4 5 6 7 8 91011>>