HomeSort by relevance Sort by last modified time
    Searched refs:str (Results 201 - 225 of 7576) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/openssl/openssl/apps/
progs.pl 33 $str="\t{FUNC_TYPE_GENERAL,\"$_\",${_}_main},\n";
35 { print "#if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))\n${str}#endif\n"; }
37 { print "#ifndef OPENSSL_NO_SPEED\n${str}#endif\n"; }
39 { print "#ifndef OPENSSL_NO_ENGINE\n${str}#endif\n"; }
41 { print "#ifndef OPENSSL_NO_RSA\n${str}#endif\n"; }
43 { print "#ifndef OPENSSL_NO_DSA\n${str}#endif\n"; }
45 { print "#ifndef OPENSSL_NO_EC\n${str}#endif\n";}
47 { print "#ifndef OPENSSL_NO_DH\n${str}#endif\n"; }
49 { print "#if !defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_SHA1)\n${str}#endif\n"; }
51 { print "#ifndef OPENSSL_NO_CMS\n${str}#endif\n";
    [all...]
  /external/openssl/apps/
progs.pl 33 $str="\t{FUNC_TYPE_GENERAL,\"$_\",${_}_main},\n";
35 { print "#if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))\n${str}#endif\n"; }
37 { print "#ifndef OPENSSL_NO_SPEED\n${str}#endif\n"; }
39 { print "#ifndef OPENSSL_NO_ENGINE\n${str}#endif\n"; }
41 { print "#ifndef OPENSSL_NO_RSA\n${str}#endif\n"; }
43 { print "#ifndef OPENSSL_NO_DSA\n${str}#endif\n"; }
45 { print "#ifndef OPENSSL_NO_EC\n${str}#endif\n";}
47 { print "#ifndef OPENSSL_NO_DH\n${str}#endif\n"; }
49 { print "#if !defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_SHA1)\n${str}#endif\n"; }
51 { print "#ifndef OPENSSL_NO_CMS\n${str}#endif\n";
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.virtuals/
overflow.pass.cpp 27 explicit testbuf(const std::basic_string<CharT>& str,
29 : base(str, which) {}
43 assert(sb.str() == "1bc");
45 assert(sb.str() == "12c");
47 assert(sb.str() == "123");
49 assert(sb.str() == "1234");
51 assert(sb.str() == "12345");
53 assert(sb.str() == "123456");
55 assert(sb.str() == "1234567");
57 assert(sb.str() == "12345678")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
CachedXPathAPI.java 116 * @param str A valid XPath string.
121 public Node selectSingleNode(Node contextNode, String str)
124 return selectSingleNode(contextNode, str, contextNode);
132 * @param str A valid XPath string.
139 Node contextNode, String str, Node namespaceNode)
144 NodeIterator nl = selectNodeIterator(contextNode, str, namespaceNode);
155 * @param str A valid XPath string.
160 public NodeIterator selectNodeIterator(Node contextNode, String str)
163 return selectNodeIterator(contextNode, str, contextNode);
171 * @param str A valid XPath string
    [all...]
XPathAPI.java 61 * @param str A valid XPath string.
66 public static Node selectSingleNode(Node contextNode, String str)
69 return selectSingleNode(contextNode, str, contextNode);
77 * @param str A valid XPath string.
84 Node contextNode, String str, Node namespaceNode)
89 NodeIterator nl = selectNodeIterator(contextNode, str, namespaceNode);
100 * @param str A valid XPath string.
105 public static NodeIterator selectNodeIterator(Node contextNode, String str)
108 return selectNodeIterator(contextNode, str, contextNode);
116 * @param str A valid XPath string
    [all...]
  /external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
error_test.cpp 16 const char* str = "#error\n"; local
24 preprocess(str, expected);
29 const char* str = "#error foo\n"; local
38 preprocess(str, expected);
43 const char* str = "#error foo bar\n"; local
52 preprocess(str, expected);
57 const char* str = "/*foo*/" local
76 preprocess(str, expected);
81 const char* str = "#error foo"; local
91 preprocess(str, expected)
    [all...]
space_test.cpp 13 void expectSpace(const std::string& str)
15 const char* cstr = str.c_str();
43 std::string str(1, GetParam());
44 str.append("foo");
46 expectSpace(str);
65 std::string str; local
66 str.push_back(std::tr1::get<0>(GetParam()));
67 str.push_back(std::tr1::get<1>(GetParam()));
68 str.push_back(std::tr1::get<2>(GetParam()));
69 str.append("foo")
85 const char* str = " foo+ -bar"; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_digest.c 79 unsigned char *str,*p; local
82 if ((str=(unsigned char *)OPENSSL_malloc(i)) == NULL)
87 p=str;
90 if (!EVP_Digest(str, i, md, len, type, NULL))
92 OPENSSL_free(str);
103 unsigned char *str = NULL; local
105 i=ASN1_item_i2d(asn,&str, it);
106 if (!str) return(0);
108 if (!EVP_Digest(str, i, md, len, type, NULL))
110 OPENSSL_free(str);
    [all...]
  /external/openssl/crypto/asn1/
a_digest.c 79 unsigned char *str,*p; local
82 if ((str=(unsigned char *)OPENSSL_malloc(i)) == NULL)
87 p=str;
90 if (!EVP_Digest(str, i, md, len, type, NULL))
92 OPENSSL_free(str);
103 unsigned char *str = NULL; local
105 i=ASN1_item_i2d(asn,&str, it);
106 if (!str) return(0);
108 if (!EVP_Digest(str, i, md, len, type, NULL))
110 OPENSSL_free(str);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.iter/re.tokiter/re.tokiter.cnstr/
array.pass.cpp 33 assert(i->str() == "start ");
36 assert(i->str() == "555-1234");
39 assert(i->str() == "1234");
42 assert(i->str() == ", ");
45 assert(i->str() == "555-2345");
48 assert(i->str() == "2345");
51 assert(i->str() == ", ");
54 assert(i->str() == "555-3456");
57 assert(i->str() == "3456");
60 assert(i->str() == " end")
    [all...]
init.pass.cpp 32 assert(i->str() == "start ");
35 assert(i->str() == "555-1234");
38 assert(i->str() == "1234");
41 assert(i->str() == ", ");
44 assert(i->str() == "555-2345");
47 assert(i->str() == "2345");
50 assert(i->str() == ", ");
53 assert(i->str() == "555-3456");
56 assert(i->str() == "3456");
59 assert(i->str() == " end")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XString.java 149 return str().length() > 0;
167 public String str() method in class:XString
184 frag.appendTextChild(str()); method
204 String str = str(); local
206 ch.characters(str.toCharArray(), 0, str.length());
222 String str = str(); local
224 lh.comment(str.toCharArray(), 0, str.length())
    [all...]
  /external/chromium_org/chrome/installer/mini_installer/
mini_string.h 22 // Formats a sequence of |bytes| as hex. The |str| buffer must have room for
24 bool HexEncode(const void* bytes, size_t size, wchar_t* str, size_t str_size);
29 size_t SafeStrLen(const wchar_t* str, size_t alloc_size);
44 // Function to check if a string (specified by str) ends with another string
46 bool StrEndsWith(const wchar_t* str, const wchar_t* end_str);
48 // Function to check if a string (specified by str) starts with another string
50 bool StrStartsWith(const wchar_t* str, const wchar_t* start_str);
55 // Searches for |tag| within |str|. Returns true if |tag| is found and is
58 bool FindTagInStr(const wchar_t* str, const wchar_t* tag,
93 bool assign(const wchar_t* str) {
    [all...]
  /external/oprofile/libop/
op_parse_event.c 20 static char * next_part(char const ** str)
25 if ((*str)[0] == '\0')
28 if ((*str)[0] == ':')
29 ++(*str);
31 c = *str;
36 if (c == *str)
39 ret = op_xstrndup(*str, c - *str);
40 *str += c - *str;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
vsnprintf.c 60 msetup(str, n)
61 char *str;
92 mcleanup(str, n, p)
93 char *str;
97 strncpy(str, p, n-1);
98 str[n-1] = '\0';
108 vsnprintf(char *str, size_t n, char const *fmt, va_list ap)
110 vsnprintf(str, n, fmt, ap)
111 char *str;
125 p = msetup(str, n)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 26 bool TemplateMatch(char *templ, const char *str) {
27 if (str == 0 || str[0] == 0)
43 return str[0] == 0 || asterisk;
44 if (str[0] == 0)
52 const char *str0 = str;
53 const char *spos = internal_strstr(str, templ);
54 str = spos + internal_strlen(templ);
68 bool SuppressionContext::Match(const char *str, SuppressionType type,
74 TemplateMatch(suppressions_[i].templ, str))
    [all...]
  /external/mesa3d/src/mesa/main/
vsnprintf.c 60 msetup(str, n)
61 char *str;
92 mcleanup(str, n, p)
93 char *str;
97 strncpy(str, p, n-1);
98 str[n-1] = '\0';
108 vsnprintf(char *str, size_t n, char const *fmt, va_list ap)
110 vsnprintf(str, n, fmt, ap)
111 char *str;
125 p = msetup(str, n)
    [all...]
  /external/oprofile/libutil++/
string_manip.cpp 23 string erase_to_last_of(string const & str, char ch)
25 string result = str;
54 vector<string> separate_token(string const & str, char sep)
59 for (size_t pos = 0 ; pos != str.length() ; ++pos) {
60 char ch = str[pos];
62 if (pos < str.length() - 1 && str[pos + 1] == sep) {
84 string ltrim(string const & str, string const & totrim)
86 string result(str);
92 string rtrim(string const & str, string const & totrim
    [all...]
  /external/chromium/googleurl/src/
url_test_utils.h 48 string16 str; local
51 str.push_back(static_cast<char16>(src[i]));
53 return str;
67 std::string str; local
68 url_canon::StdStringCanonOutput output(&str);
73 return str;
  /external/chromium_org/base/
value_conversions.cc 21 std::string str; local
22 if (!value.GetAsString(&str))
25 *file_path = FilePath::FromUTF8Unsafe(str);
37 std::string str; local
39 if (!value.GetAsString(&str) || !base::StringToInt64(str, &int_value))
  /external/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser.h 34 void set_value(const base::StringPiece& str) {
35 str.CopyToString(&value_);
37 void set_name(const std::string& str) {
38 name_ = str;
40 void set_value(const std::string& str) {
41 value_ = str;
  /external/chromium_org/tools/grit/grit/extern/
FP.py 22 def _UnsignedFingerPrintImpl(str, encoding='utf-8'):
26 hex128 = _new_md5(str).hexdigest()
31 def UnsignedFingerPrint(str, encoding='utf-8'):
38 return _UnsignedFingerPrintImpl(str, encoding)
41 def FingerPrint(str, encoding='utf-8'):
42 fp = UnsignedFingerPrint(str, encoding=encoding)
  /external/chromium_org/url/
url_test_utils.h 23 base::string16 str; local
26 str.push_back(static_cast<char16>(src[i]));
28 return str;
42 std::string str; local
43 url_canon::StdStringCanonOutput output(&str);
48 return str;
  /external/skia/bench/
SkBenchLogger.h 43 void logError(const SkString& str) { this->nativeLogError(str.c_str()); }
58 void logProgress(const SkString& str) {
59 this->nativeLogProgress(str.c_str());
60 this->fileWrite(str.c_str(), str.size());
  /external/valgrind/main/drd/
drd_strmem_intercepts.c 41 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ); \
42 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ) \
45 while (i < n && str[i] != 0) i++; \
61 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ); \
62 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ) \
65 while (str[i] != 0) i++; \

Completed in 1933 milliseconds

1 2 3 4 5 6 7 891011>>