Home
last modified time | relevance | path

Searched refs:ostr (Results 1 – 16 of 16) sorted by relevance

/external/openfst/src/include/fst/
Dicu.h75 ostringstream ostr; in LabelsToUTF8String() local
82 ostr << static_cast<char>(code); in LabelsToUTF8String()
84 ostr << static_cast<char>((code >> 6) | 0xc0); in LabelsToUTF8String()
85 ostr << static_cast<char>((code & 0x3f) | 0x80); in LabelsToUTF8String()
87 ostr << static_cast<char>((code >> 12) | 0xe0); in LabelsToUTF8String()
88 ostr << static_cast<char>(((code >> 6) & 0x3f) | 0x80); in LabelsToUTF8String()
89 ostr << static_cast<char>((code & 0x3f) | 0x80); in LabelsToUTF8String()
91 ostr << static_cast<char>((code >> 18) | 0xf0); in LabelsToUTF8String()
92 ostr << static_cast<char>(((code >> 12) & 0x3f) | 0x80); in LabelsToUTF8String()
93 ostr << static_cast<char>(((code >> 6) & 0x3f) | 0x80); in LabelsToUTF8String()
[all …]
/external/tcpdump/win32/Src/
Dgetopt.c57 getopt(nargc, nargv, ostr) in getopt() argument
60 const char *ostr;
79 !(oli = strchr(ostr, optopt))) {
88 if (opterr && *ostr != ':')
103 if (*ostr == ':')
/external/libpcap/Win32/Src/
Dgetopt.c57 getopt(nargc, nargv, ostr) in getopt() argument
60 const char *ostr;
83 !(oli = strchr(ostr, optopt))) {
92 if (opterr && *ostr != ':')
107 if (*ostr == ':')
/external/bison/examples/calc++/
Dlocation.hh161 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc) in operator <<() argument
164 ostr << loc.begin; in operator <<()
168 ostr << '-' << last; in operator <<()
170 ostr << '-' << last.line << '.' << last.column; in operator <<()
172 ostr << '-' << last.column; in operator <<()
173 return ostr; in operator <<()
Dposition.hh161 operator<< (std::basic_ostream<YYChar>& ostr, const position& pos) in operator <<() argument
164 ostr << *pos.filename << ':'; in operator <<()
165 return ostr << pos.line << '.' << pos.column; in operator <<()
/external/bison/data/
Dlocation.cc141 operator<< (std::basic_ostream<YYChar>& ostr, const position& pos)
144 ostr << *pos.filename << ':';
145 return ostr << pos.line << '.' << pos.column;
281 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc)
284 ostr << loc.begin;
288 ostr << '-' << last;
290 ostr << '-' << last.line << '.' << last.column;
292 ostr << '-' << last.column;
293 return ostr;
/external/parameter-framework/utility/
DUtility.h74 std::ostringstream ostr; in toString() local
76 ostr << uiValue; in toString()
78 return ostr.str(); in toString()
/external/openfst/src/include/fst/script/
Dfst-class.h56 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const = 0;
121 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { in Write() argument
122 return impl_->Write(ostr, opts); in Write()
210 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { in Write() argument
211 return impl_->Write(ostr, opts); in Write()
309 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { in Write() argument
310 return GetImpl()->Write(ostr, opts); in Write()
/external/llvm/unittests/Support/
DYAMLIOTest.cpp215 llvm::raw_string_ostream ostr(intermediate); in TEST() local
216 Output yout(ostr); in TEST()
361 llvm::raw_string_ostream ostr(intermediate); in TEST() local
362 Output yout(ostr); in TEST()
476 llvm::raw_string_ostream ostr(intermediate); in TEST() local
477 Output yout(ostr); in TEST()
671 llvm::raw_string_ostream ostr(intermediate); in TEST() local
672 Output yout(ostr); in TEST()
762 llvm::raw_string_ostream ostr(intermediate); in TEST() local
763 Output yout(ostr); in TEST()
[all …]
/external/parameter-framework/parameter/
DSubsystemObject.cpp86 std::ostringstream ostr; in asString() local
88 ostr << uiValue; in asString()
90 return ostr.str(); in asString()
/external/openfst/src/test/
Dfst_test.h241 ofstream ostr(aligned.c_str()); in TestIO()
245 CHECK(fst.Write(ostr, opts)); in TestIO()
260 ofstream ostr(aligned.c_str()); in TestIO()
264 CHECK(fst.Write(ostr, opts)); in TestIO()
/external/fio/crc/
Dtest.c256 char *ostr, *str = strdup(type); in get_test_mask() local
261 ostr = str; in get_test_mask()
272 free(ostr); in get_test_mask()
/external/fio/
Dinit.c1876 char *ostr = cmd_optstr; in fio_options_fill_optstring() local
1881 ostr[c++] = l_opts[i].val; in fio_options_fill_optstring()
1883 ostr[c++] = ':'; in fio_options_fill_optstring()
1885 ostr[c++] = ':'; in fio_options_fill_optstring()
1886 ostr[c++] = ':'; in fio_options_fill_optstring()
1890 ostr[c] = '\0'; in fio_options_fill_optstring()
1943 char *ostr = cmd_optstr; in parse_cmd_line() local
1954 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) { in parse_cmd_line()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java1074 String ostr = formatConfig.getOverrideString(); in getInstance() local
1075 boolean useFast = ( ostr != null && ostr.length() > 0 ); in getInstance()
/external/netperf/
Dnetlib.c349 getopt(int argc, char **argv, char *ostr) in getopt() argument
369 || !(oli = strchr(ostr, optopt))) { in getopt()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...