Home
last modified time | relevance | path

Searched refs:cwd (Results 1 – 7 of 7) sorted by relevance

/frameworks/webview/chromium/tools/
Dmerge_common.py96 def __init__(self, returncode, cmd, cwd, stdout, stderr): argument
100 self.cwd = cwd
107 (self.cmd, self.returncode, self.cwd, self.stdout, self.stderr))
114 def GetCommandStdout(args, cwd=REPOSITORY_ROOT, ignore_errors=False): argument
129 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
135 raise CommandError(p.returncode, ' '.join(args), cwd, stdout, stderr)
139 cwd=REPOSITORY_ROOT): argument
152 status = GetCommandStdout(['git', 'status', '--porcelain'], cwd=cwd)
159 conflicts_deleted_by_us, cwd=cwd)
170 GetCommandStdout(['git', 'add', '-f'] + conflicts_renamed_by_them, cwd=cwd)
[all …]
Dmerge_to_master.py43 'goog', 'history'], cwd=dest_dir)
46 '-t', 'goog/' + target], cwd=dest_dir)
49 cwd=dest_dir)
52 cwd=dest_dir).strip()
54 cwd=dest_dir).strip()
61 'HEAD..' + merge_sha1], cwd=dest_dir):
66 cwd=dest_dir, ignore_errors=True)
70 dirs_to_prune, cwd=dest_dir)
73 (svn_revision, AUTOGEN_MESSAGE), cwd=dest_dir)
75 cwd=dest_dir).strip()
[all …]
Dmerge_from_chromium.py183 cwd=dest_dir)
187 merge_common.GetCommandStdout(fetch_args, cwd=dest_dir)
189 cwd=dest_dir):
193 cwd=dest_dir, ignore_errors=True)
196 cwd=dest_dir, unattended=unattended)
234 exclude_list, cwd=dest_dir)
238 cwd=dest_dir)
269 '*.host.*.mk', '*.tmp'], cwd=dest_dir)
280 cwd=os.path.join(merge_common.REPOSITORY_ROOT, path))
288 ignore_errors=True, cwd=dest_dir)
[all …]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DCreateDirectoryFragment.java74 final DocumentInfo cwd = activity.getCurrentDirectory(); in onCreateDialog()
76 new CreateDirectoryTask(activity, cwd, displayName).executeOnExecutor( in onCreateDialog()
77 ProviderExecutor.forAuthority(cwd.authority)); in onCreateDialog()
91 DocumentsActivity activity, DocumentInfo cwd, String displayName) { in CreateDirectoryTask() argument
93 mCwd = cwd; in CreateDirectoryTask()
DDocumentsActivity.java541 final DocumentInfo cwd = getCurrentDirectory(); in onPrepareOptionsMenu() local
552 sort.setVisible(cwd != null); in onPrepareOptionsMenu()
579 createDir.setVisible(cwd != null && cwd.isCreateSupported()); in onPrepareOptionsMenu()
583 if (cwd == null) { in onPrepareOptionsMenu()
589 SaveFragment.get(fm).setSaveEnabled(cwd != null && cwd.isCreateSupported()); in onPrepareOptionsMenu()
827 final DocumentInfo cwd = getCurrentDirectory(); in getCurrentExecutor() local
828 if (cwd != null && cwd.authority != null) { in getCurrentExecutor()
829 return ProviderExecutor.forAuthority(cwd.authority); in getCurrentExecutor()
842 final DocumentInfo cwd = getCurrentDirectory(); in onCurrentDirectoryChanged() local
846 if (cwd == null) { in onCurrentDirectoryChanged()
[all …]
/frameworks/base/tools/layoutlib/rename_font/
Dbuild_font.py73 cwd = os.getcwd()
78 os.chdir(cwd)
/frameworks/base/tools/aidl/
Daidl.cpp177 char cwd[MAXPATHLEN]; local
188 fn = getcwd(cwd, sizeof(cwd));