/external/dhcpcd/mk/ |
cc.mk | 10 CFLAGS+= ${_CSTD}$(shell ${_CSTD_SH}) 23 CFLAGS+= ${_CC_FLAGS}$(shell ${_CC_FLAGS_SH}) 27 GGDB= ${_GGDB}$(shell ${_GGDB_SH})
|
man.mk | 6 MANPREFIX?= ${_MANPREFIX}$(shell ${_MANPREFIX_SH}) 13 MAN5= ${_MAN5}$(shell ${_MAN5_SH}) 17 MAN8= ${_MAN8}$(shell ${_MAN8_SH})
|
/external/grub/docs/ |
grub-install.8 | 21 \fB\-\-grub\-shell\fR=\fIFILE\fR 22 use FILE as the grub shell 37 \fB\-\-root\-directory\fR, and uses the grub shell to install grub into the boot
|
/external/sepolicy/ |
adbd.te | 28 domain_auto_trans(adbd, shell_exec, shell) 29 # Do not sanitize the environment of the shell. 30 allow adbd shell:process noatsecure;
|
/external/skia/src/ports/ |
SkOSFile_brew.cpp | 25 IShell* shell; local 27 shell = reinterpret_cast<AEEApplet*>(GETAPPINSTANCE())->m_pIShell; 28 err = ISHELL_CreateInstance(shell, AEECLSID_FILEMGR, (void**)&fileMgr);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
WizardDialogEx.java | 23 import org.eclipse.swt.widgets.Shell;
31 * @see WizardDialog#WizardDialog(Shell, IWizard)
33 public WizardDialogEx(Shell parentShell, IWizard newWizard) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
WelcomeWizard.java | 29 import org.eclipse.swt.widgets.Shell; 150 // Get a shell to use for the SDK installation. There are cases where getActiveShell 153 Shell shell = display.getActiveShell(); local 154 if (shell == null) { 158 shell = window.getShell(); 162 if (shell == null) { 163 shell = new Shell(display); 164 AdtPlugin.log(IStatus.WARNING, "No parent shell for SDK installation dialog") [all...] |
/sdk/emulator/opengl/tests/translator_tests/GLES_CM/ |
Android.mk | 8 LOCAL_SDL_CFLAGS := $(shell $(LOCAL_SDL_CONFIG) --cflags) 9 LOCAL_SDL_LDLIBS := $(filter-out %.a %.lib,$(shell $(LOCAL_SDL_CONFIG) --static-libs)) 12 DARWIN_VERSION := $(strip $(shell sw_vers -productVersion))
|
/sdk/emulator/opengl/tests/translator_tests/GLES_V2/ |
Android.mk | 8 LOCAL_SDL_CFLAGS := $(shell $(LOCAL_SDL_CONFIG) --cflags) 9 LOCAL_SDL_LDLIBS := $(filter-out %.a %.lib,$(shell $(LOCAL_SDL_CONFIG) --static-libs)) 20 DARWIN_VERSION := $(strip $(shell sw_vers -productVersion))
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtilsTest.java | 28 import org.eclipse.swt.widgets.Shell; 50 Shell shell = new Shell(); local 51 Display display = shell.getDisplay(); 106 Shell shell = new Shell(); local 107 Display display = shell.getDisplay(); 139 Shell shell = new Shell() local 174 Shell shell = new Shell(); local 329 Shell shell = new Shell(); local [all...] |
/external/clang/lib/Basic/ |
Makefile | 20 $(shell $(LLVM_SRC_ROOT)/utils/GetSourceVersion $(PROJ_SRC_DIR)/../..)) 23 $(shell $(LLVM_SRC_ROOT)/utils/GetRepositoryPath $(PROJ_SRC_DIR)/../..)) 26 $(shell $(LLVM_SRC_ROOT)/utils/GetSourceVersion $(LLVM_SRC_ROOT))) 29 $(shell $(LLVM_SRC_ROOT)/utils/GetRepositoryPath $(LLVM_SRC_ROOT))) 36 @if [ '$(SVN_REVISION) $(LLVM_REVISION)' != '$(shell cat $(ObjDir)/.ver-svn 2>/dev/null)' ]; then\
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTooltipProvider.java | 21 import org.eclipse.swt.widgets.Shell; 53 * Shows tooltip {@link Shell}. 55 public void show(Shell shell) { 56 shell.setVisible(true);
|
/external/grub/util/ |
grub-md5-crypt | 39 --grub-shell=FILE use FILE as the grub shell 51 --grub-shell=*) 52 grub_shell=`echo "$option" | sed 's/--grub-shell=//'` 90 # Run the grub shell.
|
grub-md5-crypt.in | 39 --grub-shell=FILE use FILE as the grub shell 51 --grub-shell=*) 52 grub_shell=`echo "$option" | sed 's/--grub-shell=//'` 90 # Run the grub shell.
|
/external/webkit/Tools/wx/packaging/debian/ |
rules | 3 SHELL = /bin/bash 5 PYVERS := $(shell /usr/bin/python -c 'import sys; print sys.version[:3]') 6 VER := $(shell /usr/bin/python -c 'import sys; print sys.version[:3]') 60 echo $(shell pwd) 61 echo $(shell ls -l)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ExportScreenshotAction.java | 26 import org.eclipse.swt.widgets.Shell; 45 Shell shell = AdtPlugin.getDisplay().getActiveShell(); local 50 FileDialog dialog = new FileDialog(shell, SWT.SAVE); 79 MessageDialog.openError(shell, "Error", "Image not available");
|
/external/v8/src/ |
d8.cc | 104 return Shell::ReadFromStdin(); 109 CounterMap* Shell::counter_map_; 110 i::OS::MemoryMappedFile* Shell::counters_file_ = NULL; 111 CounterCollection Shell::local_counters_; 112 CounterCollection* Shell::counters_ = &local_counters_; 113 i::Mutex* Shell::context_mutex_(i::OS::CreateMutex()); 114 Persistent<Context> Shell::utility_context_; 117 LineEditor* Shell::console = NULL; 118 Persistent<Context> Shell::evaluation_context_; 119 ShellOptions Shell::options [all...] |
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
ShellSizeAndPos.java | 25 import org.eclipse.swt.widgets.Shell;
45 public static void loadSizeAndPos(Shell shell, String prefix) {
60 for (Monitor monitor : shell.getDisplay().getMonitors()) {
63 // The shell is fully visible on this monitor. Just use that.
90 shell.setLocation(px, py);
91 shell.setSize(sx, sy);
100 public static void saveSizeAndPos(Shell shell, String prefix) {
103 Point loc = shell.getLocation(); [all...] |
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
AvdDetailsDialog.java | 33 import org.eclipse.swt.widgets.Shell; 45 public AvdDetailsDialog(Shell shell, AvdInfo avdInfo) { 46 super(shell, SWT.APPLICATION_MODAL, "AVD details"); 55 Shell shell = getShell(); local 56 GridLayoutBuilder.create(shell).columns(2); 57 GridDataBuilder.create(shell).fill(); 61 Composite c = new Composite(shell, SWT.NONE); 114 Label l = new Label(shell, SWT.SEPARATOR | SWT.HORIZONTAL) [all...] |
/external/mksh/src/ |
sh_flags.h | 44 /* -i interactive shell */ 50 /* -l login shell */ 70 /* ./. don't kill running jobs when login shell exits */ 90 /* -p use suid_profile; privileged shell */ 93 /* -r restricted shell */ 132 * anonymous flags: used internally by shell only (not visible to user) 138 /* ./. (internal) initial shell was interactive */
|
/external/icu4c/config/ |
dist.mk | 25 SVNVER=$(shell svnversion $(SVNTOP) | cut -d: -f1 | tr -cd 'a-zA-Z0-9') 26 SVNURL=$(shell svn info $(SVNTOP) | grep '^URL:' | cut -d: -f2-) 27 DISTY_VER=$(shell echo $(VERSION) | tr '.' '_' ) 29 DISTY_FILE_DIR=$(shell pwd)/$(DISTY_DIR) 63 svn export -r $(shell echo $(SVNVER) | tr -d 'a-zA-Z' ) $(SVNURL) "$(DISTY_TMP)/icu" 82 @(cd $(DISTY_CHECK) && tar xfpz $(DISTY_FILE_TGZ) && cd icu/source && $(SHELL) ./configure $(DISTCHECK_CONFIG_OPTIONS) && $(MAKE) check $(DISTCHECK_MAKE_OPTIONS) ) && (echo "!!! PASS: $(DISTY_FILE_TGZ)" )
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ProcessBuilderTest.java | 30 private static String shell() { method in class:ProcessBuilderTest 38 ProcessBuilder pb = new ProcessBuilder(shell(), "-c", "echo out; echo err 1>&2"); 52 ProcessBuilder pb = new ProcessBuilder(shell(), "-c", "echo $A"); 58 Process process = new ProcessBuilder(shell(), "-c", "echo out; echo err 1>&2").start(); 89 Process process = new ProcessBuilder(shell(), "-c", "echo out; echo err 1>&2").start(); 98 ProcessBuilder pb = new ProcessBuilder(shell(), "-c", "echo $A");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
InputDensityDialog.java | 30 import org.eclipse.swt.widgets.Shell; 43 InputDensityDialog(Shell parentShell) { 110 protected void configureShell(Shell shell) { 111 super.configureShell(shell); 112 shell.setText("Choose Density");
|
/docs/source.android.com/src/tech/debugging/ |
native-memory.md | 25 $ adb shell setprop libc.debug.malloc 1 26 $ adb shell stop 27 $ adb shell start
|
/development/ndk/samples/hello-jni/tests/src/com/example/HelloJni/ |
HelloJniTest.java | 11 * adb shell am instrument -w \
|