HomeSort by relevance Sort by last modified time
    Searched refs:str (Results 101 - 125 of 17086) sorted by null

1 2 3 45 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
ReadTr.c 24 str ax
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
ReadTr.c 34 str ax
  /external/clang/test/Sema/
ms_wide_predefined_expr.cpp 5 #define _STR2WSTR(str) L##str
6 #define STR2WSTR(str) _STR2WSTR(str)
  /external/curl/src/
tool_strdup.c 25 char *strdup(const char *str)
30 if(!str)
33 len = strlen(str);
42 memcpy(newstr, str, (len + 1)*sizeof(char));
  /external/fio/lib/
strntol.h 4 long strntol(const char *str, size_t sz, char **end, int base);
  /external/iproute2/tipc/
misc.h 17 uint32_t str2addr(char *str);
  /external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/
TestFileIso88591.java 5 public String str?ng = "Strange attribute name [check the i]";
  /external/ltp/testcases/kernel/fs/mongo/
summ.c 7 char str[100]; variable
14 p = str;
20 n = atol(str);
23 p = str;
  /external/mesa3d/src/util/
strndup.c 30 strndup(const char *str, size_t max)
35 if (!str)
38 n = strnlen(str, max);
43 memcpy(ptr, str, n);
  /external/tcpdump/missing/
strdup.c 41 strdup(str)
42 const char *str;
47 len = strlen(str) + 1;
50 memcpy(copy, str, len);
  /external/tensorflow/tensorflow/stream_executor/lib/
str_util.h 29 // Returns a copy of the input string 'str' with the given 'suffix'
31 inline string StripSuffixString(port::StringPiece str, port::StringPiece suffix) {
32 if (str.ends_with(suffix)) {
33 str.remove_suffix(suffix.size());
35 return str.ToString();
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
StrSegment.java 45 * @param str The string
47 public StrSegment(String str) {
48 this(str, -1, -1);
63 * @param str The string
67 public StrSegment(String str, int from, int to) {
68 this.string = str;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/
altmac2.s 1 .macro m1 str
2 .ascii "&str"
  /external/syslinux/com32/cmenu/libmenu/
tui.h 47 void getuserinput(char *str, unsigned int size,
50 static inline void getstring(char *str, unsigned int size)
52 getuserinput(str, size, 0, 0);
55 static inline void editstring(char *str, unsigned int size)
57 getuserinput(str, size, 0, 1);
60 static inline void getpwd(char *str, unsigned int size)
62 getuserinput(str, size, 1, 0);
  /cts/tests/tests/util/src/android/util/cts/
StringBuilderPrinterTest.java 39 String str = strBuilder.toString(); local
40 assertTrue(str.startsWith("Hello"));
41 assertEquals(' ', str.charAt(5));
42 assertEquals('A', str.charAt(6));
43 assertEquals('n', str.charAt(7));
44 assertEquals('d', str.charAt(8));
45 assertEquals('r', str.charAt(9));
46 assertEquals('o', str.charAt(10));
47 assertEquals('i', str.charAt(11));
48 assertEquals('d', str.charAt(12))
    [all...]
  /external/libchrome/base/json/
string_escape.h 17 // Appends to |dest| an escaped version of |str|. Valid UTF-8 code units will
28 BASE_EXPORT bool EscapeJSONString(const StringPiece& str,
35 BASE_EXPORT bool EscapeJSONString(const StringPiece16& str,
41 BASE_EXPORT std::string GetQuotedJSONString(const StringPiece& str);
42 BASE_EXPORT std::string GetQuotedJSONString(const StringPiece16& str);
44 // Given an arbitrary byte string |str|, this will escape all non-ASCII bytes
46 // Unicode strings and does not validate |str| as one.
55 BASE_EXPORT std::string EscapeBytesAsInvalidJSONString(const StringPiece& str,
  /external/syslinux/com32/lib/sys/vesa/
debug.h 11 static void debug(const char *str, ...)
17 va_start(va, str);
18 len = vsnprintf(buf, sizeof buf, str, va);
29 static inline void debug(const char *str, ...)
31 (void)str;
  /external/valgrind/coregrind/m_demangle/
rust-demangle.c 161 is_prefixed_hash (const char *str)
168 if (strncmp (str, hash_prefix, hash_prefix_len))
170 str += hash_prefix_len;
173 for (end = str + hash_len; str < end; str++)
174 if (*str >= '0' && *str <= '9')
175 seen[*str - '0'] = 1;
176 else if (*str >= 'a' && *str <= 'f'
    [all...]
  /external/deqp/framework/delibs/decpp/
dePoolString.cpp 32 void PoolString::toString (std::string& str) const
34 str.resize(size());
35 std::copy(begin(), end(), str.begin());
38 void PoolString::append (const char* str)
41 size_t len = strlen(str);
44 std::copy(str, str+len, begin()+oldEnd);
47 void PoolString::append (const std::string& str)
51 resize(size()+str.length());
52 std::copy(str.begin(), str.end(), begin()+oldEnd)
    [all...]
  /external/pdfium/core/fxcrt/
fx_system.cpp 16 IntType FXSYS_StrToInt(const CharType* str) {
17 if (!str)
21 bool neg = *str == '-';
22 if (neg || *str == '+')
23 str++;
26 while (*str && FXSYS_isDecimalDigit(*str)) {
27 IntType val = FXSYS_DecimalCharToInt(*str);
41 str++;
50 STR_T FXSYS_IntToStr(T value, STR_T str, int radix)
    [all...]
  /external/skia/tools/lua/
count_effects.lua 2 local str = ""
4 if #str > 0 then
5 str = str .. ", "
8 str = str .. "[" .. k .. "] = "
10 str = str .. tostring(k) .. " = "
13 str = str .. "{ " .. tostr(v) .. " }
    [all...]
  /external/skqp/tools/lua/
count_effects.lua 2 local str = ""
4 if #str > 0 then
5 str = str .. ", "
8 str = str .. "[" .. k .. "] = "
10 str = str .. tostring(k) .. " = "
13 str = str .. "{ " .. tostr(v) .. " }
    [all...]
  /external/tensorflow/tensorflow/java/src/gen/cc/
source_writer.cc 22 SourceWriter& SourceWriter::Append(const StringPiece& str) {
23 if (!str.empty()) {
28 DoAppend(str);
33 SourceWriter& SourceWriter::Write(const string& str) {
37 line_pos = str.find('\n', start_pos);
40 Append(StringPiece(str.data() + start_pos, line_pos - start_pos));
43 Append(StringPiece(str.data() + start_pos, str.size() - start_pos));
45 } while (line_pos != string::npos && line_pos < str.size());
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubyerrors.swg 101 VALUE str;
105 str = rb_str_new2(msg);
109 str = rb_str_new(NULL, 0);
112 str = rb_str_cat2( str, "Expected argument " );
114 str = rb_str_cat2( str, buf );
115 str = rb_str_cat2( str, type );
116 str = rb_str_cat2( str, ", but got " )
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
put_bool.pass.cpp 50 char str[50]; local
51 output_iterator<char*> iter = f.put(output_iterator<char*>(str), ios, '*', v);
52 std::string ex(str, iter.base());
57 char str[50]; local
58 output_iterator<char*> iter = f.put(output_iterator<char*>(str), ios, '*', v);
59 std::string ex(str, iter.base());
68 char str[50]; local
69 output_iterator<char*> iter = f.put(output_iterator<char*>(str), ios, '*', v);
70 std::string ex(str, iter.base());
75 char str[50] local
87 char str[50]; local
94 char str[50]; local
    [all...]

Completed in 749 milliseconds

1 2 3 45 6 7 8 91011>>