Home
last modified time | relevance | path

Searched refs:has_at (Results 1 – 15 of 15) sorted by relevance

/dports/devel/p5-Event/Event-1.28/lib/Event/
H A Dtimer.pm25 my $has_at = exists $arg{at};
29 if $has_at && $has_after;
34 $has_at=1;
36 } elsif ($has_at) {
41 $o->at(Event::time() + (ref $i? $$i : $i)) unless $has_at;
/dports/www/py-cssutils/cssutils-2.3.0/cssutils/
H A Dtokenize2.py137 if has_at(text, pos, '@charset '):
163 if fullsheet and name == 'CHAR' and has_at(text, pos, '/*'):
231 if '@charset' == found and has_at(
263 def has_at(text, pos, string): function
/dports/www/py-css-parser/css-parser-1.0.7/src/css_parser/
H A Dtokenize2.py139 if has_at(text, pos, '@charset '):
166 has_at(text, pos, '/*')):
227 has_at(text, pos + len(found), ' ')):
256 def has_at(text, pos, string): function
/dports/multimedia/mpv/mpv-0.34.1/stream/
H A Dstream_slice.c83 bool has_at = bstr_split_tok(b_url, "@", &proto_with_range, &inner_url); in parse_slice_range() local
85 if (!has_at) { in parse_slice_range()
/dports/lang/racket/racket-8.3/src/bc/src/
H A Dnumstr.c829 has_at = 0; in scheme_read_number()
853 if (has_at) { in scheme_read_number()
869 if (has_at) { in scheme_read_number()
883 has_at = i; in scheme_read_number()
973 if (has_at) { in scheme_read_number()
982 first[has_at - delta] = 0; in scheme_read_number()
987 int slen = len - (has_at + 1) + 1; in scheme_read_number()
992 second = str + has_at + 1; in scheme_read_number()
995 n2 = scheme_read_number(second, len - has_at - 1, in scheme_read_number()
1009 return scheme_read_number(first, has_at - delta, in scheme_read_number()
[all …]
/dports/lang/racket-minimal/racket-8.3/src/bc/src/
H A Dnumstr.c829 has_at = 0; in scheme_read_number()
853 if (has_at) { in scheme_read_number()
869 if (has_at) { in scheme_read_number()
883 has_at = i; in scheme_read_number()
973 if (has_at) { in scheme_read_number()
982 first[has_at - delta] = 0; in scheme_read_number()
987 int slen = len - (has_at + 1) + 1; in scheme_read_number()
992 second = str + has_at + 1; in scheme_read_number()
995 n2 = scheme_read_number(second, len - has_at - 1, in scheme_read_number()
1009 return scheme_read_number(first, has_at - delta, in scheme_read_number()
[all …]
/dports/devel/distcc/distcc-3.3.5/src/
H A Dhosts.c511 int has_at; in dcc_parse_hosts() local
596 has_at = (memchr(token_start, '@', (size_t) token_len) != NULL); in dcc_parse_hosts()
603 } else if (has_at) { in dcc_parse_hosts()
/dports/www/py-cssutils/cssutils-2.3.0/cssutils/tests/
H A Dtest_tokenize2.py595 self.assertEqual(tokenize2.has_at(string, pos, text), expected)
/dports/www/py-css-parser/css-parser-1.0.7/css_parser_tests/
H A Dtest_tokenize2.py869 self.assertEqual(tokenize2.has_at(string, pos, text), expected)
/dports/mail/evolution/evolution-3.42.1/src/libemail-engine/
H A De-mail-session.c1884 gboolean has_at = FALSE, has_dot_after_at = FALSE; in mail_session_is_email_address() local
1892 if (has_at) in mail_session_is_email_address()
1895 has_at = TRUE; in mail_session_is_email_address()
1896 } else if (has_at && str[ii] == '.') { in mail_session_is_email_address()
1905 return has_at && has_dot_after_at; in mail_session_is_email_address()
/dports/security/gnupg1/gnupg-1.4.23/g10/
H A Dkeylist.c348 int has_at=!!strchr(nd->name,'@'); in show_notation() local
350 if((which&1 && !has_at) || (which&2 && has_at)) in show_notation()
/dports/security/gnupg/gnupg-2.3.3/g10/
H A Dkeylist.c434 int has_at = !!strchr (nd->name, '@'); in show_notation() local
436 if ((which & 1 && !has_at) || (which & 2 && has_at)) in show_notation()
/dports/devel/xsd/xsd-4.1.0.a11+dep/xsd/xsd/cxx/tree/
H A Dtree-source.cxx2099 HasParseFunction (Context& c, bool& has_el, bool& has_at) in HasParseFunction()
2100 : Context (c), has_el_ (has_el), has_at_ (has_at) in HasParseFunction()
/dports/www/retawq/retawq-0.2.6c/
H A Dresource.c6541 tBoolean has_at; local
6543 news_resource2path(resource, &path, &has_at);
6544 if ( (path != NULL) && (!has_at) )
6555 tBoolean has_at; local
6557 news_resource2path(resource, &path, &has_at);
6559 { if (has_at) { *_article = path; /* *_is_numerical = falsE; */ }
/dports/devel/radare2/radare2-5.1.1/libr/util/
H A Dstr.c3028 *has_at = input_value ? strchr (input_value, '@') : NULL; in r_str_contains_macro() local
3031 || has_paren || has_colon || has_at; in r_str_contains_macro()