Home
last modified time | relevance | path

Searched refs:prefix_with (Results 1 – 6 of 6) sorted by relevance

/external/google-fruit/extras/scripts/
Drun_benchs.sh6 prefix_with() ( function
78 print_stats "${SETUP_TIMES[@]}" | prefix_with "fruit_setup_time"
79 print_stats "${REQUEST_TIMES[@]}" | prefix_with "fruit_request_time"
87 print_stats "${NEW_DELETE_TIMES[@]}" | prefix_with "new_delete_time"
88 ) | prefix_with $N
102 print_stats "${COMPILE_TIMES[@]}" | prefix_with "fruit_compile_time"
103 ) | prefix_with "$[$N * 5]"
106 ) | prefix_with $compiler
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/
Danalyze.py104 def prefix_with(constant, pieces): function
397 result.extend(prefix_with('-load', args.plugins))
405 return prefix_with('-Xclang', result)
659 analyzer_options = prefix_with('-analyzer-config', ctu_options)
660 direct_options = prefix_with('-Xanalyzer', analyzer_options)
/external/clang/tools/scan-build-py/libscanbuild/
Danalyze.py198 def prefix_with(constant, pieces): function
228 result.extend(prefix_with('-load', args.plugins))
238 return prefix_with('-Xclang', result)
/external/rust/cxx/syntax/
Dsymbol.rs44 pub fn prefix_with(&self, prefix: &str) -> Symbol { in prefix_with() method
/external/llvm-project/clang/tools/scan-build-py/tests/unit/
Dtest_analyze.py340 res = sut.prefix_with(0, [])
344 res = sut.prefix_with(0, [1, 2, 3])
/external/rust/cxx/gen/src/
Dwrite.rs1337 UniquePtr::CxxVector(element) => element.to_mangled(types).prefix_with("std$vector$"), in to_mangled()