Home
last modified time | relevance | path

Searched full:join (Results 1 - 25 of 906) sorted by relevance

12345678910>>...37

/foundation/arkui/ace_engine/build/tools/
H A Dbuild_js.py33 interface_target_path = os.path.join(target_out_path, "interface")
38 third_party_target_path = os.path.join(target_out_path, "third_party")
43 parse5_target_path = os.path.join(third_party_target_path, "parse5")
46 weex_loader_target_path = os.path.join(third_party_target_path, "weex-loader")
49 js2bundle_target_path = os.path.join(target_out_path, "developtools")
53 js2bundle_target_path = os.path.join(js2bundle_target_path, "ace_js2bundle")
55 js2bundle_target_path = os.path.join(js2bundle_target_path, "ace-loader")
58 js2bundle_node_modules_target_path = os.path.join(js2bundle_target_path, "node_modules")
62 target_i18n_path = os.path.join(js2bundle_target_path, "sample", "rich", "i18n")
65 source_i18n_path = os.path.join(project_pat
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_predicates.cpp36 * Adds a {@code cross join} condition to a SQL statement.
40 return Join(JoinType::CROSS, tableName); in CrossJoin()
44 * Adds an {@code inner join} condition to a SQL statement.
48 return Join(JoinType::INNER, tableName); in InnerJoin()
52 * Adds a {@code left outer join} condition to a SQL statement.
56 return Join(JoinType::LEFT, tableName); in LeftOuterJoin()
61 RdbPredicates *RdbPredicates::Join(int join, const std::string &tableName) in Join() argument
64 LOG_WARN("RdbPredicates join failed: table name is null or empty."); in Join()
68 joinTypes.push_back(GetGrammar(join)); in Join()
[all...]
/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/restore/
H A Dmedia_library_db_upgrade.h70 LEFT JOIN album_plugin \
89 INNER JOIN Photos \
178 INNER JOIN temp_album_bundle_name AS M \
180 LEFT JOIN PhotoAlbum AS PA2 \
182 LEFT JOIN album_plugin \
195 INNER JOIN temp_album_bundle_name AS M \
197 INNER JOIN PhotoAlbum AS PA2 \
199 INNER JOIN PhotoMap AS PM \
205 INNER JOIN temp_album_bundle_name AS M \
207 INNER JOIN PhotoMa
[all...]
H A Dphoto_album_clone.h61 LEFT JOIN PhotoMap \
63 LEFT JOIN Photos AS P1 \
65 LEFT JOIN Photos AS P2 \
72 LEFT JOIN PhotoMap \
74 LEFT JOIN Photos AS P1 \
76 LEFT JOIN Photos AS P2 \
H A Dphotos_clone.h90 INNER JOIN PhotoMap \
92 INNER JOIN Photos \
100 INNER JOIN PhotoMap \
102 INNER JOIN Photos \
111 LEFT JOIN PhotoAlbum \
120 LEFT JOIN PhotoAlbum \
143 INNER JOIN Photos \
/foundation/ability/ability_runtime/test/resource/benchmark/form_test_bundle/src/main/ets/model/
H A DLogger.ts21 console.log(`[${this.prefix}]: ${args.join('')}`);
25 console.info(`[${this.prefix}]: ${args.join('')}`);
29 console.debug(`[${this.prefix}]: ${args.join('')}`);
33 console.warn(`[${this.prefix}]: ${args.join('')}`);
37 console.error(`[${this.prefix}]: ${args.join('')}`);
/foundation/ability/form_fwk/test/resource/benchmark/form_test_bundle/src/main/ets/model/
H A DLogger.ts21 console.log(`[${this.prefix}]: ${args.join('')}`)
25 console.info(`[${this.prefix}]: ${args.join('')}`)
29 console.debug(`[${this.prefix}]: ${args.join('')}`)
33 console.warn(`[${this.prefix}]: ${args.join('')}`)
37 console.error(`[${this.prefix}]: ${args.join('')}`)
/foundation/ability/idl_tool/test/hdi_unittest/base/
H A Dtest_base.py33 self.idl_dir = os.path.join(self.working_dir, "foo")
34 self.output_dir = os.path.join(self.working_dir, "out")
35 self.target_dir = os.path.join(self.working_dir, "target")
62 return os.path.realpath(os.path.join(current_path,
75 self.output_dir = os.path.join(self.working_dir, output_dir)
78 self.target_dir = os.path.join(self.working_dir, target_dir)
118 output_path = os.path.join(self.working_dir, "hash_out")
121 self.set_output_path(os.path.join(output_path, "hash.txt"))
123 self.set_target_dir(os.path.join(self.working_dir, "hash_target"))
133 output_path = os.path.join(sel
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/theme/tools/
H A Dbuild_theme_code.py133 row = ''.join((row, values['base']))
137 row = ''.join((row, ' + '))
138 row = ''.join((row, str(values['offset'])))
139 row = ''.join((row, ';\n'))
140 new_content = ''.join((new_content, row))
152 ret = ''.join((ret, char[i]))
154 ret = ''.join((ret, char[i].capitalize()))
168 content = ''.join((content, '{'))
173 content = ''.join((content, ' nullptr,'))
175 content = ''.join((conten
[all...]
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_predicates.h43 * @brief Obtains the join clause in the predicates.
48 * @brief Adds a {@code cross join} condition to a SQL statement.
53 * @brief Adds an {@code inner join} condition to a SQL statement.
58 * @brief Adds a {@code left outer join} condition to a SQL statement.
76 RdbPredicates *Join(int join, const std::string &tableName);
/foundation/ability/idl_tool/test/hdi_unittest/hdi_dump_ast_test/
H A Dhdi_compile_opt_test_03.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
32 output_path = os.path.join(self.working_dir, "dump_ast_out")
35 self.set_output_path(os.path.join(output_path, "dump.txt"))
37 self.set_target_dir(os.path.join(self.working_dir, "dump_ast_target"))
H A Dhdi_compile_opt_test_02.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
32 output_path = os.path.join(self.working_dir, "dump_ast_out")
35 self.set_output_path(os.path.join(output_path, "dump.txt"))
37 self.set_target_dir(os.path.join(self.working_dir, "dump_ast_target"))
H A Dhdi_compile_opt_test_01.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
32 output_path = os.path.join(self.working_dir, "dump_ast_out")
35 self.set_output_path(os.path.join(output_path, "dump.txt"))
37 self.set_target_dir(os.path.join(self.working_dir, "dump_ast_target"))
/foundation/ability/idl_tool/test/hdi_unittest/hdi_hash_test/
H A Dhdi_compile_opt_test_03.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
32 output_path = os.path.join(self.working_dir, "hash_out")
35 self.set_output_path(os.path.join(output_path, "hash.txt"))
37 self.set_target_dir(os.path.join(self.working_dir, "hash_target"))
H A Dhdi_compile_opt_test_02.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
32 output_path = os.path.join(self.working_dir, "hash_out")
35 self.set_output_path(os.path.join(output_path, "hash.txt"))
37 self.set_target_dir(os.path.join(self.working_dir, "hash_target"))
H A Dhdi_compile_opt_test_01.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
32 output_path = os.path.join(self.working_dir, "hash_out")
35 self.set_output_path(os.path.join(output_path, "hash.txt"))
37 self.set_target_dir(os.path.join(self.working_dir, "hash_target"))
H A Dhash_bad_04.py24 file_path = os.path.join(work_dir, "foo", "v1_0", "IFoo.idl")
28 fail_output = os.path.join(self.target_dir, "fail_output.txt")
34 package_path = os.path.join(work_dir, "foo")
35 idl_dir = os.path.join(package_path, "v1_0")
/foundation/ability/idl_tool/test/sa_test/
H A Dtest_base.py33 self.idl_file = os.path.join(self.working_dir, "foo", "IFoo.idl")
34 self.output_dir = os.path.join(self.working_dir, "out")
35 self.target_dir = os.path.join(self.working_dir, "target")
47 return os.path.join(current_path, os.path.splitext(os.path.basename(self._file_name))[0])
56 self.output_dir = os.path.join(self.working_dir, output_dir)
59 self.target_dir = os.path.join(self.working_dir, target_dir)
62 self.idl_file = os.path.join(self.working_dir, "foo", idl_file)
120 if file_exists(os.path.join(self.target_dir, "output.txt")):
121 with open(os.path.join(self.target_dir, "output.txt"), 'r') as target_output:
173 with open(os.path.join(sel
[all...]
/foundation/ability/idl_tool/test/hdi_unittest/hdi_gen_test/
H A Dbig_d_2000_file_test.py64 idl_dir = os.path.join(self.get_working_dir(), "foo", "v1_0")
68 foo_file_dst_name = os.path.join(idl_dir, f"IFoo_{loop}.idl")
69 type_file_dst_name = os.path.join(idl_dir, f"Types_{loop}.idl")
78 idl_dir = os.path.join(self.get_working_dir(), "foo", "v1_0")
80 foo_file_dst_name = os.path.join(idl_dir, f"IFoo_{loop}.idl")
81 type_file_dst_name = os.path.join(idl_dir, f"Types_{loop}.idl")
88 idl_dir = os.path.join(work_dir, "foo", "v1_0")
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/
H A Dparser.pegjs2 = code:code+ { return code.join(""); }
19 = "(" c:logChar* ")" { return `(${c.join("")})`; }
20 / "/*" c:logChar* "*/" { return `**${c.join("")}**`; }
/foundation/communication/dsoftbus/tests/sdk/bus_center/demo/bus_center/
H A Djoin_lnn_demo.c19 * @brief Provides the sample code for device join and leave lnn
62 // Device B is found by coap or ble, we can get it's addr info before join lnn. in main()
71 * 1. Device A calls JoinLNN() to Join Lnn with B. in main()
74 printf("[demo]join lnn result = %d\n", ret); in main()
77 * 2. When finish join lnn, device A return the lnn result via OnJoinLnnDone(). in main()
/foundation/arkui/ace_engine/test/component_test/tools/previewer_host/main/
H A Dgitee_rest_api.js91 const outputPath = path.join(outputDir, fileName);
94 fs.mkdirSync(path.join(outputDir, fileName), { recursive: true });
135 path.join(downloadPath, "ohos-sdk.zip")).then((res, rej) => {
156 let etsPath = path.join(sdkPath, "ets\\api");
176 await extractLargeZip(path.join(downloadPath, "ohos-sdk.zip"), downloadPath);
179 ohosSdkPath = path.join(downloadPath, 'windows');
181 ohosSdkPath = path.join(downloadPath, 'linux');
195 let etsFile = path.join(etsPath, "@ohos.arkui.componentTest.d.ts");
/foundation/resourceschedule/ffrt/benchmarks/
H A Dplot.py33 avg_base = base['_'.join([label, 'base', thread])].mean()
36 data_base = [float(base['_'.join([label, 'base', thread])][i])
38 ax.plot(stall, data_base, 's-', label='_'.join([label, 'base']))
41 ax.set_title(''.join([title, '[R:', ratio, ']']))
49 base = pandas.read_csv(os.path.join(path, 'base.csv'))
50 t1 = pandas.read_csv(os.path.join(path, 'perf_thread1.csv'))
51 t8 = pandas.read_csv(os.path.join(path, 'perf_thread8.csv'))
103 fig.savefig(os.path.join(path, out))
/foundation/ability/dmsfwk/services/dtbschedmgr/test/samples/continuationManualTestSuite/entry/src/main/ets/MainAbility/
H A DLogger.ts22 console.debug(`[${this.prefix}] ${args.join('')}`);
25 console.log(`[${this.prefix}] ${args.join('')}`);
28 console.error(`[${this.prefix}] ${args.join('')}`);
/foundation/ability/dmsfwk/services/dtbschedmgr/test/missionCenterDemo/dmsDemo/entry/src/main/ets/Util/
H A DLogger.ts22 console.debug(`[${this.prefix}] ${args.join('')}`);
25 console.log(`[${this.prefix}] ${args.join('')}`);
28 console.error(`[${this.prefix}] ${args.join('')}`);

Completed in 10 milliseconds

12345678910>>...37