/third_party/rust/crates/shlex/src/ |
H A D | lib.rs | 46 pub fn new(in_str: &'a str) -> Self { in new() 48 in_iter: in_str.bytes(), in new() 154 pub fn split(in_str: &str) -> Option<Vec<String>> { in split() 155 let mut shl = Shlex::new(in_str); in split() 161 pub fn quote(in_str: &str) -> Cow<str> { in quote() 162 if in_str.len() == 0 { in quote() 164 } else if in_str.bytes().any(|c| match c as char { in quote() 171 for c in in_str.bytes() { in quote() 181 in_str.into() in quote()
|
/third_party/ltp/metadata/ |
H A D | metaparse.c | 144 int in_str = 0; in next_token2() local 154 if (in_str) { in next_token2() 196 in_str = 1; in next_token2() 208 if (i == 0 && !in_str) in next_token2()
|
/third_party/exfatprogs/lib/ |
H A D | libexfat.c | 229 ssize_t exfat_utf16_enc(const char *in_str, __u16 *out_str, size_t out_size) in exfat_utf16_enc() argument 234 mbs_len = mbstowcs(NULL, in_str, 0); in exfat_utf16_enc() 246 if (mbstowcs(wcs, in_str, mbs_len+1) == (size_t)-1) { in exfat_utf16_enc() 276 ssize_t exfat_utf16_dec(const __u16 *in_str, size_t in_len, in exfat_utf16_dec() argument 291 wcs[wcs_len] = le16_to_cpu(in_str[i]); in exfat_utf16_dec() 299 w = le16_to_cpu(in_str[i+1]); in exfat_utf16_dec()
|
/third_party/exfatprogs/include/ |
H A D | libexfat.h | 144 ssize_t exfat_utf16_enc(const char *in_str, __u16 *out_str, size_t out_size); 145 ssize_t exfat_utf16_dec(const __u16 *in_str, size_t in_len,
|
/third_party/ffmpeg/libavutil/ |
H A D | base64.c | 81 int av_base64_decode(uint8_t *out, const char *in_str, int out_size) in av_base64_decode() argument 86 const uint8_t *in = in_str; in av_base64_decode()
|
/third_party/backends/testsuite/backend/genesys/ |
H A D | session_config_test.cpp | 322 std::stringstream in_str; in read_file_to_string() local 323 in_str << in.rdbuf(); in read_file_to_string() 324 return in_str.str(); in read_file_to_string()
|
/third_party/python/Modules/_io/ |
H A D | textio.c | 353 const void *in_str; in _PyIncrementalNewlineDecoder_decode() local 359 in_str = PyUnicode_DATA(output); in _PyIncrementalNewlineDecoder_decode() 370 only_lf = (memchr(in_str, '\r', kind * len) == NULL); in _PyIncrementalNewlineDecoder_decode() 378 memchr(in_str, '\n', kind * len) != NULL) { in _PyIncrementalNewlineDecoder_decode() 386 while (PyUnicode_READ(kind, in_str, i) > '\n') in _PyIncrementalNewlineDecoder_decode() 388 c = PyUnicode_READ(kind, in_str, i++); in _PyIncrementalNewlineDecoder_decode() 409 while (PyUnicode_READ(kind, in_str, i) > '\r') in _PyIncrementalNewlineDecoder_decode() 411 c = PyUnicode_READ(kind, in_str, i++); in _PyIncrementalNewlineDecoder_decode() 415 if (PyUnicode_READ(kind, in_str, i) == '\n') { in _PyIncrementalNewlineDecoder_decode() 433 const void *in_str in _PyIncrementalNewlineDecoder_decode() local [all...] |
/third_party/vulkan-loader/tests/framework/ |
H A D | test_util.cpp | 267 std::string in_str{in}; in operator /=() 268 if (contents.back() != path_separator && in_str.front() != path_separator) contents += path_separator; in operator /=() 269 contents += in_str; in operator /=()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_draw.cpp | 2640 void ImFontAtlasBuildRender8bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned char in_marker_pixel_value) in ImFontAtlasBuildRender8bppRectFromString() argument 2645 for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) in ImFontAtlasBuildRender8bppRectFromString() 2647 out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : 0x00; in ImFontAtlasBuildRender8bppRectFromString() 2650 void ImFontAtlasBuildRender32bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned int in_marker_pixel_value) in ImFontAtlasBuildRender32bppRectFromString() argument 2655 for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) in ImFontAtlasBuildRender32bppRectFromString() 2657 out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : IM_COL32_BLACK_TRANS; in ImFontAtlasBuildRender32bppRectFromString()
|
H A D | imgui_internal.h | 2776 IMGUI_API void ImFontAtlasBuildRender8bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned char in_marker_pixel_value); 2777 IMGUI_API void ImFontAtlasBuildRender32bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned int in_marker_pixel_value);
|