/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
D | descriptor.py | 47 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/ |
D | typeCreation.cpp | 22 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/ |
D | typeCreation.cpp | 23 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/ |
D | README.md | 25 * **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. 43 …search for instructions to one block. The block is defined by lines "props: ..." and "succs: ...".…
|
/arkcompiler/ets_frontend/es2panda/ir/expressions/literals/ |
D | stringLiteral.cpp | 40 auto search = checker->StringLiteralMap().find(str_); in Check() local 41 if (search != checker->StringLiteralMap().end()) { in Check() 42 return search->second; in Check()
|
D | bigIntLiteral.cpp | 39 auto search = checker->BigintLiteralMap().find(src_); in Check() local 40 if (search != checker->BigintLiteralMap().end()) { in Check() 41 return search->second; in Check()
|
D | numberLiteral.cpp | 52 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/ |
D | README.md | 25 * **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/ |
D | regresssstring.js | 27 str.__proto__.__proto__[Symbol.search] = 29 str.search(str);
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | test262util.py | 121 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/ |
D | run_check_atomic_format.py | 37 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/ |
D | clang_tidy_check.py | 293 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/ |
D | lastIndexOf.ets.j2 | 23 * @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)
|
D | indexOf.ets.j2 | 23 * @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
|
D | search.ets.j2 | 34 * @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
|
D | array.sh | 39 search.ets.j2
|
D | typedUArray.ets.j2 | 473 * @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 …]
|
D | typedArray.ets.j2 | 510 * @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/ |
D | circuit.cpp | 453 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/ |
D | doxygen_style_check.py | 51 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/ |
D | symbol_api.ts | 22 let g = Symbol.search;
|
/arkcompiler/ets_frontend/ets2panda/linter/test/ |
D | symbol_api.ts | 22 let g = Symbol.search;
|
/arkcompiler/ets_runtime/test/moduletest/weakcollectionswithsymbol/ |
D | weakrefforsymbol.js | 44 Symbol.search,
|
D | weaksetsymbolvalue.js | 49 Symbol.search,
|
D | weakmapsymbolkey.js | 53 Symbol.search,
|