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

<<11121314151617181920>>

  /frameworks/av/services/audioflinger/
FastCaptureState.cpp 33 const char *str = FastThreadState::commandToString(command); local
34 if (str != NULL) {
35 return str;
  /frameworks/base/core/java/android/os/
PooledStringReader.java 49 String str = mIn.readString(); local
50 mPool[idx] = str;
51 return str;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
stdio.h 58 #define sprintf(str, ...) \
59 __builtin___sprintf_chk (str, 0, __ssp_bos (str), \
61 #define vsprintf(str, fmt, ap) \
62 __builtin___vsprintf_chk (str, 0, __ssp_bos (str), fmt, ap)
71 #define snprintf(str, len, ...) \
72 __builtin___snprintf_chk (str, len, 0, __ssp_bos (str), __VA_ARGS__)
73 #define vsnprintf(str, len, fmt, ap)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
stdio.h 58 #define sprintf(str, ...) \
59 __builtin___sprintf_chk (str, 0, __ssp_bos (str), \
61 #define vsprintf(str, fmt, ap) \
62 __builtin___vsprintf_chk (str, 0, __ssp_bos (str), fmt, ap)
71 #define snprintf(str, len, ...) \
72 __builtin___snprintf_chk (str, len, 0, __ssp_bos (str), __VA_ARGS__)
73 #define vsnprintf(str, len, fmt, ap)
    [all...]
  /test/vts/drivers/libdrivercomm/
VtsDriverFileUtil.cpp 35 string GetDirFromFilePath(const string& str) {
36 size_t found = str.find_last_of("/\\");
41 return str.substr(0, found);
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 27 /* filemodestring - fill in string STR with an ls-style ASCII
29 10 characters are stored in STR; no terminating null is added.
30 The characters stored in STR are:
108 mode_string (unsigned long mode, char *str)
110 str[0] = ftypelet ((unsigned long) mode);
111 str[1] = (mode & S_IRUSR) != 0 ? 'r' : '-';
112 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
113 str[3] = (mode & S_IXUSR) != 0 ? 'x' : '-';
114 str[4] = (mode & S_IRGRP) != 0 ? 'r' : '-';
115 str[5] = (mode & S_IWGRP) != 0 ? 'w' : '-'
    [all...]
  /toolchain/binutils/binutils-2.27/intl/
hash-string.h 43 const char *str = str_param; variable
47 while (*str != '\0')
50 hval += (unsigned long int) *str++;
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
sscanf.c 15 sscanf(const char *__restrict str, char const *__restrict fmt, ...)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringTokenizer.cs 42 public StringTokenizer( string str, string separator )
43 : this( str, separator, false )
46 public StringTokenizer( string str, string separator, bool returnDelims )
48 _tokens = str.Split( separator.ToCharArray(), StringSplitOptions.None );
56 if (EnumerableExtensions.Contains(delims, str[str.Length - 1]))
63 if (EnumerableExtensions.Contains(delims, str[0]))
64 return new string[] { str[0].ToString() };
70 return new string[] { token, str[EnumerableExtensions.Sum(EnumerableExtensions.Select(EnumerableExtensions.Take(_tokens, i + 1),
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringTokenizer.cs 43 public StringTokenizer( string str, string separator )
44 : this( str, separator, false )
47 public StringTokenizer( string str, string separator, bool returnDelims )
49 _tokens = str.Split( separator.ToCharArray(), StringSplitOptions.None );
57 if ( delims.Contains( str[str.Length - 1] ) )
64 if ( delims.Contains( str[0] ) )
65 return new string[] { str[0].ToString() };
71 return new string[] { token, str[_tokens.Take( i + 1 ).Select( t => t.Length + 1 ).Sum() - 1].ToString() };
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 157 * @param str
161 public String soundex(String str) {
162 if (str == null) {
165 str = SoundexUtils.clean(str);
166 if (str.length() == 0) {
167 return str;
171 sBuf.append(str.charAt(0));
176 for (int i = 0; i < str.length(); i++) {
178 current = getMappingCode(str.charAt(i))
    [all...]
  /external/clang/test/Analysis/
stackaddrleak.c 8 char const str[] = "This will change"; local
9 p = str;
10 } // expected-warning{{Address of stack memory associated with local variable 'str' is still referred to by the global variable 'p' upon returning to the caller. This will be a dangling reference}}
13 char const str[] = "This will change"; local
14 p = str;
  /external/clang/test/CodeGen/
2002-03-12-ArrayInitialization.c 9 char str[10] = "x"; variable
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p6.c 5 #define str(s) # s macro
6 #define xstr(s) str(s)
15 fputs(str(strncmp("abc\0d" "abc", '\4') // this goes away
16 == 0) str(: @\n), s);
  /external/clang/test/Sema/
warn-strlcpycat-size.c 37 char str[] = "hi"; local
38 strlcpy(s->x, str, sizeof(str)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}}
44 char str[] = "hi"; local
46 strlcpy(z, str, sizeof(str)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}}
52 char str[] = "hi"; local
54 strlcpy(z, str, sizeof(str)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
  /external/clang/test/SemaCXX/
warn-unused-variables-error.cpp 7 X<char> str (read_from_file()); // expected-error{{use of undeclared identifier 'read_from_file'}} \
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_nolibc.cc 22 void LogMessageOnPrintf(const char *str) {}
  /external/curl/lib/
strdup.c 34 char *curlx_strdup(const char *str)
39 if(!str)
42 len = strlen(str);
51 memcpy(newstr, str, (len + 1)*sizeof(char));
strdup.h 27 extern char *curlx_strdup(const char *str);
strtoofft.h 49 CURLofft curlx_strtoofft(const char *str, char **endp, int base,
  /external/fio/
debug.h 42 void __dprint(int type, const char *str, ...) __attribute__((format (printf, 2, 3)));
44 #define dprint(type, str, args...) \
48 __dprint((type), (str), ##args); \
53 static inline void dprint(int type, const char *str, ...)
  /external/fio/lib/
strntol.c 7 long strntol(const char *str, size_t sz, char **end, int base)
13 const char *beg = str;
21 *end = (char *)str;
31 *end = (char *)str + (*end - buf);
  /external/fio/t/
debug.c 7 void __dprint(int type, const char *str, ...)
  /external/google-benchmark/tools/gbench/
__init__.py 6 __version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-string.h 214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
226 String(const ::std::string& str) { // NOLINT
227 ConstructNonNull(str.c_str(), str.length());
233 String(const ::string& str) { // NOLINT
234 ConstructNonNull(str.c_str(), str.length());
303 char* const str = new char[a_length + 1]; local
304 memcpy(str, buffer, a_length)
    [all...]

Completed in 591 milliseconds

<<11121314151617181920>>