/external/chromium_org/tools/python/google/httpd_config/ |
D | mime.types | 12 application/activemessage 13 application/andrew-inset ez 14 application/applefile 15 application/atom+xml atom 16 application/atomicmail 17 application/batch-smtp 18 application/beep+xml 19 application/cals-1840 20 application/cnrp+xml 21 application/commonground [all …]
|
/external/mesa3d/src/mesa/drivers/dri/common/ |
D | drirc | 3 <application name="Unigine Sanctuary" executable="Sanctuary"> 6 </application> 7 <application name="Unigine Tropics" executable="Tropics"> 10 </application> 11 <application name="Unigine Heaven (32-bit)" executable="heaven_x86"> 14 </application> 15 <application name="Unigine Heaven (64-bit)" executable="heaven_x64"> 18 </application> 19 <application name="Unigine OilRush (32-bit)" executable="OilRush_x86"> 21 </application> [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/ |
D | drirc | 3 <application name="Unigine Sanctuary" executable="Sanctuary"> 6 </application> 7 <application name="Unigine Tropics" executable="Tropics"> 10 </application> 11 <application name="Unigine Heaven (32-bit)" executable="heaven_x86"> 14 </application> 15 <application name="Unigine Heaven (64-bit)" executable="heaven_x64"> 18 </application> 19 <application name="Unigine OilRush (32-bit)" executable="OilRush_x86"> 21 </application> [all …]
|
/external/chromium_org/native_client_sdk/src/doc/devguide/devcycle/ |
D | running.rst | 27 applications locally. An application that uses a PNaCl module can be tested 28 similarly to any other web application that only consists of HTML, CSS and 32 web server to serve the application's files. The NaCl SDK comes with a simple 45 * A **hosted application** is an application that you host on a server of your 46 choice. To distribute an application as a hosted application, you upload 47 application metadata to the CWS. 49 * A **packaged application** is an application that is hosted in the CWS and 50 downloaded to the user's machine. To distribute an application as a packaged 51 application, you upload the entire application, including all application 54 * An **extension** is a packaged application that has a tiny UI component [all …]
|
D | dynamic-loading.rst | 68 * Dynamic loading can provide a big performance benefit for your application if 69 you can structure the application to defer loading of code that's not needed 80 **if your Native Client application must dynamically link and load code (e.g., 100 uses, even if the rest of an application is dynamically linked. 126 To use the glibc library and dynamic linking in your application, you **must** 128 ``<platform>_x86_glibc``.) Note that you must build all code in your application 139 application, the operating system's program loader determines the set of 140 libraries the application requires by reading explicit inter-module 142 into the address space of the application process. Typically the required 143 libraries will have been installed on the system as a part of the application's [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | ApplicationTest.java | 45 Robolectric.application = new Application(); in setUp() 50 assertThat(new Activity().getApplication(), sameInstance(Robolectric.application)); in shouldBeAContext() 51 …ivity().getApplication().getApplicationContext(), sameInstance((Context) Robolectric.application)); in shouldBeAContext() 93 Object systemService = Robolectric.application.getSystemService(name); in checkSystemService() 95 assertThat(systemService, sameInstance(Robolectric.application.getSystemService(name))); in checkSystemService() 100 …Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithPackageName.xm… in packageManager_shouldKnowPackageName() local 101 …assertEquals("com.wacka.wa", application.getPackageManager().getPackageInfo("com.wacka.wa", 0).pac… in packageManager_shouldKnowPackageName() 106 …Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithAppName.xml"))… in packageManager_shouldKnowApplicationName() local 108 … application.getPackageManager().getApplicationInfo("com.xtremelabs.robolectric", 0).name); in packageManager_shouldKnowApplicationName() 116 …Robolectric.shadowOf(Robolectric.application).setComponentNameAndServiceForBindService(expectedCom… in bindServiceShouldCallOnServiceConnectedWhenNotPaused() [all …]
|
D | PendingIntentTest.java | 38 …PendingIntent pendingIntent = PendingIntent.getBroadcast(Robolectric.application, 99, intent, 100); in getBroadcast__shouldCreateIntentForBroadcast() 44 assertThat(Robolectric.application, equalTo(shadow.getSavedContext())); in getBroadcast__shouldCreateIntentForBroadcast() 50 … PendingIntent pendingIntent = PendingIntent.getActivity(Robolectric.application, 99, intent, 100); in getActivity__shouldCreateIntentForBroadcast() 56 assertThat(Robolectric.application, equalTo(shadow.getSavedContext())); in getActivity__shouldCreateIntentForBroadcast() 62 … PendingIntent pendingIntent = PendingIntent.getService(Robolectric.application, 99, intent, 100); in getService__shouldCreateIntentForBroadcast() 68 assertThat(Robolectric.application, equalTo(shadow.getSavedContext())); in getService__shouldCreateIntentForBroadcast() 89 PendingIntent pi1 = PendingIntent.getActivity(Robolectric.application, 99, in testEquals() 92 PendingIntent pi3 = PendingIntent.getService(Robolectric.application, 99, in testEquals() 106 .getBroadcast(Robolectric.application, 99, null, 100)); in parcelIo_shouldGetBackBroadcastIntentWrittenToParcelWithNullIntent() 112 .getBroadcast(Robolectric.application, 99, new Intent(), 100)); in parcelIo_shouldGetBackBroadcastIntentWrittenToParcel() [all …]
|
D | ShadowAutoCompleteTextViewTest.java | 24 new AutoCompleteTextView(Robolectric.application); in shouldStoreAdapter() 25 ArrayAdapter<Object> adapter = new ArrayAdapter<Object>(Robolectric.application, 0); in shouldStoreAdapter() 35 new AutoCompleteTextView(Robolectric.application); in shouldHaveDefaultThresholdOfTwo() 43 new AutoCompleteTextView(Robolectric.application); in shouldStoreThreshold() 53 new AutoCompleteTextView(Robolectric.application); in shouldNotStoreThresholdLessThanOne() 63 new AutoCompleteTextView(Robolectric.application); in shouldStoreOnItemClickListener() 75 new ReplaceableAutoCompleteTextView(Robolectric.application); in shouldReplaceTextAndUpdateSelection()
|
D | LocalBroadcastManagerTest.java | 21 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(Robolectric.application); in shouldGetInstance() 23 assertSame(instance, LocalBroadcastManager.getInstance(Robolectric.application)); in shouldGetInstance() 28 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(Robolectric.application); in shouldSendBroadcasts() 48 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(Robolectric.application); in shouldUnregisterReceiver() 65 lastInstance = LocalBroadcastManager.getInstance(Robolectric.application); in shouldResetStateBetweenTests1() 72 assertNotSame(lastInstance, LocalBroadcastManager.getInstance(Robolectric.application)); in shouldResetStateBetweenTests2()
|
D | BitmapFactoryTest.java | 22 …Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an… in decodeResource_shouldSetDescription() 31 …Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an… in decodeResourceWithOpts_shouldSetDescription() 49 …InputStream inputStream = Robolectric.application.getContentResolver().openInputStream(Uri.parse("… in decodeStream_shouldSetDescription() 60 …Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an… in decodeResource_shouldGetWidthAndHeightFromHints() 71 …Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an… in decodeResourceWithOpts_shouldGetWidthAndHeightFromHints() 83 …Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an… in decodeResource_canTakeOptions() 111 …Bitmap bitmap = MediaStore.Images.Media.getBitmap(Robolectric.application.getContentResolver(), Ur… in decodeUri_shouldGetWidthAndHeightFromHints() 121 …InputStream inputStream = Robolectric.application.getContentResolver().openInputStream(Uri.parse("… in decodeStream_shouldGetWidthAndHeightFromHints()
|
D | TelephonyManagerTest.java | 11 import static com.xtremelabs.robolectric.Robolectric.application; 46 …TelephonyManager telephonyManager = (TelephonyManager) application.getSystemService(TELEPHONY_SERV… in shouldGiveDeviceId() 53 …TelephonyManager telephonyManager = (TelephonyManager) application.getSystemService(TELEPHONY_SERV… in shouldGiveNetworkOperatorName() 61 …TelephonyManager telephonyManager = (TelephonyManager) application.getSystemService(TELEPHONY_SERV… in shouldGiveNetworkCountryIso() 69 …TelephonyManager telephonyManager = (TelephonyManager) application.getSystemService(TELEPHONY_SERV… in shouldGiveNetworkOperator() 83 …TelephonyManager telephonyManager = (TelephonyManager) application.getSystemService(TELEPHONY_SERV… in shouldGivePhoneType()
|
D | AlarmManagerTest.java | 112 … Intent newIntent = new Intent(Robolectric.application.getApplicationContext(), String.class); in cancel_removesMatchingPendingIntents() 113 …PendingIntent pendingIntent = PendingIntent.getBroadcast(Robolectric.application.getApplicationCon… in cancel_removesMatchingPendingIntents() 116 … Intent newIntent2 = new Intent(Robolectric.application.getApplicationContext(), Integer.class); in cancel_removesMatchingPendingIntents() 117 …PendingIntent pendingIntent2 = PendingIntent.getBroadcast(Robolectric.application.getApplicationCo… in cancel_removesMatchingPendingIntents() 122 … Intent newIntent3 = new Intent(Robolectric.application.getApplicationContext(), String.class); in cancel_removesMatchingPendingIntents() 123 …PendingIntent newPendingIntent = PendingIntent.getBroadcast(Robolectric.application.getApplication… in cancel_removesMatchingPendingIntents() 131 …PendingIntent pendingIntent = PendingIntent.getBroadcast(Robolectric.application.getApplicationCon… in cancel_removesMatchingPendingIntentsWithActions() 134 …alarmManager.cancel(PendingIntent.getBroadcast(Robolectric.application, 0, new Intent("anotherActi… in cancel_removesMatchingPendingIntentsWithActions() 136 …alarmManager.cancel(PendingIntent.getBroadcast(Robolectric.application, 0, new Intent("someAction"… in cancel_removesMatchingPendingIntentsWithActions()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
D | ApplicationResolver.java | 24 Application application; in resolveApplication() local 26 application = newApplicationInstance(packageName, applicationName); in resolveApplication() 28 application = new Application(); in resolveApplication() 31 ShadowApplication shadowApplication = shadowOf(application); in resolveApplication() 35 shadowApplication.setPackageManager(new RobolectricPackageManager(application, config)); in resolveApplication() 38 return application; in resolveApplication() 69 Application application; in newApplicationInstance() local 73 application = applicationClass.newInstance(); in newApplicationInstance() 77 return application; in newApplicationInstance()
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
D | __init__.py | 114 def LaunchApplication(self, application, parameters=None): argument 116 return self._platform_backend.LaunchApplication(application, 119 def IsApplicationRunning(self, application): argument 121 return self._platform_backend.IsApplicationLaunchning(application) 123 def CanLaunchApplication(self, application): argument 125 return self._platform_backend.CanLaunchApplication(application) 127 def InstallApplication(self, application): argument 129 return self._platform_backend.InstallApplication(application)
|
D | android_platform_backend.py | 158 def LaunchApplication(self, application, parameters=None): argument 159 if application in _HOST_APPLICATIONS: 160 self._host_platform_backend.LaunchApplication(application, parameters) 164 self._adb.RunShellCommand('am start ' + parameters + ' ' + application) 166 def IsApplicationRunning(self, application): argument 167 if application in _HOST_APPLICATIONS: 168 return self._host_platform_backend.IsApplicationRunning(application) 169 return len(self._adb.ExtractPid(application)) > 0 171 def CanLaunchApplication(self, application): argument 172 if application in _HOST_APPLICATIONS: [all …]
|
D | linux_platform_backend.py | 46 def CanLaunchApplication(self, application): argument 47 if application == 'ipfw' and not self._IsIpfwKernelModuleInstalled(): 49 return super(LinuxPlatformBackend, self).CanLaunchApplication(application) 51 def InstallApplication(self, application): argument 52 if application == 'ipfw': 54 elif application == 'avconv': 58 'Please teach Telemetry how to install ' + application)
|
D | platform_backend.py | 67 def LaunchApplication(self, application, parameters=None): argument 70 def IsApplicationRunning(self, application): argument 73 def CanLaunchApplication(self, application): argument 76 def InstallApplication(self, application): argument
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/ |
D | ApplicationResolverTest.java | 37 …Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithPackageName.xm… in shouldAssignThePackageNameFromTheManifest() local 38 assertEquals("com.wacka.wa", application.getPackageName()); in shouldAssignThePackageNameFromTheManifest() 43 …Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithAppName.xml"))… in shouldAssignTheApplicationNameFromTheManifest() local 44 … assertEquals("com.xtremelabs.robolectric.TestApplication", application.getApplicationInfo().name); in shouldAssignTheApplicationNameFromTheManifest() 49 …Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithReceivers.xml"… in shouldRegisterReceiversFromTheManifest() local 50 List<ShadowApplication.Wrapper> receivers = shadowOf(application).getRegisteredReceivers(); in shouldRegisterReceiversFromTheManifest()
|
D | RobolectricTestRunnerTest.java | 24 assertNotNull(Robolectric.application); in shouldInitializeAndBindApplicationButNotCallOnCreate() 25 assertEquals(MyTestApplication.class, Robolectric.application.getClass()); in shouldInitializeAndBindApplicationButNotCallOnCreate() 26 assertFalse(((MyTestApplication) Robolectric.application).onCreateWasCalled); in shouldInitializeAndBindApplicationButNotCallOnCreate() 27 assertNotNull(shadowOf(Robolectric.application).getResourceLoader()); in shouldInitializeAndBindApplicationButNotCallOnCreate() 63 TextView tv = new TextView(Robolectric.application); in methodBlock_setsI18nStrictModeForClassHandler() 76 ResourceLoader loader = Robolectric.shadowOf(Robolectric.application).getResourceLoader(); in createResourceLoader_setsI18nStrictModeForResourceLoader() 80 loader.inflateView(Robolectric.application, R.layout.text_views, null); in createResourceLoader_setsI18nStrictModeForResourceLoader()
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
D | ResourceLoaderTest.java | 48 ViewGroup vg = new FrameLayout(Robolectric.application); in shouldThrowExceptionOnI18nStrictModeInflateView() 49 resourceLoader.inflateView(Robolectric.application, R.layout.text_views, vg); in shouldThrowExceptionOnI18nStrictModeInflateView() 56 resourceLoader.inflateMenu(Robolectric.application, R.menu.test, null); in shouldThrowExceptionOnI18nStrictModeInflateMenu() 63 resourceLoader.inflatePreferences(Robolectric.application, R.xml.preferences); in shouldThrowExceptionOnI18nStrictModeInflatePreferences() 70 ViewGroup viewGroup = new FrameLayout(Robolectric.application); in testChoosesLayoutBasedOnSearchPath_respectsOrderOfPath() 71 …ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.differen… in testChoosesLayoutBasedOnSearchPath_respectsOrderOfPath() 88 ViewGroup viewGroup = new FrameLayout(Robolectric.application); in checkForPollutionHelper() 89 …ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.differen… in checkForPollutionHelper()
|
/external/bluetooth/bluedroid/test/bluedroidtest/ |
D | README.txt | 3 The test application provides a small console shell interface that allows 6 application is to allow Bluetooth to be put in DUT Mode for RF/BB BQB test purposes. 8 This application is mutually exclusive with the Java based Bluetooth.apk. Hence 9 before launching the application, it should be ensured that the Settings->Bluetooth is OFF. 11 This application is built as 'bdt' and shall be available in '/system/bin/bdt' 15 1.) Settings->Bluetooth must be OFF for this application to work 23 Launching the test application 68 Exit the test application
|
/external/chromium_org/native_client_sdk/src/doc/devguide/ |
D | distributing.rst | 20 distribution step is requred. Making PNaCl a part of your web application is as 26 The only constraint for distributing PNaCl modules with a web application is 57 Packaged application 60 A packaged application is a special zip file (with a .crx extension) hosted in 61 the Chrome Web Store. This file contains all of the application parts: A Chrome 63 Client application files. Refer to 65 for more information about creating a packaged application. 84 **multi-platform zip files.** This feature lets you structure your application 221 #. Modify your application as necessary so that it uses the files for the 242 Additional considerations for a packaged application argument [all …]
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
D | oomkiller_profiler.py | 15 def __init__(self, application): argument 17 self.application = application 20 return repr(self.application)
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | fileutils.h | 270 void SetApplicationName(const std::string& application) { in SetApplicationName() argument 271 application_name_ = application; in SetApplicationName() 273 void GetApplicationName(std::string* application) { in GetApplicationName() argument 274 ASSERT(NULL != application); in GetApplicationName() 275 *application = application_name_; in GetApplicationName() 417 static void SetApplicationName(const std::string& application) { in SetApplicationName() argument 418 EnsureDefaultFilesystem()->SetApplicationName(application); in SetApplicationName() 421 static void GetApplicationName(std::string* application) { in GetApplicationName() argument 422 EnsureDefaultFilesystem()->GetApplicationName(application); in GetApplicationName()
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | fileutils.h | 272 void SetApplicationName(const std::string& application) { in SetApplicationName() argument 273 application_name_ = application; in SetApplicationName() 275 void GetApplicationName(std::string* application) { in GetApplicationName() argument 276 ASSERT(NULL != application); in GetApplicationName() 277 *application = application_name_; in GetApplicationName() 419 static void SetApplicationName(const std::string& application) { in SetApplicationName() argument 420 EnsureDefaultFilesystem()->SetApplicationName(application); in SetApplicationName() 423 static void GetApplicationName(std::string* application) { in GetApplicationName() argument 424 EnsureDefaultFilesystem()->GetApplicationName(application); in GetApplicationName()
|