/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | NSAPI.h | 56 Selector getNSStringSelector(NSStringMethodKind MK) const; 89 Selector getNSArraySelector(NSArrayMethodKind MK) const; 91 /// Return NSArrayMethodKind if \p Sel is such a selector. 92 std::optional<NSArrayMethodKind> getNSArrayMethodKind(Selector Sel); 114 Selector getNSDictionarySelector(NSDictionaryMethodKind MK) const; 116 /// Return NSDictionaryMethodKind if \p Sel is such a selector. 117 std::optional<NSDictionaryMethodKind> getNSDictionaryMethodKind(Selector Sel); 131 Selector getNSSetSelector(NSSetMethodKind MK) const; 133 /// Return NSSetMethodKind if \p Sel is such a selector. 134 std::optional<NSSetMethodKind> getNSSetMethodKind(Selector Sel); [all …]
|
H A D | SelectorLocationsKind.h | 1 //===--- SelectorLocationsKind.h - Kind of selector locations ---*- C++ -*-===// 9 // Describes whether the identifier locations for a selector are "standard" 20 class Selector; variable 25 /// Whether all locations of the selector identifiers are in a 45 SelectorLocationsKind hasStandardSelectorLocs(Selector Sel, 50 /// Get the "standard" location of a selector identifier, e.g: 57 Selector Sel, 63 SelectorLocationsKind hasStandardSelectorLocs(Selector Sel, 68 /// Get the "standard" location of a selector identifier, e.g: 75 Selector Sel,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMPContext.h | 32 /// IDs for all OpenMP context selector trait sets (construct/device/...). 38 /// IDs for all OpenMP context selector trait (device={kind/isa...}/...). 54 /// Return the trait set for which \p Selector is a selector. 55 TraitSet getOpenMPContextTraitSetForSelector(TraitSelector Selector); 67 /// Return the trait selector for which \p Property is a property. 70 /// Return a textual representation of the trait selector \p Kind. 74 /// selector \p Selector or TraitProperty::invalid. 76 TraitSelector Selector, 79 /// Return the trait property for a singleton selector \p Selector. 80 TraitProperty getOpenMPContextTraitPropertyForSelector(TraitSelector Selector); [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | IdentifierTable.h | 11 /// clang::Selector interfaces. 783 /// beyond their selector name; for example, a method called '_init' 794 // additional CamelCase "words" in their first selector chunk 803 // selector with the given name. 878 /// the number of arguments in the Objective-C selector, in which 894 /// Return the number of arguments in an ObjC selector. Only valid when this 898 "getNumArgs called but this is not an ObjC selector!"); in getNumArgs() 906 /// selector containing more than one keyword. We use a folding set 908 /// this class is provided strictly through Selector. 918 assert((nKeys > 1) && "not a multi-keyword selector"); in MultiKeywordSelector() [all …]
|
/freebsd/contrib/wpa/src/ap/ |
H A D | wpa_auth_ie.c | 624 u32 selector; in wpa_validate_wpa_ie() local 665 selector = RSN_AUTH_KEY_MGMT_UNSPEC_802_1X; in wpa_validate_wpa_ie() 669 selector = RSN_AUTH_KEY_MGMT_802_1X_SUITE_B_192; in wpa_validate_wpa_ie() 671 selector = RSN_AUTH_KEY_MGMT_802_1X_SUITE_B; in wpa_validate_wpa_ie() 675 selector = RSN_AUTH_KEY_MGMT_FT_FILS_SHA384; in wpa_validate_wpa_ie() 677 selector = RSN_AUTH_KEY_MGMT_FT_FILS_SHA256; in wpa_validate_wpa_ie() 680 selector = RSN_AUTH_KEY_MGMT_FILS_SHA384; in wpa_validate_wpa_ie() 682 selector = RSN_AUTH_KEY_MGMT_FILS_SHA256; in wpa_validate_wpa_ie() 687 selector = RSN_AUTH_KEY_MGMT_FT_802_1X_SHA384; in wpa_validate_wpa_ie() 690 selector = RSN_AUTH_KEY_MGMT_FT_802_1X; in wpa_validate_wpa_ie() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | SelectorLocationsKind.cpp | 1 //===--- SelectorLocationsKind.cpp - Kind of selector locations -*- C++ -*-===// 9 // Describes whether the identifier locations for a selector are "standard" 20 Selector Sel, in getStandardSelLoc() 38 unsigned Len = /* selector id */ (II ? II->getLength() : 0) + /* ':' */ 1; in getStandardSelLoc() 69 SelectorLocationsKind hasStandardSelLocs(Selector Sel, in hasStandardSelLocs() 73 // Are selector locations in standard position with no space between args ? in hasStandardSelLocs() 83 // Are selector locations in standard position with space between args ? in hasStandardSelLocs() 96 clang::hasStandardSelectorLocs(Selector Sel, in hasStandardSelectorLocs() 104 Selector Sel, in getStandardSelectorLoc() 113 clang::hasStandardSelectorLocs(Selector Sel, in hasStandardSelectorLocs() [all …]
|
H A D | NSAPI.cpp | 43 Selector NSAPI::getNSStringSelector(NSStringMethodKind MK) const { in getNSStringSelector() 45 Selector Sel; in getNSStringSelector() 77 Selector NSAPI::getNSArraySelector(NSArrayMethodKind MK) const { in getNSArraySelector() 79 Selector Sel; in getNSArraySelector() 138 NSAPI::getNSArrayMethodKind(Selector Sel) { in getNSArrayMethodKind() 148 Selector NSAPI::getNSDictionarySelector( in getNSDictionarySelector() 151 Selector Sel; in getNSDictionarySelector() 226 NSAPI::getNSDictionaryMethodKind(Selector Sel) { in getNSDictionaryMethodKind() 236 Selector NSAPI::getNSSetSelector(NSSetMethodKind MK) const { in getNSSetSelector() 238 Selector Sel; in getNSSetSelector() [all …]
|
H A D | ExprObjC.cpp | 109 QualType SuperType, Selector Sel, in ObjCMessageExpr() 128 TypeSourceInfo *Receiver, Selector Sel, in ObjCMessageExpr() 145 Selector Sel, ArrayRef<SourceLocation> SelLocs, in ObjCMessageExpr() 177 bool IsInstanceSuper, QualType SuperType, Selector Sel, in Create() 182 "No selector locs for non-implicit message"); in Create() 197 Selector Sel, ArrayRef<SourceLocation> SelLocs, in Create() 201 "No selector locs for non-implicit message"); in Create() 215 SourceLocation LBracLoc, Expr *Receiver, Selector Sel, in Create() 220 "No selector locs for non-implicit message"); in Create() 243 Selector Sel, in alloc() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaObjC.h | 205 /// Method selectors used in a \@selector expression. Used for implementation 207 llvm::MapVector<Selector, SourceLocation> ReferencedSelectors; 212 using iterator = llvm::DenseMap<Selector, Lists>::iterator; 215 iterator find(Selector Sel) { return Methods.find(Sel); } in find() 216 std::pair<iterator, bool> insert(std::pair<Selector, Lists> &&Val) { in insert() argument 219 int count(Selector Sel) const { return Methods.count(Sel); } in count() 223 llvm::DenseMap<Selector, Lists> Methods; 231 /// methods inside categories with a particular selector. 234 typedef llvm::SmallPtrSet<Selector, 8> SelectorSet; 371 ArrayRef<SourceLocation> SelectorLocs, Selector Sel, [all …]
|
/freebsd/contrib/ldns/ |
H A D | dane.c | 135 ldns_tlsa_selector selector, in ldns_dane_cert2rdf() argument 149 switch(selector) { in ldns_dane_cert2rdf() 513 ldns_tlsa_selector selector, in ldns_dane_create_tlsa_rr() argument 536 rdf = ldns_native2rdf_int8(LDNS_RDF_TYPE_INT8, (uint8_t)selector); in ldns_dane_create_tlsa_rr() 548 s = ldns_dane_cert2rdf(&rdf, cert, selector, matching_type); in ldns_dane_create_tlsa_rr() 566 * for the Certificate usage, Selector and Matching type rdata fields. 597 /* Return whether cert/selector/matching_type matches data. 600 ldns_dane_match_cert_with_data(X509* cert, ldns_tlsa_selector selector, in ldns_dane_match_cert_with_data() argument 606 s = ldns_dane_cert2rdf(&match_data, cert, selector, matching_type); in ldns_dane_match_cert_with_data() 617 /* Return whether any certificate from the chain with selector/matching_type [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | WasmEHPrepare.cpp | 21 // selector = wasm.get.selector(); 32 // selector = __wasm_lpad_context.selector; 59 // uintptr_t selector; 76 // the selector after it returns. 105 Value *SelectorField = nullptr; // selector 149 StructType::get(I32Ty /*lpad_index*/, PtrTy /*lsda*/, I32Ty /*selector*/); in run() 167 IRB.getInt32Ty() // selector in doInitialization() 338 // need to call personality function because we don't need a selector. in prepareEHPad() 369 // Pseudocode: int selector = __wasm_lpad_context.selector; in prepareEHPad() 370 Instruction *Selector = in prepareEHPad() local [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | IdentifierTable.cpp | 275 /// AddObjCKeyword - Register an Objective-C \@keyword like "class" "selector" 515 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) { in getHashValue() 519 bool Selector::isKeywordSelector(ArrayRef<StringRef> Names) const { in isKeywordSelector() 520 assert(!Names.empty() && "must have >= 1 selector slots"); in isKeywordSelector() 530 bool Selector::isUnarySelector(StringRef Name) const { in isUnarySelector() 534 unsigned Selector::getNumArgs() const { in getNumArgs() 546 Selector::getIdentifierInfoForSlot(unsigned argIndex) const { in getIdentifierInfoForSlot() 557 StringRef Selector::getNameForSlot(unsigned int argIndex) const { in getNameForSlot() 574 std::string Selector::getAsString() const { in getAsString() 576 return "<null selector>"; in getAsString() [all …]
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | tasn_utl.c | 26 * Given an ASN1_ITEM CHOICE type return the selector value 45 * Given an ASN1_ITEM CHOICE type set the selector value, return old value. 218 * Handle ANY DEFINED BY template, find the selector, look up the relevant 228 long selector; in ossl_asn1_do_adb() local 238 /* Get the selector field */ in ossl_asn1_do_adb() 253 selector = OBJ_obj2nid((ASN1_OBJECT *)*sfld); in ossl_asn1_do_adb() 255 selector = ASN1_INTEGER_get((ASN1_INTEGER *)*sfld); in ossl_asn1_do_adb() 258 if (adb->adb_cb != NULL && adb->adb_cb(&selector) == 0) { in ossl_asn1_do_adb() 271 if (atbl->value == selector) in ossl_asn1_do_adb()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | BasicObjCFoundationChecks.cpp | 105 mutable llvm::SmallDenseMap<Selector, unsigned, 16> StringSelectors; 106 mutable Selector ArrayWithObjectSel; 107 mutable Selector AddObjectSel; 108 mutable Selector InsertObjectAtIndexSel; 109 mutable Selector ReplaceObjectAtIndexWithObjectSel; 110 mutable Selector SetObjectAtIndexedSubscriptSel; 111 mutable Selector ArrayByAddingObjectSel; 112 mutable Selector DictionaryWithObjectForKeySel; 113 mutable Selector SetObjectForKeySel; 114 mutable Selector SetObjectForKeyedSubscriptSel; [all …]
|
H A D | ObjCMissingSuperCallChecker.cpp | 43 explicit FindSuperCallVisitor(Selector S) : DoesCallSuper(false), Sel(S) {} in FindSuperCallVisitor() 57 Selector Sel; 77 mutable llvm::StringMap<llvm::SmallPtrSet<Selector, 16>> SelectorsForClass; 103 llvm::SmallPtrSet<Selector, 16> &ClassSelectors = in fillSelectors() 109 // Get the selector. in fillSelectors() 112 Selector Sel = Ctx.Selectors.getSelector(Descriptor.ArgumentCount, &II); in fillSelectors() 169 // We need to initialize the selector table once. in checkASTDecl() 181 Selector S = MD->getSelector(); in checkASTDecl() 182 // Find out whether this is a selector that we want to check. in checkASTDecl()
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPContext.cpp | 304 // device={kind(any)} is "as if" no kind selector was specified. in getVariantMatchScore() 385 llvm::omp::getOpenMPContextTraitSetForSelector(TraitSelector Selector) { in getOpenMPContextTraitSetForSelector() argument 386 switch (Selector) { in getOpenMPContextTraitSetForSelector() 392 llvm_unreachable("Unknown trait selector!"); in getOpenMPContextTraitSetForSelector() 438 llvm_unreachable("Unknown trait selector!"); in getOpenMPContextTraitSelectorName() 442 TraitSet Set, TraitSelector Selector, StringRef S) { in getOpenMPContextTraitPropertyKind() argument 445 if (Set == TraitSet::device && Selector == TraitSelector::device_isa) in getOpenMPContextTraitPropertyKind() 454 llvm::omp::getOpenMPContextTraitPropertyForSelector(TraitSelector Selector) { in getOpenMPContextTraitPropertyForSelector() argument 456 getOpenMPContextTraitSelectorName(Selector)) in getOpenMPContextTraitPropertyForSelector() 458 .Case(Str, Selector == TraitSelector::TraitSelectorEnum \ in getOpenMPContextTraitPropertyForSelector() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | EHStreamer.h | 142 // Helpers for identifying what kind of clause an EH typeid or selector 144 // selector is for cleanups, and positive selectors are for catch clauses. 145 static bool isFilterEHSelector(int Selector) { return Selector < 0; } in isFilterEHSelector() argument 146 static bool isCleanupEHSelector(int Selector) { return Selector == 0; } in isCleanupEHSelector() argument 147 static bool isCatchEHSelector(int Selector) { return Selector > 0; } in isCatchEHSelector() argument
|
/freebsd/contrib/llvm-project/clang/lib/APINotes/ |
H A D | APINotesFormat.h | 62 /// (class name, selector, is_instance_method) tuples to information 70 /// The Objective-C selector data block, which maps Objective-C 71 /// selector names (# of pieces, identifier IDs) to the selector ID 182 llvm::BCBlob // map from ObjC (class names, selector, 212 // Objective-C selector ID. 269 /// A stored Objective-C selector. 356 getHashValue(const clang::api_notes::StoredObjCSelector &Selector) { 357 auto hash = llvm::hash_value(Selector.NumArgs); 358 hash = hash_combine(hash, Selector.Identifiers.size()); 359 for (auto piece : Selector.Identifiers)
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | Unwind-wasm.c | 33 uintptr_t selector; // selector value member 53 // Reset the selector. in _Unwind_CallPersonality() 54 __wasm_lpad_context.selector = 0; in _Unwind_CallPersonality() 87 // We only use this function to set __wasm_lpad_context.selector field, which in _Unwind_SetGR() 90 ((struct _Unwind_LandingPadContext *)context)->selector = value; in _Unwind_SetGR()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | RetainSummaryManager.h | 210 Selector S; 212 ObjCSummaryKey(IdentifierInfo* ii, Selector s) in ObjCSummaryKey() 215 ObjCSummaryKey(const ObjCInterfaceDecl *d, Selector s) in ObjCSummaryKey() 218 ObjCSummaryKey(Selector s) in ObjCSummaryKey() 222 Selector getSelector() const { return S; } in getSelector() 251 DenseMapInfo<Selector>::getEmptyKey()); 256 DenseMapInfo<Selector>::getTombstoneKey()); 260 typedef std::pair<IdentifierInfo*, Selector> PairTy; 396 const RetainSummary * find(const ObjCInterfaceDecl *D, Selector S) { 428 const RetainSummary *find(IdentifierInfo* II, Selector S) { [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/phy/ |
H A D | rcar-gen2-phy.txt | 31 - reg: the USB controller selector; see the table below for the values. 34 The phandle's argument in the PHY specifier is the USB controller selector for 35 the USB channel other than r8a77470 SoC; see the selector meanings below: 38 |\ Selector | | | 46 For r8a77470 SoC;see the selector meaning below: 49 |\ Selector | | |
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | SummaryManager.h | 29 - Class, selector (class method) 30 - Class, selector (instance method) 31 - Category, selector (instance method) 32 - Protocol, selector (instance method)
|
/freebsd/contrib/libxo/xohtml/external/ |
H A D | jquery.js | 25 var jQuery = function( selector, context ) { argument 27 return new jQuery.fn.init( selector, context, rootjQuery ); 102 init: function( selector, context, rootjQuery ) { 106 if ( !selector ) { 111 if ( selector.nodeType ) { 112 this.context = this[0] = selector; 118 if ( selector === "body" && !context && document.body ) { 121 this.selector = selector; 127 if ( typeof selector === "string" ) { 129 …if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.leng… [all …]
|
/freebsd/usr.sbin/pciconf/ |
H A D | pciconf.8 | 70 driver name, unit number, and selector. 77 The selector 116 drv selector class rev hdr vendor device subven subdev 271 attached to a driver or by a selector. 285 In the case of an abridged form, omitted selector components are assumed to be 0. 299 .Ar selector . 308 .Ar selector 320 .Ar selector .
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCTrampolineHandler.cpp | 173 printf ("\n*** Got fixed up selector: %p for name %s.\n", 798 // The selector specific stubs are a wrapper for objc_msgSend. They don't get in GetStepThroughDispatchPlan() 799 // passed a SEL, but instead the selector string is encoded in the stub in GetStepThroughDispatchPlan() 802 // and the stub figures out the uniqued selector. If we find ourselves in in GetStepThroughDispatchPlan() 803 // one of these stubs, we strip off the selector string and pass that to the in GetStepThroughDispatchPlan() 809 // First step is to see if we're in a selector-specific dispatch stub. in GetStepThroughDispatchPlan() 810 // Those are of the form _objc_msgSend$<SELECTOR>, so see if the current in GetStepThroughDispatchPlan() 853 // arguments out. If we are in a regular stub, we get self & selector, in GetStepThroughDispatchPlan() 854 // but if we are in a selector-specific stub, we'll have to get that from in GetStepThroughDispatchPlan() 885 // If this is a selector in GetStepThroughDispatchPlan() [all...] |