OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:environment
(Results
201 - 225
of
1536
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiveFileInfo.java
45
import android.os.
Environment
;
113
if (
Environment
.getExternalStorageState().equals(
Environment
.MEDIA_MOUNTED)) {
114
String root =
Environment
.getExternalStorageDirectory().getPath();
190
sDesiredStoragePath =
Environment
.getExternalStorageDirectory().getPath() +
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
Runtime.java
56
* Allows Java applications to interface with the
environment
in which they are
124
* process. The new process inherits the
environment
of the caller. Calling
146
* process. The new process uses the
environment
provided in {@code envp}.
154
* the array containing the
environment
to start the new process
172
* process. The new process uses the
environment
provided in {@code envp}
179
* the array containing the
environment
to start the new process
202
* process inherits the
environment
of the caller. Calling this method is
223
* process uses the
environment
provided in {@code envp}. Calling this
229
* the array containing the
environment
to start the new process
247
* process uses the
environment
provided in {@code envp} and the workin
[
all
...]
/external/gtest/test/
gtest_filter_unittest.py
35
the GTEST_FILTER
environment
variable or the --gtest_filter flag.
55
# The
environment
variable for specifying the test filters.
58
# The
environment
variables for test sharding.
157
"""Runs the given function and arguments in a modified
environment
."""
183
"""Tests using the GTEST_FILTER
environment
variable or the
496
environment
variable.
507
"""Tests that the shard file is created if specified in the
environment
."""
/ndk/build/core/
init.mk
20
# Define NDK_LOG in your
environment
to display log traces when
88
# Determine host system and architecture from the
environment
93
# the OS
environment
variable is defined to 'Windows_NT'
114
$(call __ndk_info,Please define HOST_OS in your
environment
.)
120
$(call ndk_log,Host OS from
environment
: $(HOST_OS))
146
$(call ndk_log,Host CPU from
environment
: $(HOST_ARCH))
178
$(call ndk_log,Host awk tool from
environment
: $(HOST_AWK))
/packages/apps/Gallery/src/com/android/camera/
ImageManager.java
37
import android.os.
Environment
;
137
Environment
.getExternalStorageDirectory().toString()
156
Environment
.getExternalStorageDirectory().toString()
456
Environment
.getExternalStorageDirectory().toString() + "/DCIM";
484
String state =
Environment
.getExternalStorageState();
486
if (
Environment
.MEDIA_MOUNTED.equals(state)) {
494
&&
Environment
.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
/cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_ThumbnailsTest.java
33
import android.os.
Environment
;
195
final String externalImgPath =
Environment
.getExternalStorageDirectory() +
197
final String externalImgPath2 =
Environment
.getExternalStorageDirectory() +
MediaStore_Video_MediaTest.java
27
import android.os.
Environment
;
60
final String externalVideoPath =
Environment
.getExternalStorageDirectory().getPath() +
62
final String externalVideoPath2 =
Environment
.getExternalStorageDirectory().getPath() +
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ProcessBuilderTest.java
148
method = "
environment
",
154
Map<String, String> env = pb.
environment
();
158
env = pb.
environment
();
/external/bluetooth/glib/m4macros/
glib-2.0.m4
119
printf("*** If pkg-config was wrong, set the
environment
variable PKG_CONFIG_PATH\n");
150
printf("*** of GLIB, but you can also set the PKG_CONFIG
environment
to point to the\n");
187
echo "*** LD_LIBRARY_PATH
environment
variable, or edit /etc/ld.so.conf to point"
/external/v8/
SConstruct
38
# ANDROID_TOP is the top of the Android checkout, fetched from the
environment
40
#
environment
variables to the cross-compiling tools.
605
tools =
Environment
()['TOOLS']
722
result.Add('env', 'override
environment
settings (NAME0:value0,NAME1:value1,...)', '')
723
result.Add('importenv', 'import
environment
settings (NAME0,NAME1,...)', '')
909
# The
environment
overrides are in the format NAME0:value0,NAME1:value1,...
910
# The
environment
imports are in the format NAME0,NAME1,...
932
#
environment
into a construction
environment
.
997
d8_env =
Environment
()
[
all
...]
/frameworks/base/docs/html/guide/topics/testing/
testing_android.jd
32
<a href="#TestEnviroment">Working in the Test
Environment
</a>
87
environment
. Although you can test an Android application with JUnit, the
91
<p>Key features of the Android testing
environment
include:</p>
105
<p>This document is an overview of the Android testing
environment
and the way
111
<p> At the heart of the Android testing
environment
is an instrumentation
129
<p>The following diagram summarizes the Android testing
environment
:</p>
223
{@link android.test.ActivityInstrumentationTestCase2} - This class tests a single activity within the normal system
environment
.
271
environment
at runtime. Notice that you use this test runner even if your test class does not itself use instrumentation.
290
<h2 id="TestEnviroment">Working in the Test
Environment
</h2>
302
The tools and procedures you use with testing depend on the development
environment
you are using. If you use Eclipse, then the ADT plug in for Eclipse provides tools tha
[
all
...]
/frameworks/base/docs/html/guide/tutorials/notepad/
index.jd
35
the Eclipse development
environment
, with the Android plugin installed. If you
38
steps in your
environment
. </p>
50
tutorial, which explains how to set up your Eclipse
environment
/frameworks/base/docs/html/resources/tutorials/notepad/
index.jd
35
the Eclipse development
environment
, with the Android plugin installed. If you
38
steps in your
environment
. </p>
50
tutorial, which explains how to set up your Eclipse
environment
/frameworks/base/services/java/com/android/server/status/
UsbStorageActivity.java
34
import android.os.
Environment
;
85
final boolean on = newState.equals(
Environment
.MEDIA_SHARED);
231
String extStoragePath =
Environment
.getExternalStorageDirectory().toString();
/packages/apps/Email/src/org/apache/commons/io/
FileCleaner.java
29
* In an
environment
with multiple class loaders (a servlet container, for
121
* In a simple
environment
, you don't need this method as the file cleaner
122
* thread will simply exit when the JVM exits. In a more complex
environment
,
/packages/apps/Music/tests/src/com/android/music/functional/
TestSongs.java
28
import android.os.
Environment
;
104
+
Environment
.getExternalStorageDirectory()));
109
+
Environment
.getExternalStorageDirectory())));
/packages/apps/Settings/src/com/android/settings/
TetherSettings.java
31
import android.os.
Environment
;
217
Environment
.MEDIA_SHARED.equals(
Environment
.getExternalStorageState());
/bionic/libc/bionic/
libc_init_static.c
68
/* Initialize the C runtime
environment
*/
/bionic/libc/private/
resolv_cache.h
34
* (e.g. through an
environment
variable) */
/bionic/libm/ia64/
_fpmath.h
58
* we assume that none do. If you have an
environment
for testing
/cts/tools/host/etc/
cts.bat
16
rem don't modify the caller's
environment
/dalvik/libcore/luni-kernel/src/main/native/
java_lang_System.cpp
48
* Pointer to complete
environment
, from Posix.
/dalvik/libcore/sql/src/main/java/java/sql/
DriverPropertyInfo.java
53
*
environment
and the driver's default values.
/dalvik/libcore/xml/src/main/java/javax/xml/xpath/
XPathFactoryConfigurationException.java
22
* <code>XPathFactoryConfigurationException</code> represents a configuration error in a <code>XPathFactory</code>
environment
.</p>
/development/apps/GestureBuilder/src/com/android/gesture/builder/
GestureBuilderActivity.java
24
import android.os.
Environment
;
70
private final File mStoreFile = new File(
Environment
.getExternalStorageDirectory(), "gestures");
342
if (!
Environment
.MEDIA_MOUNTED.equals(
Environment
.getExternalStorageState())) {
Completed in 1068 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>