Home
last modified time | relevance | path

Searched refs:search (Results 1 – 25 of 89) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Ddescriptor.py47 header_comment = self.header.search(self.content)
58 match = self.includes.search(header)
61 match = self.includes2.search(header)
66 match = self.flags.search(header)
70 match = self.negative.search(header)
75 match = self.spec.search(header)
79 match = self.issues.search(header)
/arkcompiler/ets_frontend/ets2panda/checker/ts/
DtypeCreation.cpp22 auto search = numberLiteralMap_.find(value); in CreateNumberLiteralType() local
23 if (search != numberLiteralMap_.end()) { in CreateNumberLiteralType()
24 return search->second; in CreateNumberLiteralType()
34 auto search = bigintLiteralMap_.find(str); in CreateBigintLiteralType() local
35 if (search != bigintLiteralMap_.end()) { in CreateBigintLiteralType()
36 return search->second; in CreateBigintLiteralType()
46 auto search = stringLiteralMap_.find(str); in CreateStringLiteralType() local
47 if (search != stringLiteralMap_.end()) { in CreateStringLiteralType()
48 return search->second; in CreateStringLiteralType()
/arkcompiler/ets_frontend/es2panda/typescript/core/
DtypeCreation.cpp23 auto search = numberLiteralMap_.find(value); in CreateNumberLiteralType() local
24 if (search != numberLiteralMap_.end()) { in CreateNumberLiteralType()
25 return search->second; in CreateNumberLiteralType()
35 auto search = bigintLiteralMap_.find(str); in CreateBigintLiteralType() local
36 if (search != bigintLiteralMap_.end()) { in CreateBigintLiteralType()
37 return search->second; in CreateBigintLiteralType()
47 auto search = stringLiteralMap_.find(str); in CreateStringLiteralType() local
48 if (search != stringLiteralMap_.end()) { in CreateStringLiteralType()
49 return search->second; in CreateStringLiteralType()
/arkcompiler/runtime_core/static_core/tests/checked/
DREADME.md25 * **EVENT** (event: pattern) search event within all events
26 * **EVENT_NEXT** (event: pattern) ordered search event, i.e. search from position of the last found…
32 * **INST** (inst: pattern) search specified instruction in the ir dump file specified by commands `…
35 * **IR_COUNT** (inst: string) search specified phrase and counts the number in the ir dump file spe…
36 * **BLOCK_COUNT** () equal to `IR_COUNT ("BB ")`, i.e. search specified basic blocks and counts the…
41 * **ASM/ASM_NEXT/ASM_NOT/ASM_NEXT_NOT** (inst: pattern) same as other similar checks, but search on…
42 If none of these checks were specified, then search will be applied in the whole disasm file.
43search for instructions to one block. The block is defined by lines "props: ..." and "succs: ...".…
/arkcompiler/ets_frontend/es2panda/ir/expressions/literals/
DstringLiteral.cpp40 auto search = checker->StringLiteralMap().find(str_); in Check() local
41 if (search != checker->StringLiteralMap().end()) { in Check()
42 return search->second; in Check()
DbigIntLiteral.cpp39 auto search = checker->BigintLiteralMap().find(src_); in Check() local
40 if (search != checker->BigintLiteralMap().end()) { in Check()
41 return search->second; in Check()
DnumberLiteral.cpp52 auto search = checker->NumberLiteralMap().find(number_); in Check() local
53 if (search != checker->NumberLiteralMap().end()) { in Check()
54 return search->second; in Check()
/arkcompiler/runtime_core/tests/checked/
DREADME.md25 * **EVENT** (event: pattern) search event within all events
26 * **EVENT_NEXT** (event: pattern) ordered search event, i.e. search from position of the last found…
32 * **INST** (inst: pattern) search specified instruction in the ir dump file specified by commands `…
35 * **IR_COUNT** (inst: string) search specified phrase and counts the number in the ir dump file spe…
36 * **BLOCK_COUNT** () equal to `IR_COUNT ("BB ")`, i.e. search specified basic blocks and counts the…
41 * **ASM/ASM_NEXT/ASM_NOT/ASM_NEXT_NOT** (inst: pattern) same as other similar checks, but search on…
42 If none of these checks were specified, then search will be applied in the whole disasm file.
/arkcompiler/ets_runtime/test/moduletest/regresssstring/
Dregresssstring.js27 str.__proto__.__proto__[Symbol.search] =
29 str.search(str);
/arkcompiler/ets_frontend/es2panda/test/
Dtest262util.py121 header_comment = self.header.search(content)
126 match = self.includes.search(header)
130 match = self.includes2.search(header)
136 match = self.flags.search(header)
143 match = self.negative.search(header)
/arkcompiler/runtime_core/scripts/
Drun_check_atomic_format.py37 parsed_res = re.search(r"memory_order_(\w+)", parsed_line)
53 res = re.search(r"// Atomic with (\w+) order reason: (.+)", line)
59 res = re.search(r"(.*)(\.|->)(store|load|fetch_add|fetch_sub|"
/arkcompiler/runtime_core/static_core/scripts/clang-tidy/
Dclang_tidy_check.py293 if regexp.search(file_path):
318 if regexp and not regexp.search(file_path):
325 sysroot = re.search(r' --sysroot[\w\d\S]+', compile_args)
347 if not regexp.search(file_path):
373 if not regexp.search(keys):
422 match = regexp.search(compile_args)
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
DlastIndexOf.ets.j223 * @param smallerIndex an index of arr to end search with
25 * @param largerIndex a last index to start search in arr
70 * @param fromIndex an index of arr to begin search with (including, search is performed backwards)
DindexOf.ets.j223 * @param startIndex an index of arr to begin search with
25 * @param endIndex a last index to stop search in arr, i.e. arr[endIndex] is not checked
58 * @param fromIndex an index of arr to begin search with
Dsearch.ets.j234 * @param startIndex an index of arr to begin search with
36 * @param endIndex a last index to stop search in arr, i.e. arr[endIndex] is not checked
93 * @param startIndex an index of arr to begin search with
95 * @param endIndex a last index to stop search in arr, i.e. arr[endIndex] is not checked
152 * @param startIndex an index of arr to begin search with
154 * @param endIndex a last index to stop search in arr, i.e. arr[endIndex] is not checked
211 * @param startIndex an index of arr to begin search with
213 * @param endIndex a last index to stop search in arr, i.e. arr[endIndex] is not checked
Darray.sh39 search.ets.j2
DtypedUArray.ets.j2473 * @param e search element
475 * @param fromIndex start index to search from
486 * @param e search element
488 * @param fromIndex start index to search from
504 * @param e search element
516 * @param e search element
528 * @param e search element
530 * @param fromIndex start index to search from
541 * @param e search element
543 * @param fromIndex start index to search from
[all …]
DtypedArray.ets.j2510 * @param e search element
512 * @param fromIndex start index to search from
523 * @param e search element
525 * @param fromIndex start index to search from
542 * @param e search element
554 * @param e search element
565 * @param e search element
567 * @param fromIndex start index to search from
578 * @param e search element
580 * @param fromIndex start index to search from
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit.cpp453 auto search = constantCache_.find({machineType, value, type}); in GetConstantGate() local
454 if (search != constantCache_.end()) { in GetConstantGate()
455 return search->second; in GetConstantGate()
464 auto search = constantCache_.find({machineType, value, type}); in ClearConstantCache() local
465 if (search != constantCache_.end()) { in ClearConstantCache()
466 constantCache_.erase(search); in ClearConstantCache()
479 auto search = initialEnvCache_.find(jsFunc); in GetInitialEnvGate() local
480 if (search != initialEnvCache_.end()) { in GetInitialEnvGate()
/arkcompiler/runtime_core/static_core/scripts/code_style/
Ddoxygen_style_check.py51 if comm.search(s):
88 pattern_to_check = re.search(r' */\*\* *\n( *\* *[^\n]*\n)+ *\*/', strings[i])
119 pattern_to_check = re.search(r' */// [^ ]+?[^\n]*', lines[line_num - 1])
152 pattern_to_check = re.search(r' *[^ \n]+[^\n]* +///< [^\n]+', lines[line_num - 1])
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dsymbol_api.ts22 let g = Symbol.search;
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dsymbol_api.ts22 let g = Symbol.search;
/arkcompiler/ets_runtime/test/moduletest/weakcollectionswithsymbol/
Dweakrefforsymbol.js44 Symbol.search,
Dweaksetsymbolvalue.js49 Symbol.search,
Dweakmapsymbolkey.js53 Symbol.search,

1234