Home
last modified time | relevance | path

Searched refs:liststr (Results 1 – 25 of 163) sorted by relevance

1234567

/dports/textproc/gtk-doc/gtk-doc-1.33.2/gtkdoc/
H A Dscan.py415 if liststr != '':
1092 liststr, standard_decl = replace_once(liststr, standard_decl, r'^%sPrivate\n' % mtype)
1097 liststr, standard_decl = replace_once(liststr, standard_decl, r'^%s\n' % mtype)
1101 liststr, standard_decl = replace_once(liststr, standard_decl, r'^%sClass\n' % mtype)
1109 liststr, standard_decl = replace_once(liststr, standard_decl, r'%sIface\n' % mtype)
1111 liststr, standard_decl = replace_all(liststr, standard_decl, r'^\S+_IS_%s\n' % klass)
1112 liststr, standard_decl = replace_all(liststr, standard_decl, r'^\S+_TYPE_%s\n' % klass)
1120 liststr, standard_decl = replace_all(liststr, standard_decl, r'^\S+_%s\n' % klass)
1127 return liststr
1134 liststr = re.sub(regex, '', liststr, flags=re.IGNORECASE | re.MULTILINE)
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/apr/test/
H A Dtestpath.c86 char *liststr; in list_merge_multi() local
94 liststr = NULL; in list_merge_multi()
95 rv = apr_filepath_list_merge(&liststr, pathelts, p); in list_merge_multi()
96 ABTS_PTR_NOTNULL(tc, liststr); in list_merge_multi()
98 ABTS_STR_EQUAL(tc, liststr, path_out); in list_merge_multi()
104 char *liststr; in list_merge_single() local
113 liststr = NULL; in list_merge_single()
114 rv = apr_filepath_list_merge(&liststr, pathelts, p); in list_merge_single()
116 ABTS_PTR_EQUAL(tc, NULL, liststr); in list_merge_single()
119 ABTS_PTR_NOTNULL(tc, liststr); in list_merge_single()
[all …]
/dports/devel/apr1/apr-1.7.0/test/
H A Dtestpath.c86 char *liststr; in list_merge_multi() local
94 liststr = NULL; in list_merge_multi()
95 rv = apr_filepath_list_merge(&liststr, pathelts, p); in list_merge_multi()
96 ABTS_PTR_NOTNULL(tc, liststr); in list_merge_multi()
98 ABTS_STR_EQUAL(tc, liststr, path_out); in list_merge_multi()
104 char *liststr; in list_merge_single() local
113 liststr = NULL; in list_merge_single()
114 rv = apr_filepath_list_merge(&liststr, pathelts, p); in list_merge_single()
116 ABTS_PTR_EQUAL(tc, NULL, liststr); in list_merge_single()
119 ABTS_PTR_NOTNULL(tc, liststr); in list_merge_single()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/aws/smithy-go/encoding/xml/
H A Dencoder_test.go328 m := r.MemberElement(liststr)
336 ex := []byte(`<root><liststr><member>abc</member><member>123</member></liststr></root>`)
350 m := r.FlattenedElement(liststr)
357 ex := []byte(`<root><liststr>abc</liststr><liststr>123</liststr></root>`)
373 m := r.MemberElement(liststr)
381 …ex := []byte(`<root><liststr><namedMember>abc</namedMember><namedMember>123</namedMember></liststr
397 m := r.MemberElement(liststr)
429 m := r.FlattenedElement(liststr)
443 …ex := []byte(`<root><liststr><value>abc</value></liststr><liststr><value>123</value></liststr></ro…
461 m := r.MemberElement(liststr)
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/aws/smithy-go/encoding/xml/
H A Dencoder_test.go328 m := r.MemberElement(liststr)
336 ex := []byte(`<root><liststr><member>abc</member><member>123</member></liststr></root>`)
350 m := r.FlattenedElement(liststr)
357 ex := []byte(`<root><liststr>abc</liststr><liststr>123</liststr></root>`)
373 m := r.MemberElement(liststr)
381 …ex := []byte(`<root><liststr><namedMember>abc</namedMember><namedMember>123</namedMember></liststr
397 m := r.MemberElement(liststr)
429 m := r.FlattenedElement(liststr)
443 …ex := []byte(`<root><liststr><value>abc</value></liststr><liststr><value>123</value></liststr></ro…
461 m := r.MemberElement(liststr)
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/apr/file_io/unix/
H A Dfilepath_util.c30 const char *liststr, in apr_filepath_list_split_impl() argument
42 path = apr_pstrdup(p, liststr); in apr_filepath_list_split_impl()
66 apr_status_t apr_filepath_list_merge_impl(char **liststr, in apr_filepath_list_merge_impl() argument
86 *liststr = NULL; in apr_filepath_list_merge_impl()
94 path = *liststr = apr_palloc(p, path_size + 1); in apr_filepath_list_merge_impl()
H A Dfilepath.c296 const char *liststr, in apr_filepath_list_split() argument
299 return apr_filepath_list_split_impl(pathelts, liststr, ':', p); in apr_filepath_list_split()
302 APR_DECLARE(apr_status_t) apr_filepath_list_merge(char **liststr, in apr_filepath_list_merge() argument
306 return apr_filepath_list_merge_impl(liststr, pathelts, ':', p); in apr_filepath_list_merge()
/dports/devel/apr1/apr-1.7.0/file_io/unix/
H A Dfilepath_util.c30 const char *liststr, in apr_filepath_list_split_impl() argument
42 path = apr_pstrdup(p, liststr); in apr_filepath_list_split_impl()
66 apr_status_t apr_filepath_list_merge_impl(char **liststr, in apr_filepath_list_merge_impl() argument
86 *liststr = NULL; in apr_filepath_list_merge_impl()
94 path = *liststr = apr_palloc(p, path_size + 1); in apr_filepath_list_merge_impl()
H A Dfilepath.c293 const char *liststr, in apr_filepath_list_split() argument
296 return apr_filepath_list_split_impl(pathelts, liststr, ':', p); in apr_filepath_list_split()
299 APR_DECLARE(apr_status_t) apr_filepath_list_merge(char **liststr, in apr_filepath_list_merge() argument
303 return apr_filepath_list_merge_impl(liststr, pathelts, ':', p); in apr_filepath_list_merge()
/dports/ftp/jftp/j-ftp/src/java/net/sf/jftp/gui/base/
H A DDownloadQueue.java46 private DefaultListModel liststr = new DefaultListModel(); field in DownloadQueue
47 private JList list = new JList(liststr);
220 String sa = (String) liststr.get(b); in actionPerformed()
221 liststr.remove(b); in actionPerformed()
222 liststr.add(a, sa); in actionPerformed()
238 String sa = (String) liststr.get(b); in actionPerformed()
239 liststr.remove(b); in actionPerformed()
240 liststr.add(a, sa); in actionPerformed()
250 liststr.remove(list.getSelectedIndex()); in actionPerformed()
328 liststr.clear(); in loadList()
[all …]
/dports/graphics/frei0r/frei0r-1.7.0-18-g86475d3/src/filter/keyspillm0pup/
H A Dkeyspillm0pup.c682 char *liststr; member
834 strcpy( in->liststr, sval ); in f0r_construct()
880 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
881 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
912 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
913 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
929 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
930 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
977 p->liststr=realloc(p->liststr,16); in f0r_get_param_value()
994 p->liststr=realloc(p->liststr,16); in f0r_get_param_value()
[all …]
/dports/graphics/frei0r-plugins-gavl/frei0r-1.7.0-18-g86475d3/src/filter/keyspillm0pup/
H A Dkeyspillm0pup.c682 char *liststr; member
834 strcpy( in->liststr, sval ); in f0r_construct()
880 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
881 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
912 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
913 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
929 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
930 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
977 p->liststr=realloc(p->liststr,16); in f0r_get_param_value()
994 p->liststr=realloc(p->liststr,16); in f0r_get_param_value()
[all …]
/dports/graphics/frei0r-plugins-opencv/frei0r-1.7.0-18-g86475d3/src/filter/keyspillm0pup/
H A Dkeyspillm0pup.c682 char *liststr; member
834 strcpy( in->liststr, sval ); in f0r_construct()
880 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
881 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
912 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
913 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
929 p->liststr = realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
930 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
977 p->liststr=realloc(p->liststr,16); in f0r_get_param_value()
994 p->liststr=realloc(p->liststr,16); in f0r_get_param_value()
[all …]
/dports/net/nylon/nylon-1.21/src/
H A Dcfg.c439 char *liststr = 0, *p, *field; in conf_get_list() local
448 liststr = conf_get_str (section, tag); in conf_get_list()
449 if (!liststr) in conf_get_list()
451 liststr = strdup (liststr); in conf_get_list()
452 if (!liststr) in conf_get_list()
454 p = liststr; in conf_get_list()
469 free (liststr); in conf_get_list()
475 if (liststr) in conf_get_list()
476 free (liststr); in conf_get_list()
/dports/www/crawl/crawl-0.4/
H A Dcfg.c429 char *liststr = 0, *p, *field; in conf_get_list() local
438 liststr = conf_get_str (section, tag); in conf_get_list()
439 if (!liststr) in conf_get_list()
441 liststr = strdup (liststr); in conf_get_list()
442 if (!liststr) in conf_get_list()
444 p = liststr; in conf_get_list()
459 free (liststr); in conf_get_list()
465 if (liststr) in conf_get_list()
466 free (liststr); in conf_get_list()
/dports/net/trickle/trickle-1.07/
H A Dconf.c451 char *liststr = 0, *p, *field; in conf_get_list() local
460 liststr = conf_get_str (section, tag); in conf_get_list()
461 if (!liststr) in conf_get_list()
463 liststr = strdup (liststr); in conf_get_list()
464 if (!liststr) in conf_get_list()
466 p = liststr; in conf_get_list()
481 free (liststr); in conf_get_list()
487 if (liststr) in conf_get_list()
488 free (liststr); in conf_get_list()
/dports/devel/apr1/apr-1.7.0/include/arch/
H A Dapr_private_common.h28 const char *liststr,
32 apr_status_t apr_filepath_list_merge_impl(char **liststr,
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/apr/include/arch/
H A Dapr_private_common.h28 const char *liststr,
32 apr_status_t apr_filepath_list_merge_impl(char **liststr,
/dports/textproc/gtk-doc/gtk-doc-1.33.2/tests/
H A Dscan.py764 liststr = scan.SeparateSubSections([], {})
765 self.assertEqual('\n', liststr)
774 liststr = scan.SeparateSubSections(slist, doc_comments)
777 liststr.splitlines())
786 liststr = scan.SeparateSubSections(slist, doc_comments)
789 liststr.splitlines())
798 liststr = scan.SeparateSubSections(slist, doc_comments)
801 liststr.splitlines())
819 liststr.splitlines())
834 liststr.splitlines())
[all …]
/dports/graphics/frei0r/frei0r-1.7.0-18-g86475d3/src/filter/medians/
H A Dmedians.c370 char *liststr; member
450 in->liststr=calloc(1,strlen("Square3x3")+1); in f0r_construct()
451 strcpy(in->liststr,"Square3x3"); in f0r_construct()
482 free(in->liststr); in f0r_destruct()
502 p->liststr = (char*)realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
503 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
505 while ((strcmp(p->liststr,list1[p->type])!=0)&&(p->type<10)) p->type++; in f0r_set_param_value()
528 *((char**)param) = p->liststr; in f0r_get_param_value()
/dports/graphics/frei0r-plugins-gavl/frei0r-1.7.0-18-g86475d3/src/filter/medians/
H A Dmedians.c370 char *liststr; member
450 in->liststr=calloc(1,strlen("Square3x3")+1); in f0r_construct()
451 strcpy(in->liststr,"Square3x3"); in f0r_construct()
482 free(in->liststr); in f0r_destruct()
502 p->liststr = (char*)realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
503 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
505 while ((strcmp(p->liststr,list1[p->type])!=0)&&(p->type<10)) p->type++; in f0r_set_param_value()
528 *((char**)param) = p->liststr; in f0r_get_param_value()
/dports/graphics/frei0r-plugins-opencv/frei0r-1.7.0-18-g86475d3/src/filter/medians/
H A Dmedians.c370 char *liststr; member
450 in->liststr=calloc(1,strlen("Square3x3")+1); in f0r_construct()
451 strcpy(in->liststr,"Square3x3"); in f0r_construct()
482 free(in->liststr); in f0r_destruct()
502 p->liststr = (char*)realloc( p->liststr, strlen(tmpch) + 1 ); in f0r_set_param_value()
503 strcpy( p->liststr, tmpch ); in f0r_set_param_value()
505 while ((strcmp(p->liststr,list1[p->type])!=0)&&(p->type<10)) p->type++; in f0r_set_param_value()
528 *((char**)param) = p->liststr; in f0r_get_param_value()
/dports/news/golded+/golded-plus/golded+/golded3/
H A Dgenode.cpp74 ListStr* liststr; member in NodelistBrowser
132 throw_release(liststr); in ~NodelistBrowser()
148 liststr = (ListStr*)throw_calloc(maxpos, sizeof(ListStr)); in Open()
232 listwin.prints(pos-1, 0, sattr, liststr[pos-1]); in DisplayBar()
242 listwin.prints(line-1, 0, wattr, liststr[line-1]); in DisplayLine()
258 …sprintf(liststr[line-1], " %-*.*s %-*.*s %-*.*s ", 24+x1, 24+x1, entryp->name, 21+x2, 21+x2, entry… in BuildListString()
260 …sprintf(liststr[line-1], " %-*.*s %-*.*s %-*.*s ", 21+x2, 21+x2, entryp->address, 24+x1, 24+x1, en… in BuildListString()
360 memmove(liststr, liststr+1, (maxpos-1)*sizeof(ListStr)); in ScrollUp()
371 memmove(liststr+1, liststr, (maxpos-1)*sizeof(ListStr)); in ScrollDown()
/dports/textproc/py-wordcloud/word_cloud-1.5.0/examples/
H A Dwordcloud_cn.py54 liststr = "/ ".join(seg_list)
60 for myword in liststr.split('/'):
/dports/math/unuran/unuran-1.8.1/src/parser/
H A Dstringparser.c373 static int _unur_parse_ilist( char *liststr, int **iarray );
378 static int _unur_parse_dlist( char *liststr, double **darray );
2439 _unur_parse_ilist( char *liststr, int **iarray ) in _unur_parse_ilist() argument
2462 if (liststr == NULL) { in _unur_parse_ilist()
2468 while ( *liststr == ',' || *liststr == '(' ){ in _unur_parse_ilist()
2469 liststr++; /* next char */ in _unur_parse_ilist()
2473 for ( token = strtok(liststr, ",)"); in _unur_parse_ilist()
2500 _unur_parse_dlist( char *liststr, double **darray ) in _unur_parse_dlist() argument
2524 if (liststr == NULL) { in _unur_parse_dlist()
2533 token = liststr; in _unur_parse_dlist()

1234567