HomeSort by relevance Sort by last modified time
    Searched refs:shell (Results 251 - 275 of 343) sorted by null

<<11121314

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
apache_http_server.py 193 # Use shell=True because we join the arguments into a string for
195 # shell=False.
196 # FIXME: We should not need to be joining shell arguments into strings.
197 # shell=True is a trail of tears.
202 shell=True)
  /ndk/build/core/
add-application.mk 75 APP_PLATFORM := $(strip $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-platform.awk $(_local_props)))
168 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(APP_MANIFEST))
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/
HierarchyViewerApplication.java 87 import org.eclipse.swt.widgets.Shell;
151 super(null /*shell*/);
159 protected void configureShell(Shell shell) {
160 super.configureShell(shell);
161 shell.setText(APP_NAME);
164 shell.setImage(image);
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdSelector.java 53 import org.eclipse.swt.widgets.Shell;
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /cts/tools/vm-tests/
Android.mk 18 $(patsubst ./%,%,$(shell cd $(LOCAL_PATH) && find src -name '*.java'))
  /dalvik/vm/
Android.mk 132 # Copy the dalvik shell script to the host's bin directory
  /external/icu4c/test/hdrtst/
Makefile.in 33 include $(shell icu-config --incfile)
208 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  /libcore/
NativeCode.mk 28 $(patsubst %/sub.mk,%,$(shell cd $(LOCAL_PATH) && ls -d */src/$(1)/native/sub.mk 2> /dev/null))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintEclipseContext.java 44 import org.eclipse.swt.widgets.Shell;
433 * @param shell the parent shell to attach the dialog to
436 public static void showErrors(Shell shell, final IFile file) {
437 LintListDialog dialog = new LintListDialog(shell, file);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 57 import org.eclipse.swt.widgets.Shell;
243 private int getCheckboxWidth(Shell shell) {
245 Shell tempShell = new Shell(shell, SWT.NO_TRIM);
  /development/testrunner/
adb_interface.py 75 """Send a adb shell command.
78 cmd: adb shell command to run
90 return self.SendCommand("shell %s" % cmd, timeout_time=timeout_time,
269 return "adb %s shell %s" % (self._target_arg, cmd)
385 Assumes that a only successful execution of "adb shell <command>" contains
389 command: adb shell command to execute
  /external/dbus/bus/
activation-helper.c 43 #include <dbus/dbus-shell.h>
  /external/llvm/
Makefile 264 include $(shell find . -name GNUmakefile) # Building "Apple-style."
  /external/webkit/Tools/DumpRenderTree/chromium/
LayoutTestController.h 421 virtual bool run(TestShell* shell) = 0;
547 // When reset is called, go through and close all but the main test shell
WebViewHost.h 69 WebViewHost(TestShell* shell);
  /external/qemu/android/
main.c 226 * for logcat or 'shell'
926 /* XXXX: TODO: implement -shell and -logcat through qemud instead */
935 opts->shell = 1;
937 if (opts->shell || opts->logcat) {
1048 if (opts->shell || opts->logcat) {
    [all...]
  /external/wpa_supplicant/
Makefile 661 DBUS_LIBS := $(shell pkg-config --libs dbus-1)
665 DBUS_INCLUDE := $(shell pkg-config --cflags dbus-1)
667 dbus_version=$(subst ., ,$(shell pkg-config --modversion dbus-1))
  /external/v8/tools/
test.py 473 shell = utils.IsWindows(),
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
Makefile 1122 DBUS_LIBS := $(shell $(PKG_CONFIG) --libs dbus-1)
1125 DBUS_INCLUDE := $(shell $(PKG_CONFIG) --cflags dbus-1)
1127 dbus_version=$(subst ., ,$(shell $(PKG_CONFIG) --modversion dbus-1))
1154 DBUS_LIBS := $(shell $(PKG_CONFIG) --libs dbus-1)
1157 DBUS_INCLUDE := $(shell $(PKG_CONFIG) --cflags dbus-1)
    [all...]
  /external/chromium/base/
file_util_unittest.cc 1352 IShellLink *shell = NULL; local
    [all...]
  /external/chromium/net/url_request/
url_request_unittest.cc 1120 IShellLink *shell = NULL; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
Android.mk 911 DBUS_LIBS := $(shell pkg-config --libs dbus-1)
915 DBUS_INCLUDE := $(shell pkg-config --cflags dbus-1)
917 dbus_version=$(subst ., ,$(shell pkg-config --modversion dbus-1))
  /cts/tools/utils/
buildCts.py 289 proc = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_results_generator.py 341 shell=(sys.platform == 'win32'),

Completed in 838 milliseconds

<<11121314