Home
last modified time | relevance | path

Searched refs:is_first_char (Results 1 – 11 of 11) sorted by relevance

/dports/www/libdom/libdom-0.4.1/src/utils/
H A Dvalidate.c22 static bool is_first_char(uint32_t ch);
27 static bool is_first_char(uint32_t ch) in is_first_char() function
122 if (is_first_char(ch) == false) in _dom_validate_name()
/dports/databases/py-sqlparse/sqlparse-0.4.2/sqlparse/filters/
H A Dothers.py68 is_first_char = True
71 token.value = '' if last_was_ws or is_first_char else ' '
73 is_first_char = False
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/sqlparse/filters/
H A Dothers.py57 is_first_char = True
60 token.value = '' if last_was_ws or is_first_char else ' '
62 is_first_char = False
/dports/textproc/zorba/zorba-2.7.0/src/util/
H A Dregex.cpp105 bool is_first_char = true; // to check ^ placement in convert_xquery_re() local
268 is_first_char = true; in convert_xquery_re()
298 else if ( !is_first_char && !in_char_class ) in convert_xquery_re()
305 is_first_char = true; in convert_xquery_re()
322 is_first_char = false; in convert_xquery_re()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/naga/src/front/wgsl/
H A Dlexer.rs18 let mut is_first_char = true; in consume_number() localVariable
22 if is_first_char { in consume_number()
23 is_first_char = false; in consume_number()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/naga/src/front/wgsl/
H A Dlexer.rs18 let mut is_first_char = true; in consume_number() localVariable
22 if is_first_char { in consume_number()
23 is_first_char = false; in consume_number()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/dns/
H A Ddns_util.h64 NET_EXPORT_PRIVATE bool IsValidHostLabelCharacter(char c, bool is_first_char);
H A Ddns_util.cc160 bool IsValidHostLabelCharacter(char c, bool is_first_char) { in IsValidHostLabelCharacter() argument
162 (c >= '0' && c <= '9') || (!is_first_char && c == '-') || c == '_'; in IsValidHostLabelCharacter()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/dns/
H A Ddns_util.h69 NET_EXPORT_PRIVATE bool IsValidHostLabelCharacter(char c, bool is_first_char);
H A Ddns_util.cc149 bool IsValidHostLabelCharacter(char c, bool is_first_char) { in IsValidHostLabelCharacter() argument
151 (c >= '0' && c <= '9') || (!is_first_char && c == '-') || c == '_'; in IsValidHostLabelCharacter()
/dports/net/liblinphone/linphone-3.12.0/coreapi/
H A Dlpconfig.c191 static bool_t is_first_char(const char *start, const char *pos){ in is_first_char() function
272 if (pos1!=NULL && is_first_char(line,pos1) ){ in linphone_config_parse_line()