Searched refs:out_name (Results 1 - 25 of 40) sorted by relevance

12

/external/libcxx/test/
H A Dmakemake.py23 out_name = os.path.splitext(path)[0] # trim .cpp
24 out_name = os.path.splitext(out_name)[0] # trim .pass
25 out_name = os.path.normpath(out_name)
26 tests.append((test, out_name))
49 for test, out_name in tests:
54 '''.format(out_name, test, build_mk_path))
/external/chromium_org/third_party/webrtc/common_video/libyuv/
H A Dscaler_unittest.cc29 FILE* source_file, std::string out_name,
33 // |input_file| and an output sequence with filename |out_name|. |width| and
35 double ComputeAvgSequencePSNR(FILE* input_file, std::string out_name,
122 std::string out_name = webrtc::test::OutputPath() + local
125 source_file_, out_name,
129 source_file2 = fopen(out_name.c_str(), "rb");
130 out_name = webrtc::test::OutputPath() + "LibYuvTest_PointScale_352_288_"
133 source_file2, out_name,
136 avg_psnr = ComputeAvgSequencePSNR(source_file_, out_name, width_, height_);
143 out_name
209 std::string out_name = webrtc::test::OutputPath() + local
303 std::string out_name = webrtc::test::OutputPath() + local
386 ComputeAvgSequencePSNR(FILE* input_file, std::string out_name, int width, int height) argument
425 ScaleSequence(ScaleMethod method, FILE* source_file, std::string out_name, int src_width, int src_height, int dst_width, int dst_height) argument
[all...]
/external/openfst/src/bin/
H A Dfstconnect.cc43 string out_name = argc > 2 ? argv[2] : ""; local
49 fst->Write(out_name);
H A Dfstinvert.cc42 string out_name = argc > 2 ? argv[2] : ""; local
48 fst->Write(out_name);
H A Dfstarcsort.cc49 string out_name = argc > 2 ? argv[2] : ""; local
64 fst->Write(out_name);
H A Dfstconvert.cc43 string out_name = argc > 2 ? argv[2] : ""; local
55 ofst->Write(out_name);
H A Dfstepsnormalize.cc45 string out_name = argc > 2 ? argv[2] : ""; local
55 ofst.Write(out_name);
H A Dfstproject.cc45 string out_name = argc > 2 ? argv[2] : ""; local
55 fst->Write(out_name);
H A Dfstreverse.cc48 string out_name = argc > 2 ? argv[2] : ""; local
57 out->Write(out_name);
H A Dfstsynchronize.cc42 string out_name = argc > 2 ? argv[2] : ""; local
51 ofst.Write(out_name);
H A Dfstunion.cc48 string out_name = argc > 3 ? argv[3] : ""; local
65 fst1->Write(out_name);
H A Dfstencode.cc50 string out_name = argc > 3 ? argv[3] : ""; local
60 fst->Write(out_name);
63 fst->Write(out_name);
H A Dfstcompose.cc52 string out_name = argc > 3 ? argv[3] : ""; local
92 ofst.Write(out_name);
H A Dfstdeterminize.cc51 string out_name = argc > 2 ? argv[2] : ""; local
65 ofst.Write(out_name);
H A Dfstdifference.cc50 string out_name = argc > 3 ? argv[3] : ""; local
84 ofst.Write(out_name);
H A Dfstintersect.cc51 string out_name = argc > 3 ? argv[3] : ""; local
85 ofst.Write(out_name);
H A Dfstprune.cc48 string out_name = argc > 2 ? argv[2] : ""; local
61 fst->Write(out_name);
H A Dfstpush.cc51 string out_name = argc > 2 ? argv[2] : ""; local
74 ofst.Write(out_name);
H A Dfstrandgen.cc54 string out_name = argc > 2 ? argv[2] : ""; local
80 ofst.Write(out_name);
H A Dfstmap.cc53 string out_name = argc > 2 ? argv[2] : ""; local
94 ofst->Write(out_name);
/external/openfst/src/extensions/pdt/
H A Dpdtreverse.cc42 string out_name = argc > 2 ? argv[2] : ""; local
58 ofst.Write(out_name);
H A Dpdtexpand.cc47 string out_name = argc > 2 ? argv[2] : ""; local
68 ofst.Write(out_name);
H A Dpdtshortestpath.cc48 string out_name = argc > 2 ? argv[2] : ""; local
78 ofst.Write(out_name);
/external/chromium_org/chrome_elf/blacklist/
H A Dblacklist_interceptions.cc123 // Fills |out_name| with the image name from the given |pe| image and |flags|
126 std::string* out_name,
128 out_name->clear();
129 out_name->reserve(MAX_PATH);
141 out_name->push_back(*image_name);
156 out_name->clear();
161 std::string out_name; local
163 SafeGetImageInfo(pe, &out_name, flags);
164 return base::string16(out_name.begin(), out_name
125 SafeGetImageInfo(const base::win::PEImage& pe, std::string* out_name, uint32* flags) argument
[all...]
/external/chromium_org/sandbox/win/src/
H A Dsandbox_nt_util.cc220 wchar_t** out_name, uint32* attributes,
225 DCHECK_NT(out_name);
226 *out_name = NULL;
238 *out_name = new(NT_ALLOC) wchar_t[size/sizeof(wchar_t)];
239 if (NULL == *out_name)
242 ret = CopyData(*out_name, in_object->ObjectName->Buffer,
247 (*out_name)[size / sizeof(wchar_t) - 1] = L'\0';
260 if (!NT_SUCCESS(ret) && *out_name) {
261 operator delete(*out_name, NT_ALLOC);
262 *out_name
219 AllocAndCopyName(const OBJECT_ATTRIBUTES* in_object, wchar_t** out_name, uint32* attributes, HANDLE* root) argument
364 UNICODE_STRING* out_name = NULL; local
[all...]

Completed in 764 milliseconds

12