Searched defs:attribute_list (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/utility/importer/
H A Dbookmark_html_reader.cc24 // Fetches the given |attribute| value from the |attribute_list|. Returns true
26 bool GetAttribute(const std::string& attribute_list, argument
31 size_t begin = attribute_list.find(attribute + "=" + kQuote);
38 while (end < attribute_list.size()) {
39 if (attribute_list[end] == '"' &&
40 attribute_list[end - 1] != '\\') {
46 if (end == attribute_list.size())
49 *value = attribute_list.substr(begin, end - begin);
282 std::string attribute_list = line.substr(arraysize(kFolderOpen), local
287 if (GetAttribute(attribute_list, kAddDateAttribut
[all...]
/external/chromium_org/crypto/
H A Dmock_apple_keychain_mac.cc84 const SecKeychainAttributeList& attribute_list,
87 for (unsigned int i = 0; i < attribute_list.count; ++i) {
88 if (attribute_list.attr[i].tag == tag) {
97 return &(attribute_list.attr[attribute_index]);
83 AttributeWithTag( const SecKeychainAttributeList& attribute_list, UInt32 tag) argument

Completed in 79 milliseconds