Lines Matching refs:a_str

232                                             CRString ** a_str);
670 cr_tknzr_parse_string (CRTknzr * a_this, CRString ** a_str)
680 && a_str, CR_BAD_PARAM_ERROR);
760 if (*a_str == NULL) {
761 *a_str = str;
764 (*a_str)->stryng = g_string_append_len
765 ((*a_str)->stryng,
922 *@param a_str a pointer to parsed ident. If *a_str is NULL,
925 *In both cases it is up to the caller to free *a_str.
931 cr_tknzr_parse_ident (CRTknzr * a_this, CRString ** a_str)
941 && a_str, CR_BAD_PARAM_ERROR);
979 if (!*a_str) {
980 *a_str = stringue ;
983 g_string_append_len ((*a_str)->stryng,
1010 *@param a_str out parameter. A pointer to the successfully parsed
1011 *name. If *a_str is set to NULL, this function allocates a new instance
1012 *of CRString. If not, it just appends the parsed name to the passed *a_str.
1013 *In both cases, it is up to the caller to free *a_str.
1019 CRString ** a_str)
1031 && a_str,
1036 if (*a_str == NULL) {
1037 *a_str = cr_string_new ();
1052 g_string_append_unichar ((*a_str)->stryng,
1057 (&(*a_str)->location, &loc) ;
1060 if (str_needs_free == TRUE && *a_str) {
1061 cr_string_destroy (*a_str);
1062 *a_str = NULL;
1073 cr_tknzr_parse_hash (CRTknzr * a_this, CRString ** a_str)
1091 if (*a_str == NULL) {
1092 *a_str = cr_string_new ();
1097 status = cr_tknzr_parse_name (a_this, a_str);
1098 cr_parsing_location_copy (&(*a_str)->location, &loc) ;
1105 if (str_needs_free == TRUE && *a_str) {
1106 cr_string_destroy (*a_str);
1107 *a_str = NULL;
1120 *@param a_str the successfully parsed url.
1125 CRString ** a_str)
1137 && a_str,
1161 status = cr_tknzr_parse_string (a_this, a_str);
1211 if (*a_str == NULL) {
1212 *a_str = str;
1216 ((*a_str)->stryng,
1225 (&(*a_str)->location,
1367 *@param a_str out parameter. The parsed atkeyword. If *a_str is
1370 *the parsed atkeyword to the end of *a_str. In both cases it is up to
1371 *the caller to free *a_str.
1377 CRString ** a_str)
1386 && a_str, CR_BAD_PARAM_ERROR);
1397 if (*a_str == NULL) {
1398 *a_str = cr_string_new ();
1401 status = cr_tknzr_parse_ident (a_this, a_str);
1408 if (str_needs_free == TRUE && *a_str) {
1409 cr_string_destroy (*a_str);
1410 *a_str = NULL;