Home
last modified time | relevance | path

Searched refs:matchKeyword (Results 1 – 13 of 13) sorted by relevance

/dports/devel/apitrace/apitrace-9.0/wrappers/
H A Dconfig.cpp114 matchKeyword(const char *string, const char *keyword) in matchKeyword() function
253 else if (matchKeyword(b, "GL_VENDOR")) { in parse_file()
256 else if (matchKeyword(b, "GL_VERSION")) { in parse_file()
259 else if (matchKeyword(b, "GL_EXTENSIONS")) { in parse_file()
262 else if (matchKeyword(b, "GL_RENDERER")) { in parse_file()
265 else if (matchKeyword(b, "GL_SHADING_LANGUAGE_VERSION")) { in parse_file()
268 else if (matchKeyword(b, "GL_MAX_TEXTURE_SIZE")) { in parse_file()
271 else if (matchKeyword(b, "GL_MAJOR_VERSION")) { in parse_file()
274 else if (matchKeyword(b, "GL_MINOR_VERSION")) { in parse_file()
277 else if (matchKeyword(b, "GL_CONTEXT_PROFILE_MASK")) { in parse_file()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esprima/src/
H A Dparser.ts483 matchKeyword(keyword) {
1430 … this.matchKeyword('delete') || this.matchKeyword('void') || this.matchKeyword('typeof')) {
2181 if (this.matchKeyword('else')) {
2259 if (this.matchKeyword('var')) {
2289 } else if (this.matchKeyword('const') || this.matchKeyword('let')) {
2505 if (this.matchKeyword('default')) {
2516 if (this.match('}') || this.matchKeyword('default') || this.matchKeyword('case')) {
2577 if (this.matchKeyword('class')) {
3349 if (this.matchKeyword('extends')) {
3367 if (this.matchKeyword('extends')) {
[all …]
/dports/www/firefox/firefox-99.0/third_party/python/esprima/esprima/
H A Dparser.py444 def matchKeyword(self, *keyword): member in Parser
1031 elif self.matchKeyword('import'):
1067 match = self.matchKeyword('import')
1844 if self.matchKeyword('else'):
1914 if self.matchKeyword('var'):
1981 if self.matchKeyword('in'):
2125 if self.matchKeyword('default'):
2185 if self.matchKeyword('class'):
2826 if self.matchKeyword('extends'):
2842 if self.matchKeyword('extends'):
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/esprima/esprima/
H A Dparser.py444 def matchKeyword(self, *keyword): member in Parser
1031 elif self.matchKeyword('import'):
1067 match = self.matchKeyword('import')
1844 if self.matchKeyword('else'):
1914 if self.matchKeyword('var'):
1981 if self.matchKeyword('in'):
2125 if self.matchKeyword('default'):
2185 if self.matchKeyword('class'):
2826 if self.matchKeyword('extends'):
2842 if self.matchKeyword('extends'):
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/esprima/esprima/
H A Dparser.py444 def matchKeyword(self, *keyword): member in Parser
1031 elif self.matchKeyword('import'):
1067 match = self.matchKeyword('import')
1844 if self.matchKeyword('else'):
1914 if self.matchKeyword('var'):
1981 if self.matchKeyword('in'):
2125 if self.matchKeyword('default'):
2185 if self.matchKeyword('class'):
2826 if self.matchKeyword('extends'):
2842 if self.matchKeyword('extends'):
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/esprima/esprima/
H A Dparser.py444 def matchKeyword(self, *keyword): member in Parser
1031 elif self.matchKeyword('import'):
1067 match = self.matchKeyword('import')
1844 if self.matchKeyword('else'):
1914 if self.matchKeyword('var'):
1981 if self.matchKeyword('in'):
2125 if self.matchKeyword('default'):
2185 if self.matchKeyword('class'):
2826 if self.matchKeyword('extends'):
2842 if self.matchKeyword('extends'):
[all …]
/dports/devel/bcpp/bcpp-20210108/code/
H A Dconfig.cpp201 static bool matchKeyword(const char *want, const char *have, size_t haveLen) in matchKeyword() function
246 if (matchKeyword(ConfigWordOf(type), pToMatch, len)) in FindConfigWords()
254 if (matchKeyword(ConfigData[typeCount].name, pToMatch, len)) in FindConfigWords()
/dports/devel/geany/geany-1.38/ctags/parsers/
H A Dgeany_python.c679 static bool matchKeyword (const char *keyword, const char *cp, const char **cp_n) in matchKeyword() function
790 if (matchKeyword ("def", keyword, &cp)) in findPythonTags()
794 else if (matchKeyword ("class", keyword, &cp)) in findPythonTags()
799 else if (matchKeyword ("cdef", keyword, &cp)) in findPythonTags()
809 else if (matchKeyword ("cpdef", keyword, &cp)) in findPythonTags()
/dports/devel/geany-legacy/geany-1.37.1/ctags/parsers/
H A Dpython.c679 static bool matchKeyword (const char *keyword, const char *cp, const char **cp_n) in matchKeyword() function
790 if (matchKeyword ("def", keyword, &cp)) in findPythonTags()
794 else if (matchKeyword ("class", keyword, &cp)) in findPythonTags()
799 else if (matchKeyword ("cdef", keyword, &cp)) in findPythonTags()
809 else if (matchKeyword ("cpdef", keyword, &cp)) in findPythonTags()
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/pyjsparser/
H A Dparser.py1057 def matchKeyword(self, keyword): member in PyJsParser
1550 if (self.matchKeyword('this')):
1553 if (self.matchKeyword('class')):
1740 … elif (self.matchKeyword('delete') or self.matchKeyword('void') or self.matchKeyword('typeof')):
2153 if (self.matchKeyword('else')):
2216 if (self.matchKeyword('var')):
2231 elif (self.matchKeyword('const') or self.matchKeyword('let')):
2403 if (self.matchKeyword('default')):
2413 if (self.match('}') or self.matchKeyword('default') or self.matchKeyword('case')):
2500 if (self.matchKeyword('catch')):
[all …]
/dports/devel/py-pyjsparser/pyjsparser-2.7.1/pyjsparser/
H A Dparser.py1084 def matchKeyword(self, keyword): member in PyJsParser
1626 if (self.matchKeyword('this')):
1629 if (self.matchKeyword('class')):
1840 elif (self.matchKeyword('delete') or self.matchKeyword('void')
2207 if (not self.matchKeyword('in')):
2279 if (self.matchKeyword('else')):
2342 if (self.matchKeyword('var')):
2358 elif (self.matchKeyword('const') or self.matchKeyword('let')):
2536 if (self.matchKeyword('default')):
2634 if (self.matchKeyword('catch')):
[all …]
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/js2py/legecy_translators/
H A Dnparser.py1693 def matchKeyword(keyword=None): function
1880 if matchKeyword("this"):
2031 elif (matchKeyword("delete")
2032 or matchKeyword("void")) or matchKeyword("typeof"):
2315 if matchKeyword("else"):
2382 if matchKeyword("var") or matchKeyword("let"):
2395 if matchKeyword("in"):
2509 if matchKeyword("default"):
2517 if (match("}") or matchKeyword("default")) or matchKeyword("case"):
2589 if matchKeyword("catch"):
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/search/public/
H A DnsIMsgSearchTerm.idl137 boolean matchKeyword(in ACString keyword); // used for tag searches