Home
last modified time | relevance | path

Searched refs:keyword (Results 201 - 225 of 274) sorted by relevance

1234567891011

/third_party/skia/third_party/externals/freetype/src/type42/
H A Dt42parse.c946 /* We stop when we find an `end' keyword or '>' */ in t42_parse_charstrings()
1119 /* if the keyword has a dedicated callback, call it */ in t42_load_keyword()
1127 /* now the keyword is either a simple field or a table of fields; */ in t42_load_keyword()
1197 /* skip the `FontDirectory' keyword */ in FT_LOCAL_DEF()
1202 /* look up the `known' keyword */ in FT_LOCAL_DEF()
1221 /* skip the `known' keyword and the token following it */ in FT_LOCAL_DEF()
1252 /* now compare the immediate name to the keyword table */ in FT_LOCAL_DEF()
1257 T1_Field keyword = (T1_Field)&t42_keywords[i]; in FT_LOCAL_DEF() local
1258 FT_Byte *name = (FT_Byte*)keyword->ident; in FT_LOCAL_DEF()
1271 keyword ); in FT_LOCAL_DEF()
[all...]
/kernel/linux/linux-5.10/drivers/s390/crypto/
H A Dzcrypt_ccamisc.h205 const char *keyword,
/kernel/linux/linux-6.6/drivers/s390/crypto/
H A Dzcrypt_ccamisc.h205 const char *keyword,
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
H A DStableAPI.java576 * Remove the virtual keyword in Cpp prototype
1054 for (String keyword : format_keywords) { in formatCode()
1055 if (str.startsWith(keyword)) { in formatCode()
1056 str = str.replaceFirst(keyword, "<tt>" + keyword + "</tt>"); in formatCode()
/third_party/node/lib/
H A Drepl.js830 function _parseREPLKeyword(keyword, rest) {
831 const cmd = this.commands[keyword];
906 // Check to see if a REPL keyword was used. If it returns true,
913 const keyword = matches && matches[1];
915 if (ReflectApply(_parseREPLKeyword, self, [keyword, rest]) === true) {
919 self.output.write('Invalid REPL keyword\n');
1637 REPLServer.prototype.defineCommand = function(keyword, cmd) {
1643 this.commands[keyword] = cmd;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUResourceBundle.java99 * Returns a functionally equivalent locale, considering keywords as well, for the specified keyword.
102 * @param keyword a particular keyword to consider (such as "collation" )
107 * @param omitDefault if true, omit keyword and value if default.
113 String resName, String keyword, ULocale locID, in getFunctionalEquivalent()
115 String kwVal = locID.getKeywordValue(keyword); in getFunctionalEquivalent()
127 kwVal = ""; // default tag is treated as no keyword in getFunctionalEquivalent()
176 // we need to re calculate the "default" keyword. in getFunctionalEquivalent()
215 // we need to re calculate the "default" keyword. in getFunctionalEquivalent()
233 "Could not find locale containing requested or default keyword in getFunctionalEquivalent()
112 getFunctionalEquivalent(String baseName, ClassLoader loader, String resName, String keyword, ULocale locID, boolean isAvailable[], boolean omitDefault) getFunctionalEquivalent() argument
253 getKeywordValues(String baseName, String keyword) getKeywordValues() argument
[all...]
/third_party/node/deps/v8/third_party/jinja2/
H A Dcompiler.py6 from keyword import iskeyword as is_python_keyword
413 A leading comma is added automatically. The extra keyword
415 error could occur. The extra keyword arguments should be given
418 # if any of the given keyword arguments is a python keyword
1825 for keyword in node.options:
1826 self.writeline("context.eval_ctx.%s = " % keyword.key)
1827 self.visit(keyword.value, frame)
1829 val = keyword.value.as_const(frame.eval_ctx)
1833 setattr(frame.eval_ctx, keyword
[all...]
/third_party/node/tools/inspector_protocol/jinja2/
H A Dcompiler.py13 from keyword import iskeyword as is_python_keyword
411 A leading comma is added automatically. The extra keyword
413 error could occour. The extra keyword arguments should be given
416 # if any of the given keyword arguments is a python keyword
1703 for keyword in node.options:
1704 self.writeline('context.eval_ctx.%s = ' % keyword.key)
1705 self.visit(keyword.value, frame)
1707 val = keyword.value.as_const(frame.eval_ctx)
1711 setattr(frame.eval_ctx, keyword
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Dcompiler.py6 from keyword import iskeyword as is_python_keyword
413 A leading comma is added automatically. The extra keyword
415 error could occur. The extra keyword arguments should be given
418 # if any of the given keyword arguments is a python keyword
1825 for keyword in node.options:
1826 self.writeline("context.eval_ctx.%s = " % keyword.key)
1827 self.visit(keyword.value, frame)
1829 val = keyword.value.as_const(frame.eval_ctx)
1833 setattr(frame.eval_ctx, keyword
[all...]
/third_party/skia/third_party/externals/freetype/src/type1/
H A Dt1load.c51 * callback when it encounters an immediate keyword.
1223 /* if the keyword has a dedicated callback, call it */ in t1_load_keyword()
1233 /* now, the keyword is either a simple field, or a table of fields; */ in t1_load_keyword()
1319 FT_TRACE1(( "t1_load_keyword: ignoring keyword `%s'" in t1_load_keyword()
1993 /* we stop when we find a `def' or `end' keyword */ in parse_charstrings()
2377 /* now compare the immediate name to the keyword table */ in parse_dict()
2378 T1_Field keyword = (T1_Field)t1_keywords; in parse_dict() local
2386 name = (FT_Byte*)keyword->ident; in parse_dict()
2427 if ( !( dict & keyword->dict ) ) in parse_dict()
2431 keyword in parse_dict()
[all...]
/kernel/linux/linux-5.10/security/tomoyo/
H A Dutil.c108 * @keyword: Keyword to find from @string/
110 * Returns true if @keyword was found in @string, false otherwise.
114 bool tomoyo_permstr(const char *string, const char *keyword) in tomoyo_permstr() argument
116 const char *cp = strstr(string, keyword); in tomoyo_permstr()
374 * tomoyo_str_starts - Check whether the given string starts with the given keyword.
377 * @find: Pointer to the keyword.
/kernel/linux/linux-6.6/drivers/usb/typec/ucsi/
H A Ducsi_stm32g0.c56 u32 keyword; member
509 /* Sanity check on keyword and firmware version */ in ucsi_stm32g0_fw_cb()
510 if (fw_info->keyword != STM32G0_FW_KEYWORD || fw_info->version == fw_version) in ucsi_stm32g0_fw_cb()
/kernel/linux/linux-6.6/security/tomoyo/
H A Dutil.c108 * @keyword: Keyword to find from @string/
110 * Returns true if @keyword was found in @string, false otherwise.
114 bool tomoyo_permstr(const char *string, const char *keyword) in tomoyo_permstr() argument
116 const char *cp = strstr(string, keyword); in tomoyo_permstr()
374 * tomoyo_str_starts - Check whether the given string starts with the given keyword.
377 * @find: Pointer to the keyword.
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DdumpICUrules.bat269 # ignore CVS keyword substitutions
381 # ignore CVS keyword substitutions
/third_party/node/deps/v8/src/torque/
H A Dearley-parser.h384 // The term keyword here can stand for any fixed character sequence, including
386 // Each pattern or keyword automatically gets a terminal symbol associated with
389 // longest matching pattern coincides with a keyword, the keyword symbol is
405 Symbol* Token(const std::string& keyword) { return &keywords_[keyword]; } in Token() argument
/third_party/skia/tests/
H A DEncodeTest.cpp222 std::vector<std::string>& comments, const char* keyword, const char* text) { in pushComment()
223 comments.push_back(keyword); in pushComment()
221 pushComment( std::vector<std::string>& comments, const char* keyword, const char* text) pushComment() argument
/third_party/skia/third_party/externals/libpng/
H A Dpngrutil.c1385 /* The keyword must be at least one character and there is a in png_handle_iCCP()
1409 char keyword[81]; in png_handle_iCCP() local
1411 /* Find the keyword; the keyword plus separator and compression method in png_handle_iCCP()
1418 png_crc_read(png_ptr, (png_bytep)keyword, read_length); in png_handle_iCCP()
1433 keyword[keyword_length] != 0) in png_handle_iCCP()
1436 /* TODO: make the keyword checking common */ in png_handle_iCCP()
1443 keyword[keyword_length+1] == PNG_COMPRESSION_TYPE_BASE) in png_handle_iCCP()
1453 png_ptr->zstream.next_in = (Bytef*)keyword + (keyword_length+2); in png_handle_iCCP()
1466 keyword, profile_lengt in png_handle_iCCP()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dpngdec.c528 const uint8_t *keyword = data; in decode_text_chunk() local
529 const uint8_t *keyword_end = memchr(keyword, 0, data_end - keyword); in decode_text_chunk()
555 kw_utf8 = iso88591_to_utf8(keyword, keyword_end - keyword); in decode_text_chunk()
/third_party/jinja2/
H A Dcompiler.py7 from keyword import iskeyword as is_python_keyword
488 A leading comma is added automatically. The extra keyword
490 error could occur. The extra keyword arguments should be given
493 # if any of the given keyword arguments is a python keyword
1936 for keyword in node.options:
1937 self.writeline(f"context.eval_ctx.{keyword.key} = ")
1938 self.visit(keyword.value, frame)
1940 val = keyword.value.as_const(frame.eval_ctx)
1944 setattr(frame.eval_ctx, keyword
[all...]
/third_party/python/Lib/idlelib/
H A Dhyperparser.py7 from keyword import iskeyword
159 # i.e. keyword.iskeyword() returns True for them
/third_party/icu/icu4c/source/test/intltest/
H A Drbbimonkeytest.cpp232 bool BreakRules::setKeywordParameter(const UnicodeString &keyword, const UnicodeString &value, UErrorCode &status) { in setKeywordParameter() argument
233 if (keyword == UnicodeString("locale")) { in setKeywordParameter()
239 if (keyword == UnicodeString("type")) { in setKeywordParameter()
307 // Recognize character class definition and keyword lines in compileRules()
/kernel/linux/linux-5.10/lib/
H A Ddynamic_debug.c361 * of (keyword, value) pairs chosen from these possibilities:
388 char *keyword = words[i]; in ddebug_parse_query() local
391 if (!strcmp(keyword, "func")) { in ddebug_parse_query()
393 } else if (!strcmp(keyword, "file")) { in ddebug_parse_query()
410 } else if (!strcmp(keyword, "module")) { in ddebug_parse_query()
412 } else if (!strcmp(keyword, "format")) { in ddebug_parse_query()
417 } else if (!strcmp(keyword, "line")) { in ddebug_parse_query()
421 pr_err("unknown keyword \"%s\"\n", keyword); in ddebug_parse_query()
/third_party/python/Lib/
H A Ddataclasses.py6 import keyword namespace
169 # tuple of __init__ parameter names; non-init fields must be matched by keyword.
189 # A sentinel object to indicate that following fields are keyword-only by
380 is true, the field will become a keyword-only parameter to
394 # the first for normal args, and the second for keyword args.
575 # Add the keyword-only args. Because the * can only be added if
576 # there's at least one keyword-only arg, there needs to be a test here
1215 all fields are keyword-only. If slots is true, a new class with a
1428 if keyword.iskeyword(name):
/third_party/ltp/tools/sparse/sparse-src/
H A Dparse.c440 * Define the keyword and their effects.
442 * are automatically set as reserved keyword while the ones
443 * in the 'keyword' table are just put in NS_KEYWORD.
589 sym->ident->keyword = 1; in init_keyword()
610 sym->ident->keyword = 1; in init_parser()
1630 struct symbol *keyword; in handle_asm_name() local
1634 keyword = lookup_keyword(token->ident, NS_KEYWORD); in handle_asm_name()
1635 if (!keyword) in handle_asm_name()
1637 if (!(keyword->op->type & KW_ASM)) in handle_asm_name()
/third_party/icu/icu4c/source/i18n/
H A Dplurrule_impl.h406 UBool isKeyword(const UnicodeString& keyword) const;

Completed in 40 milliseconds

1234567891011