HomeSort by relevance Sort by last modified time
    Searched refs:bundle (Results 26 - 50 of 549) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu4c/tools/genrb/
reslist.c 32 * Align binary data at a 16-byte offset from the start of the resource bundle,
55 * for use in non-error cases when no resource is to be added to the bundle.
103 bundle_compactStrings(struct SRBRoot *bundle, UErrorCode *status);
112 res_write16(struct SRBRoot *bundle, struct SResource *res,
126 * before actually writing the bundle contents to the file,
131 struct SRBRoot *bundle, struct SResource *res,
141 struct SRBRoot *bundle, struct SResource *res,
145 reserve16BitUnits(struct SRBRoot *bundle, int32_t length, UErrorCode *status) {
149 if ((bundle->f16BitUnitsLength + length) > bundle->f16BitUnitsCapacity)
1061 struct SRBRoot *bundle; local
1446 const struct SRBRoot *bundle=(const struct SRBRoot *)context; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
SampleBundleClass.java 28 private static ResourceBundle bundle; field in class:SampleBundleClass
37 bundle = ResourceBundle.getBundle("tests.api.simple.SampleBundleClass");
40 bundle = null;
ListResourceBundleTest.java 33 ResourceBundle bundle; local
36 bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
37 Enumeration<String> keys = bundle.getKeys();
58 hyts_resource_fr_FR bundle = (hyts_resource_fr_FR) ResourceBundle local
62 Set<String> set = bundle.handleKeySet();
68 set = bundle.keySet();
80 hyts_resource_fr_FR bundle = (hyts_resource_fr_FR) ResourceBundle local
85 bundle.handleGetObject(null);
  /external/libppp/src/
pap.h 40 extern struct mbuf *pap_Input(struct bundle *, struct link *, struct mbuf *);
tun.c 80 #include "bundle.h"
84 tun_configure(struct bundle *bundle)
97 sprintf(ifr.ifr_name, "tun%d", bundle->unit);
98 ifr.ifr_mtu = bundle->iface->mtu;
109 info.mtu = bundle->iface->mtu;
111 info.baudrate = bundle->bandwidth;
115 if (ID0ioctl(bundle->dev.fd, TUNSIFINFO, &info) < 0)
tcpmss.c 66 #include "bundle.h"
144 tcpmss_Check(struct bundle *bundle, struct mbuf *bp)
149 if (!Enabled(bundle, OPT_TCPMSSFIXUP))
165 MAXMSS(bundle->iface->mtu));
171 tcpmss_LayerPush(struct bundle *bundle, struct link *l __unused,
174 return tcpmss_Check(bundle, bp);
178 tcpmss_LayerPull(struct bundle *bundle, struct link *l __unused
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/
BundleTest.java 18 import android.os.Bundle;
23 * Implement this interface to receive a {@link Bundle} containing the command line arguments
26 * The test runner will call {@link #injectBundle(Bundle)} after
35 * Called by Android test runner to pass in Bundle containing command line arguments.
37 public void injectBundle(Bundle bundle);
  /external/icu4c/io/
locbund.h 57 * @param bundle The ULocaleBundle to clone.
61 u_locbund_clone(const ULocaleBundle *bundle);*/
65 * @param bundle The ULocaleBundle to delete
68 u_locbund_close(ULocaleBundle *bundle);
72 * @param bundle The ULocaleBundle to use
76 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style);
locbund.cpp 105 u_locbund_clone(const ULocaleBundle *bundle)
114 result->fLocale = (char*) uprv_malloc(strlen(bundle->fLocale) + 1);
120 strcpy(result->fLocale, bundle->fLocale );
125 result->fNumberFormat[styleIdx] = unum_clone(bundle->fNumberFormat[styleIdx], &status);
134 result->fDateFormat = (bundle->fDateFormat == 0 ? 0 :
135 udat_clone(bundle->fDateFormat, &status));
136 result->fTimeFormat = (bundle->fTimeFormat == 0 ? 0 :
137 udat_clone(bundle->fTimeFormat, &status));
143 u_locbund_close(ULocaleBundle *bundle)
147 uprv_free(bundle->fLocale)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/win/
WKBundlePrivateWin.h 35 WK_EXPORT void WKBundleSetHostAllowsAnyHTTPSCertificate(WKBundleRef bundle, WKStringRef host);
36 WK_EXPORT void WKBundleSetClientCertificate(WKBundleRef bundle, WKStringRef host, WKStringRef certificateSystemStoreName, WKCertificateInfoRef certificateInfo);
  /frameworks/testing/androidtestlib/tests/src/com/android/test/
MyBundleTestCase.java 19 import android.os.Bundle;
23 * Placeholder test to verify {@link Bundle} gets injected to {@link BundleTest}.
27 private Bundle mBundle = null;
34 public void injectBundle(Bundle bundle) {
35 mBundle = bundle;
  /external/webkit/Tools/TestWebKitAPI/
InjectedBundleController.cpp 48 void InjectedBundleController::initialize(WKBundleRef bundle, WKTypeRef initializationUserData)
50 m_bundle = bundle;
70 initializeTestNamed(bundle, Util::toSTD(testName), userData);
73 void InjectedBundleController::didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
77 self->m_currentTest->didCreatePage(bundle, page);
80 void InjectedBundleController::willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
84 self->m_currentTest->willDestroyPage(bundle, page);
87 void InjectedBundleController::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo)
91 self->m_currentTest->didInitializePageGroup(bundle, pageGroup);
94 void InjectedBundleController::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
DialogManager.java 23 import android.os.Bundle;
39 * ViewId are forwarded to {@link DialogManager#onCreateDialog(int, Bundle)}</li>
41 * To actually show a Dialog, the View uses {@link DialogManager#showDialogInView(View, Bundle)},
63 * Called by a View to show a dialog. It has to pass itself and a Bundle with extra information.
64 * If the view can show several dialogs, it should distinguish them using an item in the Bundle.
65 * The View needs to have a valid and unique Id. This function modifies the bundle by adding a
68 public void showDialogInView(final View view, final Bundle bundle) {
70 if (bundle.containsKey(VIEW_ID_KEY)) {
71 throw new IllegalArgumentException("Bundle already contains a " + VIEW_ID_KEY)
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
GCController.cpp 55 WKBundleGarbageCollectJavaScriptObjects(InjectedBundle::shared().bundle());
60 WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging(InjectedBundle::shared().bundle(), waitUntilDone);
65 return WKBundleGetJavaScriptObjectsCount(InjectedBundle::shared().bundle());
  /development/apps/BluetoothDebug/src/com/android/bluetoothdebug/
DebugReceiver.java 28 import android.os.Bundle;
49 Bundle bundle = intent.getExtras(); local
50 if (bundle == null) return;
51 for (String extra : bundle.keySet()) {
52 Log.d(TAG, "\t" + shorten(extra) + " = " + bundle.get(extra));
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoAndroidHarness.java 4 import android.os.Bundle;
11 public void onCreate(Bundle savedInstanceState)
14 // First Extract the bundle from intent
15 Bundle bundle = getIntent().getExtras(); local
18 appClass = bundle.getString("APPCLASSNAME");
21 String eglConfig = bundle.getString("EGLCONFIG");
36 if (bundle.getBoolean("VERBOSE"))
  /external/webkit/Source/WebKit2/Platform/mac/
ModuleMac.mm 38 RetainPtr<CFBundleRef> bundle(AdoptCF, CFBundleCreate(kCFAllocatorDefault, bundleURL.get()));
39 if (!bundle)
42 if (!CFBundleLoadExecutable(bundle.get()))
45 m_bundle.adoptCF(bundle.releaseRef());
58 // See the comment in Module.h for why we leak the bundle here.
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
InjectedBundleBasic_Bundle.cpp 39 virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
43 WKBundlePostMessage(bundle, doneMessageName.get(), doneMessageBody.get());
ResponsivenessTimerDoesntFireEarly_Bundle.cpp 47 void ResponsivenessTimerDoesntFireEarlyTest::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef)
55 WKBundlePostMessage(bundle, Util::toWK("DidBrieflyPause").get(), 0);
  /frameworks/base/tools/aapt/
Images.h 11 #include "Bundle.h"
18 status_t preProcessImage(const Bundle* bundle, const sp<AaptAssets>& assets,
21 status_t preProcessImageToCache(const Bundle* bundle, const String8& source, const String8& dest);
Package.cpp 36 ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp<AaptAssets>& assets);
37 ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp<AaptDir>& dir,
39 bool processFile(Bundle* bundle, ZipFile* zip,
41 bool okayToCompress(Bundle* bundle, const String8& pathName);
42 ssize_t processJarFiles(Bundle* bundle, ZipFile* zip)
    [all...]
  /frameworks/base/core/java/android/os/
RemoteCallback.java 29 final Bundle mResult;
31 DeliverResult(Bundle result) {
41 public void sendResult(Bundle bundle) {
42 mHandler.post(new DeliverResult(bundle));
51 protected void onResult(Bundle bundle) {
65 public void sendResult(Bundle bundle) throws RemoteException {
66 mTarget.sendResult(bundle);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
FeedbackFragment.java 21 import android.os.Bundle;
51 Bundle savedInstanceState) {
70 final Bundle bundle = getActivity().getIntent().getExtras(); local
71 if (bundle != null) {
72 restoreState(bundle);
83 final Bundle bundle = new Bundle(); local
84 onSaveInstanceState(bundle);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
ListResourceBundleTest.java 32 ResourceBundle bundle; local
35 bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
36 Enumeration keys = bundle.getKeys();
52 ListResourceBundle bundle; local
55 bundle = (ListResourceBundle)ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
56 Enumeration keys = bundle.getKeys();
60 result.addElement(bundle.handleGetObject((String)keys.nextElement()));
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoFragment.java 20 import android.os.Bundle;
94 public void onCreate(Bundle bundle) {
95 super.onCreate(bundle);
102 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) {
103 super.onCreateView(inflater, viewGroup, bundle);
120 // If the bundle argument contains data, uses it as a URL for the picture to display
121 if (bundle != null) {
122 mURLString = bundle.getString(PHOTO_URL_KEY)
    [all...]

Completed in 2195 milliseconds

12 3 4 5 6 7 8 91011>>