| /freebsd-14-stable/contrib/llvm-project/clang/include/clang/AST/ |
| HD | NestedNameSpecifier.h | 10 // a C++ nested-name-specifier. 40 /// Represents a C++ nested name specifier, such as 45 /// specifier. Nested name specifiers are made up of a sequence of 47 /// (for dependent names), decltype specifier, or the global specifier ('::'). 49 /// nested-namespace-specifier. 59 /// The nested name specifier that precedes this nested name 60 /// specifier. 62 /// The pointer is the nested-name-specifier that precedes this 67 /// The last component in the nested name specifier, which 70 /// When the pointer is NULL, this specifier represents the global [all …]
|
| /freebsd-14-stable/contrib/wpa/src/eap_peer/ |
| HD | eap_gpsk.c | 32 int vendor; /* CSuite/Specifier */ 33 int specifier; /* CSuite/Specifier */ member 202 data->specifier = EAP_GPSK_CIPHER_RESERVED; in eap_gpsk_select_csuite() 205 int vendor, specifier; in eap_gpsk_select_csuite() local 207 specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_select_csuite() 209 i, vendor, specifier); in eap_gpsk_select_csuite() 211 data->specifier == EAP_GPSK_CIPHER_RESERVED && in eap_gpsk_select_csuite() 212 eap_gpsk_supported_ciphersuite(vendor, specifier) && in eap_gpsk_select_csuite() 213 (!data->forced_cipher || data->forced_cipher == specifier)) in eap_gpsk_select_csuite() 216 data->specifier = specifier; in eap_gpsk_select_csuite() [all …]
|
| /freebsd-14-stable/contrib/wpa/src/eap_common/ |
| HD | eap_gpsk_common.c | 21 * @specifier: CSuite/Specifier 24 int eap_gpsk_supported_ciphersuite(int vendor, int specifier) in eap_gpsk_supported_ciphersuite() argument 27 specifier == EAP_GPSK_CIPHER_AES) in eap_gpsk_supported_ciphersuite() 31 specifier == EAP_GPSK_CIPHER_SHA256) in eap_gpsk_supported_ciphersuite() 151 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */ in eap_gpsk_derive_keys_helper() 264 * @specifier: CSuite/Specifier 280 int specifier, in eap_gpsk_derive_keys() argument 291 vendor, specifier); in eap_gpsk_derive_keys() 317 switch (specifier) { in eap_gpsk_derive_keys() 332 "key derivation", vendor, specifier); in eap_gpsk_derive_keys() [all …]
|
| HD | eap_gpsk_common.h | 41 u8 specifier[2]; member 48 int eap_gpsk_supported_ciphersuite(int vendor, int specifier); 50 int specifier, 57 int specifier, 62 size_t eap_gpsk_mic_len(int vendor, int specifier); 64 int specifier, const u8 *data, size_t len, u8 *mic);
|
| /freebsd-14-stable/contrib/llvm-project/clang/lib/Parse/ |
| HD | ParseTentative.cpp | 38 /// 'namespace' identifier = qualified-namespace-specifier ';' 41 /// 'using' typename[opt] '::'[opt] nested-name-specifier 46 /// 'using' 'namespace' '::'[opt] nested-name-specifier[opt] 69 // Parse the C++ scope specifier. in isCXXDeclarationStatement() 123 /// decl-specifier-seq init-declarator-list[opt] ';' 124 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']' 131 /// decl-specifier-seq declarator 132 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']' 134 /// In any of the above cases there can be a preceding attribute-specifier-seq, 154 // We don't have to parse all of the decl-specifier-seq part. There's only in isCXXSimpleDeclaration() [all …]
|
| HD | ParseDeclCXX.cpp | 54 /// 'namespace' enclosing-namespace-specifier '::' 'inline'[opt] 57 /// enclosing-namespace-specifier: 59 /// enclosing-namespace-specifier '::' 'inline'[opt] identifier 62 /// 'namespace' identifier '=' qualified-namespace-specifier ';' 318 // Parse (optional) nested-name-specifier. in ParseNamespaceAlias() 537 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt] 540 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt] 559 // Parse (optional) nested-name-specifier. in ParseUsingDirective() 612 /// 'typename'[opt] nested-name-specifier unqualified-id 619 // FIXME: This is wrong; we should parse this as a typename-specifier. in ParseUsingDeclarator() [all …]
|
| HD | ParseExprCXX.cpp | 110 /// Parse global scope or nested-name-specifier if present. 112 /// Parses a C++ global scope specifier ('::') or nested-name-specifier (which 116 /// '::'[opt] nested-name-specifier 119 /// nested-name-specifier: 122 /// nested-name-specifier identifier '::' 123 /// nested-name-specifier 'template'[opt] simple-template-id '::' 126 /// \param SS the scope specifier that will be set to the parsed 127 /// nested-name-specifier (or empty) 129 /// \param ObjectType if this nested-name-specifier is being parsed following 138 /// the nested-name-specifier after parsing it. [all …]
|
| /freebsd-14-stable/contrib/llvm-project/clang/lib/Basic/ |
| HD | Warnings.cpp | 129 // table. It also has the "specifier" form of -Werror=foo. GCC supports in ProcessWarningOptions() 133 StringRef Specifier; in ProcessWarningOptions() local 134 if (Opt.size() > 5) { // Specifier must be present. in ProcessWarningOptions() 142 Specifier = Opt.substr(6); in ProcessWarningOptions() 145 if (Specifier.empty()) { in ProcessWarningOptions() 152 // Set the warning as error flag for this specifier. in ProcessWarningOptions() 153 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive); in ProcessWarningOptions() 154 } else if (DiagIDs->getDiagnosticsInGroup(Flavor, Specifier, _Diags)) { in ProcessWarningOptions() 155 EmitUnknownDiagWarning(Diags, Flavor, "-Werror=", Specifier); in ProcessWarningOptions() 162 StringRef Specifier; in ProcessWarningOptions() local [all …]
|
| /freebsd-14-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | NestedNameSpecifier.cpp | 10 // a C++ nested-name-specifier. 67 Mockup.Specifier = const_cast<IdentifierInfo *>(II); in Create() 79 "Broken nested name specifier"); in Create() 83 Mockup.Specifier = const_cast<NamespaceDecl *>(NS); in Create() 95 "Broken nested name specifier"); in Create() 99 Mockup.Specifier = const_cast<NamespaceAliasDecl *>(Alias); in Create() 111 Mockup.Specifier = const_cast<Type*>(T); in Create() 121 Mockup.Specifier = const_cast<IdentifierInfo *>(II); in Create() 139 Mockup.Specifier = RD; in SuperSpecifier() 144 if (!Specifier) in getKind() [all …]
|
| HD | CXXInheritance.cpp | 82 [BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { in isDerivedFrom() argument 83 return Specifier->getType()->getAsRecordDecl() && in isDerivedFrom() 84 FindBaseClass(Specifier, Path, BaseDecl); in isDerivedFrom() 103 [BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { in isVirtuallyDerivedFrom() argument 104 return FindVirtualBaseClass(Specifier, Path, BaseDecl); in isVirtuallyDerivedFrom() 200 // Add this base specifier to the current path. in lookupInBases() 289 // Pop this base specifier off the current path (if we're in lookupInBases() 363 bool CXXRecordDecl::FindBaseClass(const CXXBaseSpecifier *Specifier, in FindBaseClass() argument 368 return Specifier->getType()->castAs<RecordType>()->getDecl() in FindBaseClass() 372 bool CXXRecordDecl::FindVirtualBaseClass(const CXXBaseSpecifier *Specifier, in FindVirtualBaseClass() argument [all …]
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/MC/ |
| HD | MCSectionMachO.cpp | 137 // the attribute specifier. in printSwitchToSection() 176 /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec". 180 /// specifier is present, this returns a string indicating the problem. 204 "mach-o section specifier requires a segment " in ParseSectionSpecifier() 210 "mach-o section specifier requires a section " in ParseSectionSpecifier() 229 "mach-o section specifier uses an unknown " in ParseSectionSpecifier() 238 // S_SYMBOL_STUBS always require a symbol stub size specifier. in ParseSectionSpecifier() 241 "mach-o section specifier of type " in ParseSectionSpecifier() 242 "'symbol_stubs' requires a size specifier"); in ParseSectionSpecifier() 258 "mach-o section specifier has invalid " in ParseSectionSpecifier() [all …]
|
| /freebsd-14-stable/contrib/wpa/src/eap_server/ |
| HD | eap_server_gpsk.c | 35 int specifier; /* CSuite/Specifier */ member 79 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init() 87 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init() 154 miclen = eap_gpsk_mic_len(data->vendor, data->specifier); in eap_gpsk_build_gpsk_3() 175 WPA_PUT_BE16(csuite->specifier, data->specifier); in eap_gpsk_build_gpsk_3() 182 data->specifier, start, pos - start, pos) < 0) in eap_gpsk_build_gpsk_3() 374 WPA_GET_BE16(csuite->specifier)); in eap_gpsk_process_gpsk_2() 379 data->specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_process_gpsk_2() 381 data->vendor, data->specifier); in eap_gpsk_process_gpsk_2() 409 data->vendor, data->specifier, in eap_gpsk_process_gpsk_2() [all …]
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/net/ |
| D | sff,sfp.txt | 15 - mod-def0-gpios : GPIO phandle and a specifier of the MOD-DEF0 (AKA Mod_ABS) 19 - los-gpios : GPIO phandle and a specifier of the Receiver Loss of Signal 22 - tx-fault-gpios : GPIO phandle and a specifier of the Module Transmitter 25 - tx-disable-gpios : GPIO phandle and a specifier of the Transmitter Disable 28 - rate-select0-gpios : GPIO phandle and a specifier of the Rx Signaling Rate 32 - rate-select1-gpios : GPIO phandle and a specifier of the Tx Signaling Rate
|
| D | sff,sfp.yaml | 35 GPIO phandle and a specifier of the MOD-DEF0 (AKA Mod_ABS) module 42 GPIO phandle and a specifier of the Receiver Loss of Signal Indication 48 GPIO phandle and a specifier of the Module Transmitter Fault input gpio 54 GPIO phandle and a specifier of the Transmitter Disable output gpio 60 GPIO phandle and a specifier of the Rx Signaling Rate Select (AKA RS0) 67 GPIO phandle and a specifier of the Tx Signaling Rate Select (AKA RS1)
|
| HD | nokia-bluetooth.txt | 16 - reset-gpios: GPIO specifier, used to reset the BT module (active low) 17 - bluetooth-wakeup-gpios: GPIO specifier, used to wakeup the BT module (active high) 18 - host-wakeup-gpios: GPIO specifier, used to wakeup the host processor (active high) 20 - clocks: should contain a clock specifier for every name in clock-names
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/display/imx/ |
| D | nxp,imx8mq-dcss.yaml | 60 - description: Phandle and clock specifier of IMX8MQ_CLK_DISP_AXI_ROOT 61 - description: Phandle and clock specifier of IMX8MQ_CLK_DISP_RTRM 62 - description: Phandle and clock specifier of either IMX8MQ_VIDEO2_PLL1_REF_SEL or 67 - description: Phandle and clock specifier of IMX8MQ_SYS1_PLL_800M 68 - description: Phandle and clock specifier of IMX8MQ_SYS1_PLL_800M 69 - description: Phandle and clock specifier of IMX8MQ_CLK_27M
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
| HD | PDBContext.cpp | 36 DILineInfoSpecifier Specifier) { in getLineInfoForAddress() argument 38 Result.FunctionName = getFunctionName(Address.Address, Specifier.FNKind); in getLineInfoForAddress() 60 Specifier.FLIKind != DILineInfoSpecifier::FileLineInfoKind::None) in getLineInfoForAddress() 77 DILineInfoSpecifier Specifier) { in getLineInfoForAddressRange() argument 88 {LineInfo->getVirtualAddress(), Address.SectionIndex}, Specifier); in getLineInfoForAddressRange() 96 DILineInfoSpecifier Specifier) { in getInliningInfoForAddress() argument 98 DILineInfo CurrentLine = getLineInfoForAddress(Address, Specifier); in getInliningInfoForAddress() 127 Specifier.FLIKind != DILineInfoSpecifier::FileLineInfoKind::None) in getInliningInfoForAddress()
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/pwm/ |
| HD | pwm.txt | 11 single-pwm ::= <pwm-phandle> <pwm-specifier> 13 pwm-specifier : array of #pwm-cells specifying the given PWM 43 pwm-specifier typically encodes the chip-relative PWM number and the PWM 46 Optionally, the pwm-specifier can encode a number of flags (defined in 50 Example with optional PWM specifier for inverse polarity
|
| /freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/ |
| HD | SemaCXXScopeSpec.cpp | 61 // If this nested-name-specifier refers to the current in computeDeclContext() 76 // We are entering the context of the nested name specifier, so try to in computeDeclContext() 77 // match the nested name specifier to either a primary class template in computeDeclContext() 113 "specifier in SFINAE context?"); in computeDeclContext() 122 // If the type of the nested name specifier is the same as the in computeDeclContext() 131 // The nested name specifier refers to a member of a class template. in computeDeclContext() 141 llvm_unreachable("Dependent nested-name-specifier has no DeclContext"); in computeDeclContext() 152 assert(Tag && "Non-tag type in nested-name-specifier"); in computeDeclContext() 175 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed"); in getCurrentInstantiationOf() 334 // a typedef thereof. If so, build the nested-name-specifier. in isAcceptableNestedNameSpecifier() [all …]
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/serial/ |
| HD | serial.yaml | 31 Must contain a GPIO specifier, referring to the GPIO pin to be used as 37 Must contain a GPIO specifier, referring to the GPIO pin to be used as 43 Must contain a GPIO specifier, referring to the GPIO pin to be used as 49 Must contain a GPIO specifier, referring to the GPIO pin to be used as 55 Must contain a GPIO specifier, referring to the GPIO pin to be used as 61 Must contain a GPIO specifier, referring to the GPIO pin to be used as
|
| /freebsd-14-stable/contrib/llvm-project/clang/include/clang/Sema/ |
| HD | DeclSpec.h | 54 /// Represents a C++ nested-name-specifier or a global scope specifier. 94 /// Retrieve the representation of the nested-name-specifier. 99 /// Extend the current nested-name-specifier by another 100 /// nested-name-specifier component of the form 'type::'. 102 /// \param Context The AST context in which this nested-name-specifier 113 /// Extend the current nested-name-specifier by another 114 /// nested-name-specifier component of the form 'identifier::'. 116 /// \param Context The AST context in which this nested-name-specifier 127 /// Extend the current nested-name-specifier by another 128 /// nested-name-specifier component of the form 'namespace::'. [all …]
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/media/ |
| D | renesas,imr.txt | 17 - interrupts: single interrupt specifier; 18 - clocks: single clock phandle/specifier pair; 19 - power-domains: power domain phandle/specifier pair; 20 - resets: reset phandle/specifier pair.
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/iio/ |
| HD | iio-bindings.txt | 6 nodes use a phandle and IIO specifier pair to connect IIO provider 8 specifier is an array of one or more cells identifying the IIO 9 output on a device. The length of an IIO specifier is defined by the 17 #io-channel-cells: Number of cells in an IIO specifier; Typically 0 for nodes 53 io-channels: List of phandle and IIO specifier pairs, one pair
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
| HD | srio-rmu.txt | 61 specifier. The format of the specifier is defined by the 91 specifier. The format of the specifier is defined by the 121 specifier. The format of the specifier is defined by the
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/powerpc/4xx/ |
| HD | cpm.txt | 16 - unused-units : specifier consist of one cell. For each 20 - idle-doze : specifier consist of one cell. For each 24 - standby : specifier consist of one cell. For each 28 - suspend : specifier consist of one cell. For each
|