Lines Matching refs:info

198              * @param info The parameter is the current depth of the returned element.
200 static napi_value GetDepth(napi_env env, napi_callback_info info);
205 * @param info The parameter is to return the current line number.
207 static napi_value GetColumnNumber(napi_env env, napi_callback_info info);
212 * @param info The parameter is to return the current column number.
214 static napi_value GetLineNumber(napi_env env, napi_callback_info info);
219 * @param info The parameter is the number of attributes of the current start tag.
221 static napi_value GetAttributeCount(napi_env env, napi_callback_info info);
226 * @param info The parameter is to return the current element name.
228 static napi_value GetName(napi_env env, napi_callback_info info);
233 * @param info The parameter is the namespace that returns the current element.
235 static napi_value GetNamespace(napi_env env, napi_callback_info info);
240 * @param info The parameter is to return the current element prefix.
242 static napi_value GetPrefix(napi_env env, napi_callback_info info);
247 * @param info The parameter is to return the text content of the current event.
249 static napi_value GetText(napi_env env, napi_callback_info info);
254 * @param info The parameter is to returns true The current element is an empty element.
256 static napi_value IsEmptyElementTag(napi_env env, napi_callback_info info);
261 * @param info The parameter is to returns true, the current text event contains only space characters.
263 static napi_value IsWhitespace(napi_env env, napi_callback_info info);