Searched refs:s (Results 1 – 25 of 35) sorted by relevance
12
/build/misc/mac/ |
D | find_sdk.py | 77 sdks = [re.findall('^MacOSX(1[0,1,2,3,4]\.\d+)\.sdk$', s) for s in 79 sdks = [s[0] for s in sdks if s] # [['10.5'], ['10.6']] => ['10.5', '10.6'] 80 sdks = [s for s in sdks # ['10.5', '10.6'] => ['10.6'] 81 if list(parse_version(s)) >= list(parse_version(min_sdk_version))]
|
/build/rust/tests/test_bindgen_test/test_for_h/ |
D | main.rs | 44 let mut s = ::std::mem::MaybeUninit::<Self>::uninit(); in default() localVariable 46 ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); in default() 47 s.assume_init() in default()
|
/build/misc/overrides/ |
D | build.gni | 6 # Chromium specific targets in a client project's GN file etc. 12 # Some non-Chromium builds don't use Chromium's third_party/binutils.
|
/build/scripts/ |
D | cargo2gn.py | 68 def escape_quotes(s: str): 70 return s.replace('"', '\\"') 77 def pkg_to_crate_name(s: str): 78 return s.replace('-', '_').replace('.', '_') 114 def unquote(s): argument 116 if s and len(s) > 1 and s[0] == '"' and s[-1] == '"': 117 return s[1:-1] 118 return s 121 def remove_version_suffix(s): argument 123 if VERSION_SUFFIX_RE.match(s): [all …]
|
/build/config/coverage/ |
D | coverage.gni | 8 # Enable Clang's Source-based Code Coverage.
|
D | BUILD.gn | 14 # of binary size enables building Chrome's large unit test targets on
|
/build/common/asan/ |
D | build_mixed_asan.sh | 75 start_time=$(date +%s) 84 step1_time=$(date +%s) 90 step2_time=$(date +%s) 263 step3_time=$(date +%s)
|
/build/lite/config/subsystem/aafwk/ |
D | config.gni | 22 # configuration for aafwk created ams task's stack size.
|
/build/ohos/notice/ |
D | notice.gni | 107 foreach(s, source_list) { 110 rebase_path(s, root_build_dir),
|
D | license | 81 Contribution(s) alone or by combination of their Contribution(s) 82 with the Work to which such Contribution(s) was submitted. If You
|
/build/config/clang/ |
D | BUILD.gn | 11 # On Windows, the plugin is built directly into clang, so there's
|
/build/toolchain/mac/ |
D | BUILD.gn | 52 # The host toolchain value computed by the default toolchain's setup 54 # ensure that it's always the same, regardless of the values that may be 171 command = "$_ar {{arflags}} -r -c -s -D {{output}} \"@$rspfile\"" 205 …replace_command = "if ! cmp -s \"$temporary_tocname\" \"$tocname\"; then mv \"$temporary_tocname\"… 276 # Note about -filelist: Apple's linker reads the file list file and
|
/build/scripts/util/ |
D | md5_check.py | 239 changed = [s for s in ndiff if not s.startswith(' ')]
|
D | build_utils.py | 559 def convert_pyc_to_py(s): argument 560 if s.endswith('.pyc'): 561 return s[:-1] 562 return s
|
/build/tools/component_tools/ |
D | generate_kconfig.py | 33 depends on %s\n'
|
/build/config/linux/ |
D | pkg_config.gni | 45 # in similar fashion by setting the `system_libdir` variable in the build's 59 "-s",
|
D | BUILD.gn | 63 # necessary to expose Chrome's custom operator new() and operator delete() (and
|
/build/lite/toolchain/ |
D | iccarm.gni | 46 asm_outfile = "{{output}}.s" 59 asm_outfile = "{{output}}.s"
|
/build/ohos/ndk/ |
D | ndk.gni | 211 # Notice file for different toolchains are the same, it's enough to 255 # NOTE: It's an internal template, not designed for everyone use. 291 foreach(s, invoker.sources) { 293 "/" + get_path_info(s, "file") + ".txt" ]
|
/build/toolchain/ |
D | toolchain.gni | 63 "Using Xcode's clang is only supported in iOS builds") 96 # While other "tool"s in a toolchain are specific to the target of that
|
D | concurrent_links.gni | 6 # There's no way to enforce this exactly, but all toolchains are processed
|
/build/config/posix/ |
D | BUILD.gn | 64 # If it was not disabled, it would conflict with libc++'s abs() 70 # Unfortunately, there's no way to disable linking against just libc++
|
/build/core/gn/ |
D | BUILD.gn | 43 # So skip images for lite system since it's the mkimage
|
/build/lite/config/test/ |
D | test.gni | 96 foreach(s, invoker.sources) { 97 _sources += s + ","
|
/build/config/gcc/ |
D | BUILD.gn | 48 # It's often a good idea to set visibility explicitly, as there're flags
|
12