Lines Matching refs:i_pNode

103 bool isInternalContext(librdf_node *i_pNode) throw ()  in isInternalContext()  argument
105 OSL_ENSURE(i_pNode, "isInternalContext: context null"); in isInternalContext()
106 OSL_ENSURE(librdf_node_is_resource(i_pNode), in isInternalContext()
108 if (i_pNode) { in isInternalContext()
109 librdf_uri *pURI(librdf_node_get_uri(i_pNode)); in isInternalContext()
209 convertToXResource(librdf_node* i_pNode) const;
210 uno::Reference<rdf::XNode> convertToXNode(librdf_node* i_pNode) const;
2117 librdf_TypeConverter::convertToXURI(librdf_node* i_pNode) const in convertToXURI()
2119 if (!i_pNode) return 0; in convertToXURI()
2120 if (librdf_node_is_resource(i_pNode)) { in convertToXURI()
2121 librdf_uri* pURI( librdf_node_get_uri(i_pNode) ); in convertToXURI()
2135 librdf_TypeConverter::convertToXResource(librdf_node* i_pNode) const in convertToXResource()
2137 if (!i_pNode) return 0; in convertToXResource()
2138 if (librdf_node_is_blank(i_pNode)) { in convertToXResource()
2139 const unsigned char* label( librdf_node_get_blank_identifier(i_pNode) ); in convertToXResource()
2158 return uno::Reference<rdf::XResource>(convertToXURI(i_pNode), in convertToXResource()
2164 librdf_TypeConverter::convertToXNode(librdf_node* i_pNode) const in convertToXNode()
2166 if (!i_pNode) return 0; in convertToXNode()
2167 if (!librdf_node_is_literal(i_pNode)) { in convertToXNode()
2168 return uno::Reference<rdf::XNode>(convertToXResource(i_pNode), in convertToXNode()
2171 const unsigned char* value( librdf_node_get_literal_value(i_pNode) ); in convertToXNode()
2177 const char * lang( librdf_node_get_literal_value_language(i_pNode) ); in convertToXNode()
2179 librdf_node_get_literal_value_datatype_uri(i_pNode) ); in convertToXNode()