Lines Matching refs:temp

766             unsigned char temp = strXml_[position_];
767 if (temp > ' ') {
956 size_t temp = GetNSCount(depth) << 1;
957 if (temp) {
958 size_t i = temp - 2; // 2: number of args
1115 unsigned char temp = strXml_[position_];
1117 if (temp == '?') {
1123 if (temp == '/') {
1129 } else if (temp == '>') {
1763 int temp = (reinterpret_cast<XmlPullParser *>(obj))->GetColumnNumber();
1764 napi_create_int32(env, temp, &result);
1779 int temp = (reinterpret_cast<XmlPullParser *>(obj))->GetDepth();
1780 napi_create_int32(env, temp, &result);
1795 int temp = (reinterpret_cast<XmlPullParser *>(obj))->GetLineNumber();
1796 napi_create_int32(env, temp, &result);
1811 std::string temp = (reinterpret_cast<XmlPullParser *>(obj))->GetName();
1812 napi_create_string_utf8(env, temp.c_str(), temp.length(), &result);
1827 std::string temp = (reinterpret_cast<XmlPullParser *>(obj))->GetNamespace();
1828 napi_create_string_utf8(env, temp.c_str(), temp.length(), &result);
1843 std::string temp = (reinterpret_cast<XmlPullParser *>(obj))->GetPrefix();
1844 napi_create_string_utf8(env, temp.c_str(), temp.length(), &result);
1859 std::string temp = (reinterpret_cast<XmlPullParser *>(obj))->GetText();
1860 napi_create_string_utf8(env, temp.c_str(), temp.length(), &result);
1875 bool temp = (reinterpret_cast<XmlPullParser *>(obj))->IsEmptyElementTag();
1876 napi_get_boolean(env, temp, &result);
1891 bool temp = (reinterpret_cast<XmlPullParser *>(obj))->IsWhitespace();
1892 napi_get_boolean(env, temp, &result);
1907 int temp = (reinterpret_cast<XmlPullParser *>(obj))->GetAttributeCount();
1908 napi_create_int32(env, temp, &result);