/third_party/selinux/checkpolicy/ |
H A D | policy_parse.y | 180 class_def : CLASS identifier 186 initial_sid_def : SID identifier 197 common_perms_def : COMMON identifier '{' identifier_list '}' 203 av_perms_def : CLASS identifier '{' identifier_list '}' 205 | CLASS identifier INHERITS identifier 207 | CLASS identifier INHERITS identifier '{' identifier_list '}' 260 sensitivity_def : SENSITIVITY identifier alias_def ';' 262 | SENSITIVITY identifier ';' 876 identifier : IDENTIFIER global() label [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | DisplayOptions.java | 322 private final String identifier; field in DisplayOptions.NounClass 324 private NounClass(String identifier) { in NounClass() argument 325 this.identifier = identifier; in NounClass() 341 return this.identifier; in getIdentifier() 345 * @param identifier in lower case such as "feminine" or "masculine" 346 * @return the plural category corresponding to the identifier, or {@code UNDEFINED} 349 public static final NounClass fromIdentifier(String identifier) { in fromIdentifier() argument 350 if (identifier == null) { in fromIdentifier() 355 if (identifier in fromIdentifier() 574 private final String identifier; global() field in DisplayOptions.PluralCategory 576 PluralCategory(String identifier) PluralCategory() argument 601 fromIdentifier(String identifier) fromIdentifier() argument 700 private final String identifier; global() field in DisplayOptions.GrammaticalCase 702 GrammaticalCase(String identifier) GrammaticalCase() argument 727 fromIdentifier(String identifier) fromIdentifier() argument [all...] |
/third_party/node/deps/npm/node_modules/spdx-correct/ |
H A D | index.js | 40 // Common transpositions of license identifier acronyms 284 var validTransformation = function (identifier) { 286 var transformed = transforms[i](identifier).trim() 287 if (transformed !== identifier && valid(transformed)) { 294 var validLastResort = function (identifier) { 295 var upperCased = identifier.toUpperCase() 305 var anyCorrection = function (identifier, check) { 309 if (identifier.indexOf(transposed) > -1) { 310 var corrected = identifier.replace( 323 module.exports = function (identifier, option [all...] |
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgToken.cpp | 31 Token::Token (const char* identifier) in Token() argument 34 m_arg.identifier = deStrdup(identifier); in Token() 35 if (!m_arg.identifier) in Token() 42 deFree(m_arg.identifier); in ~Token() 49 deFree(m_arg.identifier); in operator =() 50 m_arg.identifier = DE_NULL; in operator =() 57 m_arg.identifier = deStrdup(other.m_arg.identifier); in operator =() 58 if (!m_arg.identifier) in operator =() [all...] |
/third_party/node/lib/internal/vm/ |
H A D | module.js | 102 let { identifier } = options; 103 if (identifier !== undefined) { 104 validateString(identifier, 'options.identifier'); 106 identifier = `${defaultModuleName}(${globalModuleId++})`; 109 identifier = `${defaultModuleName}(${curId})`; 112 identifier = `${defaultModuleName}(0)`; 124 this[kWrap] = new ModuleWrap(identifier, context, sourceText, 136 this[kWrap] = new ModuleWrap(identifier, context, 150 get identifier() { [all...] |
/third_party/vk-gl-cts/modules/gles2/scripts/ |
H A D | gen-keywords.py | 53 def __init__(self, name, identifier): 55 self.identifier = identifier 59 "IDENTIFIER" : self.identifier } 103 for (name, identifier) in INVALID_IDENTIFIERS: 104 invalidIdentifiers.append(IdentifierCase(name, identifier)) # Invalid identifiers
|
/third_party/vk-gl-cts/modules/gles3/scripts/ |
H A D | gen-keywords.py | 54 def __init__(self, name, identifier, expectToCompile = True): 56 self.identifier = identifier 61 "IDENTIFIER" : self.identifier, 124 for (name, identifier) in INVALID_IDENTIFIERS: 125 invalidIdentifiers.append(IdentifierCase(name, identifier, False)) # Invalid identifiers
|
/third_party/skia/tools/fonts/ |
H A D | create_test_font.cpp | 192 static void output_font(sk_sp<SkTypeface> face, const char* identifier, FILE* out) { in output_font() argument 204 fprintf(out, "const SkScalar %sPoints[] = {\n", identifier); in output_font() 208 fprintf(out, "const unsigned char %sVerbs[] = {\n", identifier); in output_font() 231 fprintf(out, "const SkUnichar %sCharCodes[] = {\n", identifier); in output_font() 250 fprintf(out, "const SkFixed %sWidths[] = {\n", identifier); in output_font() 258 identifier, identifier); in output_font() 262 fprintf(out, "const SkFontMetrics %sMetrics = {\n", identifier); in output_font() 284 static SkString identifier(const FontFamilyDesc& family, const FontDesc& font) { in identifier() function 299 output_font(std::move(resourceTypeface), identifier(famil in generate_fonts() 322 const char* identifier = identifierStr.c_str(); generate_index() local [all...] |
/third_party/python/Include/internal/ |
H A D | pycore_ast.h | 189 identifier name; 198 identifier name; 207 identifier name; 315 identifier module; 453 identifier attr; 469 identifier id; 509 identifier name; 531 identifier arg; 541 identifier arg; 550 identifier nam [all...] |
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
H A D | MacroExpander.cpp | 246 bool MacroExpander::pushMacro(std::shared_ptr<Macro> macro, const Token &identifier) in pushMacro() argument 249 ASSERT(!identifier.expansionDisabled()); in pushMacro() 250 ASSERT(identifier.type == Token::IDENTIFIER); in pushMacro() 251 ASSERT(identifier.text == macro->name); in pushMacro() 254 if (!expandMacro(*macro, identifier, &replacements)) in pushMacro() 292 const Token &identifier, in expandMacro() 298 // from the identifier, but in the case of a function-like macro, the replacement in expandMacro() 301 SourceLocation replacementLocation = identifier.location; in expandMacro() 315 repl.text = ToString(identifier.location.line); in expandMacro() 319 repl.text = ToString(identifier in expandMacro() 291 expandMacro(const Macro ¯o, const Token &identifier, std::vector<Token> *replacements) expandMacro() argument 349 collectMacroArgs(const Macro ¯o, const Token &identifier, std::vector<MacroArg> *args, SourceLocation *closingParenthesisLocation) collectMacroArgs() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
H A D | MacroExpander.cpp | 252 bool MacroExpander::pushMacro(std::shared_ptr<Macro> macro, const Token &identifier) in pushMacro() argument 255 assert(!identifier.expansionDisabled()); in pushMacro() 256 assert(identifier.type == Token::IDENTIFIER); in pushMacro() 257 assert(identifier.text == macro->name); in pushMacro() 260 if (!expandMacro(*macro, identifier, &replacements)) in pushMacro() 298 const Token &identifier, in expandMacro() 304 // from the identifier, but in the case of a function-like macro, the replacement in expandMacro() 307 SourceLocation replacementLocation = identifier.location; in expandMacro() 321 repl.text = std::to_string(identifier.location.line); in expandMacro() 325 repl.text = std::to_string(identifier in expandMacro() 297 expandMacro(const Macro ¯o, const Token &identifier, std::vector<Token> *replacements) expandMacro() argument 355 collectMacroArgs(const Macro ¯o, const Token &identifier, std::vector<MacroArg> *args, SourceLocation *closingParenthesisLocation) collectMacroArgs() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
H A D | MeasureUnitImpl.java | 20 * The full unit identifier. Null if not computed. 22 private String identifier = null; field in MeasureUnitImpl 47 * Parse a unit identifier into a MeasureUnitImpl. 49 * @param identifier The unit identifier string. 51 * @throws IllegalArgumentException in case of incorrect/non-parsed identifier. 53 public static MeasureUnitImpl forIdentifier(String identifier) { in forIdentifier() argument 54 return UnitsParser.parseForIdentifier(identifier); in forIdentifier() 62 result.identifier = currencyCode; in forCurrencyCode() 69 result.identifier in copy() 429 UnitsParser(String identifier) UnitsParser() argument 489 parseForIdentifier(String identifier) parseForIdentifier() argument [all...] |
H A D | UnitsData.java | 75 String identifier = baseMeasureUnitImpl.getIdentifier(); in getCategory() 78 Integer index = Categories.baseUnitToIndex.get(identifier); in getCategory() 80 // In case the base unit identifier did not match any entry. in getCategory() 84 identifier = baseMeasureUnitImpl.getIdentifier(); in getCategory() 85 index = Categories.baseUnitToIndex.get(identifier); in getCategory() 88 // In case the reciprocal of the base unit identifier did not match any entry. in getCategory() 93 identifier = simplifiedUnit.getIdentifier(); in getCategory() 94 index = Categories.baseUnitToIndex.get(identifier); in getCategory() 97 // In case the simplified base unit identifier did not match any entry. in getCategory() 101 identifier in getCategory() [all...] |
/third_party/mesa3d/src/compiler/glsl/ |
H A D | hir_field_selection.cpp | 51 expr->primary_expression.identifier); in _mesa_ast_field_selection_to_hir() 56 expr->primary_expression.identifier); in _mesa_ast_field_selection_to_hir() 61 expr->primary_expression.identifier, in _mesa_ast_field_selection_to_hir() 71 expr->primary_expression.identifier); in _mesa_ast_field_selection_to_hir() 76 expr->primary_expression.identifier); in _mesa_ast_field_selection_to_hir()
|
/third_party/mesa3d/src/compiler/glsl/glcpp/ |
H A D | glcpp-parse.y | 112 _parser_active_list_push(glcpp_parser_t *parser, const char *identifier, 119 _parser_active_list_contains(glcpp_parser_t *parser, const char *identifier); 1651 * If the identifier is a defined macro, this function returns 1. 1653 * If the identifier is not a defined macro, this function returns 0. 1656 * consumed by the evaluation, (either the token of the identifier or the 1698 /* Ignore whitespace after identifier, before ')' token. */ 1715 "\"defined\" not followed by an identifier"); 1833 * although 'node' corresponds to an identifier defined as a 1854 const char *identifier; 1860 identifier [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | SpirvBinary.cpp | 22 : identifier(serialCounter++) in SpirvBinary() 27 , identifier(serialCounter++) in SpirvBinary() 35 identifier = ~unoptimized.identifier; in mapOptimizedIdentifier()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp_pkex.c | 43 /* Qi = H([MAC-Initiator |] [identifier |] code) * Pi */ in dpp_pkex_build_exchange_req() 45 pkex->identifier, &ec); in dpp_pkex_build_exchange_req() 79 /* Initiator -> Responder: group, [identifier,] M */ in dpp_pkex_build_exchange_req() 85 if (pkex->identifier) in dpp_pkex_build_exchange_req() 86 attr_len += 4 + os_strlen(pkex->identifier); in dpp_pkex_build_exchange_req() 119 if (pkex->identifier) { in dpp_pkex_build_exchange_req() 121 wpabuf_put_le16(msg, os_strlen(pkex->identifier)); in dpp_pkex_build_exchange_req() 122 wpabuf_put_str(msg, pkex->identifier); in dpp_pkex_build_exchange_req() 173 const char *identifier, const char *code, in dpp_pkex_init() 194 if (identifier) { in dpp_pkex_init() 171 dpp_pkex_init(void *msg_ctx, struct dpp_bootstrap_info *bi, const u8 *own_mac, const char *identifier, const char *code, bool v2) dpp_pkex_init() argument 312 dpp_pkex_identifier_match(const u8 *attr_id, u16 attr_id_len, const char *identifier) dpp_pkex_identifier_match() argument 338 dpp_pkex_rx_exchange_req(void *msg_ctx, struct dpp_bootstrap_info *bi, const u8 *own_mac, const u8 *peer_mac, const char *identifier, const char *code, const u8 *buf, size_t len, bool v2) dpp_pkex_rx_exchange_req() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | ParseHelper.h | 67 bool lexAfterType; // true if we've recognized a type, so can only be looking for an identifier 68 bool inTypeParen; // true if in parentheses, looking only for an identifier 118 bool reservedErrorCheck(const TSourceLoc &line, const TString& identifier); 138 bool nonInitConstErrorCheck(const TSourceLoc &line, TString& identifier, TPublicType& type, bool array); 139 bool nonInitErrorCheck(const TSourceLoc &line, const TString& identifier, TPublicType& type); 157 bool executeInitializer(const TSourceLoc &line, const TString &identifier, const TPublicType &pType, 163 TIntermAggregate *parseSingleDeclaration(TPublicType &publicType, const TSourceLoc &identifierOrTypeLocation, const TString &identifier); 164 TIntermAggregate *parseSingleArrayDeclaration(TPublicType &publicType, const TSourceLoc &identifierLocation, const TString &identifier, 166 TIntermAggregate *parseSingleInitDeclaration(const TPublicType &publicType, const TSourceLoc &identifierLocation, const TString &identifier, 171 TIntermAggregate *parseSingleArrayInitDeclaration(TPublicType &publicType, const TSourceLoc &identifierLocation, const TString &identifier, [all...] |
/third_party/gn/src/gn/ |
H A D | parse_node_value_adapter.cc | 17 const IdentifierNode* identifier = node->AsIdentifier(); in Init() local 18 if (identifier) { in Init() 19 ref_ = scope->GetValue(identifier->value().value(), true); in Init() 21 identifier->MakeErrorDescribing("Undefined identifier"); in Init() 41 // identifier node rather than the original value. in InitForType()
|
/third_party/ffmpeg/libavformat/ |
H A D | dash.c | 43 static DASHTmplId dash_read_tmpl_id(const char *identifier, char *format_tag, in dash_read_tmpl_id() argument 48 if (av_strstart(identifier, "$$", &next_ptr)) { in dash_read_tmpl_id() 51 } else if (av_strstart(identifier, "$RepresentationID$", &next_ptr)) { in dash_read_tmpl_id() 58 if (av_strstart(identifier, "$Number", &next_ptr)) in dash_read_tmpl_id() 60 else if (av_strstart(identifier, "$Bandwidth", &next_ptr)) in dash_read_tmpl_id() 62 else if (av_strstart(identifier, "$Time", &next_ptr)) in dash_read_tmpl_id() 146 // t_next points just past the processed identifier in ff_dash_fill_tmpl_params()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | displayoptions.cpp | 87 udispopt_fromGrammaticalCaseIdentifier(const char *identifier) { in udispopt_fromGrammaticalCaseIdentifier() argument 89 if (uprv_strcmp(identifier, grammaticalCaseIds[i]) == 0) { in udispopt_fromGrammaticalCaseIdentifier() 121 udispopt_fromPluralCategoryIdentifier(const char *identifier) { in udispopt_fromPluralCategoryIdentifier() argument 123 if (uprv_strcmp(identifier, pluralCategoryIds[i]) == 0) { in udispopt_fromPluralCategoryIdentifier() 157 udispopt_fromNounClassIdentifier(const char *identifier) { in udispopt_fromNounClassIdentifier() argument 159 if (uprv_strcmp(identifier, nounClassIds[i]) == 0) { in udispopt_fromNounClassIdentifier()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | displayoptions.cpp | 87 udispopt_fromGrammaticalCaseIdentifier(const char *identifier) { in udispopt_fromGrammaticalCaseIdentifier() argument 89 if (uprv_strcmp(identifier, grammaticalCaseIds[i]) == 0) { in udispopt_fromGrammaticalCaseIdentifier() 121 udispopt_fromPluralCategoryIdentifier(const char *identifier) { in udispopt_fromPluralCategoryIdentifier() argument 123 if (uprv_strcmp(identifier, pluralCategoryIds[i]) == 0) { in udispopt_fromPluralCategoryIdentifier() 157 udispopt_fromNounClassIdentifier(const char *identifier) { in udispopt_fromNounClassIdentifier() argument 159 if (uprv_strcmp(identifier, nounClassIds[i]) == 0) { in udispopt_fromNounClassIdentifier()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ParseContext.h | 125 bool checkIsNotReserved(const TSourceLoc &line, const ImmutableString &identifier); 143 const ImmutableString &identifier, 210 void adjustRedeclaredBuiltInType(const ImmutableString &identifier, TType *type); 215 const ImmutableString &identifier, 220 const ImmutableString &identifier, 240 const ImmutableString &identifier); 243 const ImmutableString &identifier, 248 const ImmutableString &identifier, 256 const ImmutableString &identifier, 265 const ImmutableString &identifier, [all...] |
/third_party/alsa-lib/include/ |
H A D | use-case.h | 198 * \brief Create an identifier 201 * \return Allocated string identifier or NULL on error 216 * \param identifier (may be NULL - card list) 242 const char *identifier, 249 * \param identifier 265 * - value identifier {NAME} 327 * - playback control volume identifier string 330 * - playback control switch identifier string 347 * - capture control volume identifier string 350 * - capture control switch identifier strin [all...] |
/third_party/mesa3d/src/amd/common/ |
H A D | ac_sqtt.h | 133 uint32_t identifier : 4; member 164 uint32_t identifier : 4; member 245 uint32_t identifier : 4; member 301 uint32_t identifier : 4; member 345 uint32_t identifier : 4; member 370 uint32_t identifier : 4; member 410 uint32_t identifier : 4; member 442 uint32_t identifier : 4; member 472 uint32_t identifier : 4; member
|