Searched defs:pstr (Results 1 - 12 of 12) sorted by relevance

/external/chromium/chrome/browser/prefs/
H A Dpref_set_observer_unittest.cc58 std::string* pstr = reinterpret_cast<const Details<std::string>&>(arg).ptr(); local
59 return pstr && *pstr == name;
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLAllCollectionCustom.cpp90 String pstr = ustringToString(string); local
91 Node* node = collection->namedItem(pstr);
95 node = collection->nextNamedItem(pstr);
H A DJSHTMLCollectionCustom.cpp86 String pstr = ustringToString(string); local
87 Node* node = collection->namedItem(pstr);
91 node = collection->nextNamedItem(pstr);
/external/stlport/test/unit/
H A Dmvctor_test.cpp68 char const* pstr = vec_strs.front().c_str(); local
77 CPPUNIT_ASSERT((pstr == vec_strs.front().c_str()));
88 pstr = vec_strs[2].c_str();
92 CPPUNIT_ASSERT((pstr == vec_strs[1].c_str()));
H A Dfind_test.cpp120 char *pstr = (char*)str; local
124 char *d = find(pstr, pstr + str_size, 'd');
130 char *last = find(pstr, pstr + str_size, 'x');
131 CPPUNIT_ASSERT( last == pstr + str_size );
/external/openssl/crypto/dh/
H A Ddh_ameth.c77 ASN1_STRING *pstr; local
93 pstr = pval;
94 pm = pstr->data;
95 pmlen = pstr->length;
190 ASN1_STRING *pstr; local
208 pstr = pval;
209 pm = pstr->data;
210 pmlen = pstr->length;
/external/openssl/crypto/dsa/
H A Ddsa_ameth.c75 ASN1_STRING *pstr; local
88 pstr = pval;
89 pm = pstr->data;
90 pmlen = pstr->length;
196 ASN1_STRING *pstr; local
254 pstr = pval;
255 pm = pstr->data;
256 pmlen = pstr->length;
/external/openssl/crypto/ec/
H A Dec_ameth.c86 ASN1_STRING *pstr = NULL; local
87 pstr = ASN1_STRING_new();
88 if (!pstr)
90 pstr->length = i2d_ECParameters(ec_key, &pstr->data);
91 if (pstr->length < 0)
93 ASN1_STRING_free(pstr);
97 *ppval = pstr;
144 ASN1_STRING *pstr = pval; local
147 pm = pstr
[all...]
/external/qemu/
H A Dqemu-option.c92 const char *tag, const char **pstr)
97 p = *pstr;
104 *pstr = get_opt_value(buf, buf_size, p);
105 if (**pstr == ',') {
106 (*pstr)++;
91 get_next_param_value(char *buf, int buf_size, const char *tag, const char **pstr) argument
/external/chromium/testing/gtest/src/
H A Dgtest.cc4543 // If *pstr starts with the given prefix, modifies *pstr to be right
4544 // past the prefix and returns true; otherwise leaves *pstr unchanged
4545 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4546 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4548 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4549 *pstr += prefix_len;
/external/gtest/src/
H A Dgtest.cc4543 // If *pstr starts with the given prefix, modifies *pstr to be right
4544 // past the prefix and returns true; otherwise leaves *pstr unchanged
4545 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4546 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4548 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4549 *pstr += prefix_len;
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc4511 // If *pstr starts with the given prefix, modifies *pstr to be right
4512 // past the prefix and returns true; otherwise leaves *pstr unchanged
4513 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4514 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4516 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4517 *pstr += prefix_len;

Completed in 283 milliseconds