Home
last modified time | relevance | path

Searched refs:out_string (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dcygwinccompiler.py421 out_string = out.read()
423 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
433 out_string = out.read()
435 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
445 out_string = out.read()
447 result = re.search(' (\d+\.\d+(\.\d+)*)',out_string)
459 out_string = out.read()
463 return out_string.strip().endswith('cygwin')
Demxccompiler.py306 out_string = out.read()
309 result = re.search('(\d+\.\d+\.\d+)',out_string)
/external/libaom/build/cmake/
Ddist.cmake14 # $out_string. In CMake's eyes this converts the input string to a list.
15 function(listify_string in_string out_string)
16 string(REPLACE " " ";" ${out_string} ${in_string})
17 set(${out_string} "${${out_string}}" PARENT_SCOPE)
/external/grpc-grpc/src/php/ext/grpc/
Dbyte_buffer.c34 void byte_buffer_to_string(grpc_byte_buffer *buffer, char **out_string, in byte_buffer_to_string() argument
39 *out_string = NULL; in byte_buffer_to_string()
50 *out_string = string; in byte_buffer_to_string()
Dbyte_buffer.h26 void byte_buffer_to_string(grpc_byte_buffer *buffer, char **out_string,
/external/python/cpython3/Lib/distutils/
Dcygwinccompiler.py382 out_string = out.read()
385 result = RE_VERSION.search(out_string)
402 out_string = check_output(['gcc', '-dumpmachine'])
403 return out_string.strip().endswith(b'cygwin')
/external/toolchain-utils/llvm_tools/patch_sync/src/
Dandroid_utils.rs30 let out_string = String::from_utf8(output.stdout)?.trim().to_string(); in get_android_llvm_version() localVariable
31 Ok(out_string) in get_android_llvm_version()
/external/webrtc/modules/audio_processing/transient/
Dwpd_tree_unittest.cc99 std::string out_string = out_stream.str(); in TEST() local
101 out_files_data[i] = FileWrapper::OpenWriteOnly(out_string); in TEST()
104 ASSERT_TRUE(file_opened) << "File could not be opened.\n" << out_string; in TEST()
/external/python/setuptools/setuptools/_distutils/
Dcygwinccompiler.py354 out_string = check_output(shlex.split(cc) + ['-dumpmachine'])
355 return out_string.strip().endswith(b'cygwin')
/external/cronet/net/extras/sqlite/
Dsqlite_persistent_reporting_and_nel_store.cc70 std::string* out_string) { in NetworkAnonymizationKeyToString() argument
74 return JSONStringValueSerializer(out_string).Serialize(value); in NetworkAnonymizationKeyToString()