Home
last modified time | relevance | path

Searched refs:Shell (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/javasqlite/src/main/java/SQLite/
DShell.java18 public class Shell implements Callback { class
40 public Shell(PrintWriter pw, PrintWriter err) { in Shell() method in Shell
45 public Shell(PrintStream ps, PrintStream errs) { in Shell() method in Shell
51 Shell s = new Shell(this.pw, this.err); in clone()
160 tableName = Shell.sql_quote_dbl(str); in set_table_name()
162 tableName = Shell.sql_quote(str); in set_table_name()
178 case Shell.MODE_Line: in newrow()
190 case Shell.MODE_Column: in newrow()
220 case Shell.MODE_Semi: in newrow()
221 case Shell.MODE_List: in newrow()
[all …]
/external/vulkan-validation-layers/demos/smoke/
DShell.h35 class Shell {
37 Shell(const Shell &sh) = delete;
38 Shell &operator=(const Shell &sh) = delete;
39 virtual ~Shell() {} in ~Shell()
87 Shell(Game &game);
129 Shell *shell = reinterpret_cast<Shell *>(user_data); in debug_report_callback()
DShell.cpp33 Shell::Shell(Game &game) in Shell() function in Shell
50 void Shell::log(LogPriority priority, const char *msg) in log()
56 void Shell::init_vk() in init_vk()
67 void Shell::cleanup_vk() in cleanup_vk()
75 bool Shell::debug_report_callback(VkDebugReportFlagsEXT flags, in debug_report_callback()
101 void Shell::assert_all_instance_layers() const in assert_all_instance_layers()
121 void Shell::assert_all_instance_extensions() const in assert_all_instance_extensions()
141 bool Shell::has_all_device_layers(VkPhysicalDevice phy) const in has_all_device_layers()
160 bool Shell::has_all_device_extensions(VkPhysicalDevice phy) const in has_all_device_extensions()
179 void Shell::init_instance() in init_instance()
[all …]
DGame.h29 class Shell; variable
56 virtual void attach_shell(Shell &shell) { shell_ = &shell; } in attach_shell()
101 Shell *shell_;
DCMakeLists.txt39 Shell.cpp
40 Shell.h
/external/v8/src/
Dd8.cc179 bool FindInObjectList(Local<Object> object, const Shell::ObjectList& list) { in FindInObjectList()
234 friend class Shell;
250 CounterMap* Shell::counter_map_;
251 base::OS::MemoryMappedFile* Shell::counters_file_ = NULL;
252 CounterCollection Shell::local_counters_;
253 CounterCollection* Shell::counters_ = &local_counters_;
254 base::LazyMutex Shell::context_mutex_;
255 const base::TimeTicks Shell::kInitialTicks =
257 Global<Context> Shell::utility_context_;
258 base::LazyMutex Shell::workers_mutex_;
[all …]
Dd8-posix.cc467 void Shell::System(const v8::FunctionCallbackInfo<v8::Value>& args) { in System()
557 void Shell::ChangeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in ChangeDirectory()
582 void Shell::SetUMask(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetUMask()
663 void Shell::MakeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in MakeDirectory()
696 void Shell::RemoveDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in RemoveDirectory()
716 void Shell::SetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetEnvironment()
746 void Shell::UnsetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) { in UnsetEnvironment()
767 void Shell::AddOSMethods(Isolate* isolate, Local<ObjectTemplate> os_templ) { in AddOSMethods()
Dd8-windows.cc11 void Shell::AddOSMethods(Isolate* isolate, Local<ObjectTemplate> os_templ) {} in AddOSMethods()
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dgce_adb_wrapper.py31 self._instance_ip = self.Shell('getprop net.gce.ip_address').strip()
44 self.Shell('mkdir -p %s' % cmd_helper.SingleQuote(remote))
50 self.Shell('chmod 777 %s' %
55 self.Shell('mkdir -p %s' % cmd_helper.SingleQuote(parent_dir))
57 self.Shell('chmod 777 %s' % cmd_helper.SingleQuote(remote))
137 output = self.Shell(' '.join(cmd))
138 self.Shell('rm /data/local/tmp/tmp.apk')
Dadb_wrapper_devicetest.py40 output = self._adb.Shell('echo test', expect_status=0)
42 output = self._adb.Shell('echo test')
45 self._adb.Shell('echo test', expect_status=1)
55 self.assertEqual(self._adb.Shell('cat %s' % device_path), 'foo')
81 while 'package:' not in self._adb.Shell('pm path android'):
88 self._adb.Shell('start')
/external/chromium-trace/catapult/devil/devil/utils/
Dmock_calls_test.py34 def Shell(self, cmd): member in _DummyAdb
66 self.assertEquals(self.adb.Shell,
67 self.call_target(self.call.adb.Shell))
88 with self.patch_call(self.call.adb.Shell, return_value='hello'):
89 self.assertEquals('hello', self.adb.Shell('echo hello'))
96 with self.patch_call(self.call.adb.Shell, side_effect=ValueError):
98 self.adb.Shell('echo hello')
129 self.call.adb.Shell('echo hello'), self.ShellError()):
131 self.adb.Shell('echo hello')
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_utils_test.py261 with self.assertCall(self.call.adb.Shell('ls /root'), 'foo\n'):
265 with self.assertCall(self.call.adb.Shell('ls /root'), self.ShellError()):
309 self.call.adb.Shell('echo $EXTERNAL_STORAGE'), '/fake/storage/path\n'):
314 with self.assertCall(self.call.adb.Shell('echo $EXTERNAL_STORAGE'), '\n'):
353 (self.call.adb.Shell('dumpsys package com.android.chrome'),
364 (self.call.adb.Shell('dumpsys package com.android.chrome'), '')):
370 (self.call.adb.Shell('dumpsys package com.android.chrome'),
406 (self.call.adb.Shell('test -d /fake/storage/path'), ''),
420 (self.call.adb.Shell('test -d /fake/storage/path'), ''),
428 (self.call.adb.Shell('dumpsys wifi'),
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
DResizableDialog.java20 import org.eclipse.swt.widgets.Shell;
55 public ResizableDialog(Shell parentShell, AbstractUIPlugin plugin) { in ResizableDialog()
101 Shell windowShell = m_plugin.getWorkbench().getActiveWorkbenchWindow().getShell(); in getInitialLocation()
217 protected void configureShell(Shell newShell) { in configureShell()
DTextDialog.java19 import org.eclipse.swt.widgets.Shell;
41 public TextDialog(Shell parentShell, in TextDialog()
108 protected void configureShell(Shell newShell) { in configureShell()
DStringsDialog.java16 import org.eclipse.swt.widgets.Shell;
37 public StringsDialog(Shell parentShell, in StringsDialog()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DUiUtils.java15 import org.eclipse.swt.widgets.Shell;
31 public static void openWarning(Shell parent, String title, String message) { in openWarning()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
DStringPropertyDialog.java19 import org.eclipse.swt.widgets.Shell;
54 public StringPropertyDialog(Shell parentShell, Property property) throws Exception { in StringPropertyDialog()
124 protected void configureShell(Shell newShell) { in configureShell()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DPropertyTooltipTextProvider.java15 import org.eclipse.swt.widgets.Shell;
54 public void show(Shell shell) { in show()
DPropertyTableTooltipHelper.java19 import org.eclipse.swt.widgets.Shell;
32 private Shell m_tooltip;
145 m_tooltip = new Shell(m_table.getShell(), SWT.NO_FOCUS | SWT.ON_TOP | SWT.TOOL | SWT.SINGLE); in showTooltip()
DPropertyTooltipProvider.java21 import org.eclipse.swt.widgets.Shell;
55 public void show(Shell shell) { in show()
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/tasks/
Drelease.rake4 Bundler.ui = Bundler::UI::Shell.new(Thor::Shell::Basic.new)
/external/v8/tools/testrunner/network/
Ddistro.py29 class Shell(object): class
59 shells[shell] = Shell(shell)
/external/clang/include/clang/AST/
DExprOpenMP.h76 explicit OMPArraySectionExpr(EmptyShell Shell) in OMPArraySectionExpr() argument
77 : Expr(OMPArraySectionExprClass, Shell) {} in OMPArraySectionExpr()
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java523 sb.append(SQLite.Shell.sql_quote(tableNamePattern)); in getTables()
536 sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase())); in getTables()
604 SQLite.Shell.sql_quote(tableNamePattern) + in getColumns()
741 SQLite.Shell.sql_quote(table) + ")")); in getBestRowIdentifier()
744 SQLite.Shell.sql_quote(table) + ")")); in getBestRowIdentifier()
789 SQLite.Shell.sql_quote(iname) + ")")); in getBestRowIdentifier()
871 SQLite.Shell.sql_quote(table) + ")")); in getPrimaryKeys()
908 SQLite.Shell.sql_quote(iname) + ")")); in getPrimaryKeys()
943 SQLite.Shell.sql_quote(table) + ")")); in getPrimaryKeys()
1034 SQLite.Shell.sql_quote(table) + ")")); in getImportedKeys()
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCCombo3.java27 import org.eclipse.swt.widgets.Shell;
44 private final Shell m_popup;
78 Shell shell = getShell(); in CCombo3()
79 m_popup = new Shell(shell, SWT.NONE); in CCombo3()

1234567891011