Home
last modified time | relevance | path

Searched refs:out_string (Results 1 – 9 of 9) 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/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/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.c_str()); in TEST()
104 ASSERT_TRUE(file_opened) << "File could not be opened.\n" << out_string; in TEST()
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
Dx86AssemblyInspectionEngine.cpp896 char out_string[512]; in instruction_length() local
899 out_string, sizeof(out_string)); in instruction_length()
/external/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp218 std::string out_string; in CalculateMnemonicOperandsAndComment() local
261 mc_disasm_ptr->PrintMCInst(inst, out_string, comment_string); in CalculateMnemonicOperandsAndComment()
322 if (s_regex.Execute(out_string, &matches)) { in CalculateMnemonicOperandsAndComment()