/test/xts/acts/distributeddatamgr/crossplatform/relationalstoreetstest/entry/src/ohosTest/ets/test/ |
H A D | RdbStoreQuerySql.test.ets | 160 rdbStore.querySql("SELECT * FROM user INNER JOIN Book ON user.userId = Book.id WHERE Book.name = 'sanguo'", async (err, resultSet) => { 193 rdbStore.querySql("SELECT * FROM user INNER JOIN Book ON user.userId = Book.id WHERE Book.name = ?", ["sanguo"], async (err, resultSet) => { 226 let resultSet = await rdbStore.querySql("SELECT * FROM user INNER JOIN Book ON user.userId = Book.id WHERE Book.name = 'sanguo'"); 251 let resultSet = await rdbStore.querySql("SELECT * FROM user INNER JOIN Book ON user.userId = Book.id WHERE Book.name = ?", ["sanguo"]); 278 rdbStore.querySql("SELECT * FROM user INNER JOIN Book ON user.userId = Book.id WHERE Book.name = 'hongloumeng'", async (err, resultSet) => { 309 rdbStore.querySql("SELECT * FROM user INNER JOIN Book ON user.userId = Book.id WHERE Book.name = 'maoxuan'", async (err, resultSet) => {
|
/third_party/mesa3d/src/amd/common/ |
H A D | sid_tables.py | 35 AMD_REGISTERS = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), "../registers")) 42 return "'" + "', '".join(string) + "', '\\0'," 78 ', '.join(str(idx) for idx in sorted(te[2])) 85 '\n'.join('\t' + fragment for fragment in fragments) 132 ' '.join((str(elt) + ',') for elt in self.table[idxs[i]:idxs[i+1]]) 140 '\n'.join(fragments)
|
/third_party/jerryscript/tools/ |
H A D | gen-magic-strings.py | 33 MAGIC_STRINGS_INI = os.path.join(PROJECT_DIR, 'jerry-core', 'lit', 'lit-magic-strings.ini') 34 MAGIC_STRINGS_INC_H = os.path.join(PROJECT_DIR, 'jerry-core', 'lit', 'lit-magic-strings.inc.h') 147 for root, _, files in os.walk(os.path.join(PROJECT_DIR, 'jerry-core')): 151 process_file(os.path.join(root, fname)) 196 return ' \\\n|| '.join(' && '.join(g.strip() for g in sorted(guard))
|
/third_party/node/test/pummel/ |
H A D | test-policy-integrity-worker-commonjs.js | 112 const configDirPath = path.join( 116 const tmpPolicyPath = path.join( 127 const manifestPath = path.join(configDirPath, policyPath); 131 const filePath = path.join(configDirPath, resourcePath); 134 integrity: integrities.join(' '), 214 const enoentFilepath = path.join(tmpdir.path, 'enoent');
|
H A D | test-policy-integrity-worker-module.js | 112 const configDirPath = path.join( 116 const tmpPolicyPath = path.join( 127 const manifestPath = path.join(configDirPath, policyPath); 131 const filePath = path.join(configDirPath, resourcePath); 134 integrity: integrities.join(' '), 214 const enoentFilepath = path.join(tmpdir.path, 'enoent');
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | db.js | 101 'join', 427 let dirPath = fsPath.join(self.outputDir, expression.type); 435 let filePath = fsPath.join(dirPath, sha1sum.digest('hex') + '.json'); 455 fsPath.join(this.outputDir, 'index.json'), 464 fs.readFileSync(fsPath.join(outputDir, 'index.json'), 'utf-8')); 476 let path = fsPath.join(
|
/third_party/node/deps/v8/tools/sanitizers/ |
H A D | sancov_formatter_test.py | 26 BUILD_DIR = os.path.join(BASE_DIR, 'out', 'Release') 140 os.path.join('src', 'baz', 'bar.h.json'), 150 os.path.join('src', 'baz.cc.json'), 160 os.path.join('src', 'foo.cc.json'), 177 include=([os.path.join(LOCATION, 'sancov_formatter.py')])) 217 full_path = os.path.join(output_dir, file_name)
|
/third_party/node/deps/npm/lib/commands/ |
H A D | config.js | 30 const val = arg.length ? arg.join('=') 193 this.npm.output(out.join('\n')) 243 ${data.split('\n').sort(localeCompare).join('\n').trim()} 250 `.split('\n').join(EOL) 302 }).join('\n') 362 this.npm.output(msg.join('\n').trim())
|
/third_party/rust/crates/clap/clap_mangen/src/ |
H A D | render.rs | 67 line.push(italic(value.join(" "))); 105 header.push(italic(value.join(" "))); 147 roman(possible_values_text.join(", ")), 166 header.push(italic(value.join(" "))); 215 roman(possible_values_text.join(", ")), 322 .join(","); in option_default_values()
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | grammar.py | 49 return "\n".join(str(rule) for name, rule in self.rules.items()) 59 return "\n".join(lines) 93 return "\n".join(lines) 151 return " | ".join(str(alt) for alt in self.alts) 176 core = " ".join(str(item) for item in self.items) 188 return f"Alt({', '.join(args)})"
|
/third_party/python/Lib/test/ |
H A D | make_ssl_certs.py | 179 with open(os.path.join('cadir','index.txt'),'a+') as f: 181 with open(os.path.join('cadir','crl.txt'),'a+') as f: 183 with open(os.path.join('cadir','index.txt.attr'),'w+') as f: 186 with open(os.path.join('cadir','serial'), 'w') as f: 282 cert, key = make_cert_key('allsans', sign=True, extra_san='\n'.join(extra_san)) 299 cert, key = make_cert_key('idnsans', sign=True, extra_san='\n'.join(extra_san))
|
/third_party/python/Lib/ |
H A D | filecmp.py | 157 a_path = os.path.join(self.left, x) 158 b_path = os.path.join(self.right, x) 197 a_x = os.path.join(self.left, x) 198 b_x = os.path.join(self.right, x) 273 ax = os.path.join(a, x) 274 bx = os.path.join(b, x)
|
H A D | string.py | 41 word using capitalize, and join the capitalized words using 42 join. If the optional second argument sep is absent or None, 45 sep is used to split and join the words. 48 return (sep or ' ').join(map(str.capitalize, s.split(sep))) 99 colno = i - len(''.join(lines[:-1])) 249 return ''.join(result), auto_arg_index
|
/third_party/typescript/src/testRunner/unittests/config/ |
H A D | commandLineParsing.ts | 6 baseline.push(commandLine.join(" "));
13 baseline.push(parsed.fileNames.join());
20 Harness.Baseline.runBaseline(`config/commandLineParsing/parseCommandLine/${subScenario}.js`, baseline.join("\n"));
197 baseline.push(commandLine.join(" "));
204 baseline.push(parsed.projects.join());
211 Harness.Baseline.runBaseline(`config/commandLineParsing/parseBuildOptions/${subScenario}.js`, baseline.join("\n"));
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_threaded_import.py | 208 with open(os.path.join(TESTFN, name + ".py"), "wb") as f: 224 t1.join() 225 t2.join() 236 t.join() 253 fn = os.path.join(os.path.dirname(__file__), 259 fn = os.path.join(os.path.dirname(__file__),
|
H A D | util.py | 37 file_path = os.path.join(path, filename) 109 path = os.path.join(pkg_dir, name + '.py') 159 location = os.path.join(cwd, name) 161 modpath = os.path.join(location, '__init__.py') 373 file_path = os.path.join(file_path, directory) 377 file_path = os.path.join(file_path, name_parts[-1] + '.py')
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | filters.py | 110 return u'&'.join(unicode_urlencode(k) + '=' + 177 rv = u' '.join( 200 return ''.join( 385 {{ [1, 2, 3]|join('|') }} 388 {{ [1, 2, 3]|join }} 391 It is also possible to join certain attributes of an object: 395 {{ users|join(', ', attribute='username') }} 405 return text_type(d).join(imap(text_type, value)) 421 return d.join(value) 424 return soft_unicode(d).join(ima [all...] |
/third_party/littlefs/scripts/ |
H A D | perfbd.py | 177 print(' '.join(shlex.quote(c) for c in cmd)) 226 print(' '.join(shlex.quote(c) for c in cmd)) 243 files[int(m.group('no'))] = os.path.join( 664 ','.join(str(getattr(r, k) or '') for k in by): r 667 ','.join(str(getattr(r, k) or '') for k in by): r 697 ','.join(by), 748 entry.append(' (%s)' % ', '.join( 754 entry.append(' (%s)' % ', '.join( 811 ' '.join('%*s' % (w, x) 819 ','.join(st [all...] |
/test/testfwk/xdevice/plugins/devicetest/runner/ |
H A D | prepare.py | 74 xml_path = os.path.join(self.project.prepare.path, 'prepare.xml') 145 prepare_path = os.path.join( 149 test_cls_name = os.path.join(prepare_path, cls + '.py') 151 test_cls_name = os.path.join(prepare_path, 154 py_path = os.path.join(prepare_path, cls + '.py')
|
/test/xts/tools/build/ |
H A D | utils.py | 186 files.append(os.path.join(dir_path, filename)) 204 gradle_dir = os.path.join(project_path, "gradle") 224 gradle_output_dir = os.path.join(gradle_dir, "entry", "build", "outputs") 238 file_util.copy_file(os.path.join(root, file), 239 os.path.join(out_put_dir.rstrip(','),
|
/third_party/node/deps/v8/third_party/markupsafe/ |
H A D | __init__.py | 107 def join(self, seq): member in Markup 108 return self.__class__(text_type.join(self, map(self.escape, seq))) 109 join.__doc__ = text_type.join.__doc__ 153 stripped = u' '.join(_striptags_re.sub('', self).split())
|
/third_party/node/deps/v8/tools/ |
H A D | adb-d8.py | 92 os.path.join(build_dir, filename), 111 d8_arg_str = " ".join("'{}'".format(a) for a in d8_args) 114 # Don't use os.path.join for d8 because we care about the device's os, not 125 print("Running {}".format(" ".join(cmd))) 159 adb = os.path.join(
|
/third_party/node/tools/gyp/ |
H A D | test_gyp.py | 24 result.extend([os.path.join(root, f) for f in files if is_test_name(f)]) 82 extra_path = os.pathsep.join(extra_path) 162 print(" Linux %s" % " ".join(platform.linux_distribution())) 225 print("\n".join(f" {line}" for line in stdout.splitlines())) 251 print("\t" + "\n\t".join(sorted(self.failures)))
|
/third_party/node/tools/inspector_protocol/markupsafe/ |
H A D | __init__.py | 107 def join(self, seq): member in Markup 108 return self.__class__(text_type.join(self, map(self.escape, seq))) 109 join.__doc__ = text_type.join.__doc__ 153 stripped = u' '.join(_striptags_re.sub('', self).split())
|
/third_party/mesa3d/src/mesa/main/ |
H A D | get_hash_generator.py | 35 param_desc_file = os.path.join(os.path.dirname(__file__), "get_hash_params.py") 37 GLAPI = os.path.join(os.path.dirname(__file__), "..", "..", "mapi", "glapi", "gen") 91 print(" " * 4 + ", ".join(idx_val) + ",") 150 (", ".join(set(["apis", "params"]) - set(param_block)), 156 (param_desc_file, ",".join(valid_apis - gl_apis)))
|