Lines Matching refs:attributes

540             napi_create_string_utf8(env, attributes[i * 4 + 2].c_str(), // 4 and 2: number of args
541 attributes[i * 4 + 2].size(), &key); // 4 and 2: number of args
543 napi_create_string_utf8(env, attributes[i * 4 + 3].c_str(), // 4 and 3: number of args
544 attributes[i * 4 + 3].size(), &value); // 3 and 4: number of args
989 nspStack_[j + 1] = attributes[i + 3]; // 3: number of args
990 if (attrName != "" && attributes[i + 3].empty()) { // 3: number of args
994 attributes[i] = "http://www.w3.org/2000/xmlns/";
998 attributes[iCount] = attributes[iCount + 4]; // 4: number of args
1008 std::string attrName = attributes[i + 2]; // 2: number of args
1019 attributes[i] = attrNs;
1020 attributes[i + 1] = attrPrefix;
1021 attributes[i + 2] = attrName; // 2: number of args
1031 std::string attrName = attributes[i + 2]; // 2: number of args
1071 attributes.resize(attributes.size() + 4); // 4: number of args
1072 attributes[i] = "";
1073 attributes[i + 1] = "";
1074 attributes[i + 2] = attrName; // 2: number of args
1096 attributes[i + 3] = ParseTagValue(delimiter, true, // 3: number of args
1102 attributes[i + 3] = attrName; // 3: number of args
1186 if (attriCount_ < 1 || attributes[2] != "version") { // 2: number of args
1189 version_ = attributes[3]; // 3: number of args
1191 if (pos < attriCount_ && (attributes[2 + 4]) == "encoding") { // 4: number of args 2: number of args
1192 encoding_ = attributes[3 + 4]; // 3: number of args 4: number of args
1195 if (pos < attriCount_ && (attributes[4 * pos + 2]) == "standalone") { // 4: number of args 2: number of args
1196 std::string st = attributes[3 + 4 * pos]; // 3: number of args 4: number of args
1207 xmlPullParserError_ = "unexpected attributes in XML declaration";