HomeSort by relevance Sort by last modified time
    Searched refs:Selector (Results 76 - 100 of 521) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerId.java 6 import org.bouncycastle.cert.selector.X509CertificateHolderSelector;
7 import org.bouncycastle.util.Selector;
13 implements Selector
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
MockAbstractSelector.java 21 import java.nio.channels.Selector;
85 public Selector wakeup() {
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractSelector.java 30 import java.nio.channels.Selector;
41 * the interruption of selection operations. A concrete selector class must
57 * <p> This class also defines methods for maintaining a selector's
70 extends Selector
75 // The provider that created this selector
82 * The provider that created this selector
97 * Closes this selector.
99 * <p> If the selector has already been closed then this method returns
100 * immediately. Otherwise it marks the selector as closed and then invokes
115 * Closes this selector
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 192 /// AddObjCKeyword - Register an Objective-C \@keyword like "class" "selector"
345 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) {
351 /// selector containing more than one keyword. We use a folding set
353 /// this class is provided strictly through Selector.
362 assert((nKeys > 1) && "not a multi-keyword selector");
371 // getName - Derive the full selector name and return it.
399 unsigned Selector::getNumArgs() const {
410 IdentifierInfo *Selector::getIdentifierInfoForSlot(unsigned argIndex) const {
420 StringRef Selector::getNameForSlot(unsigned int argIndex) const
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
ExtendedPKIXParameters.java 3 import org.bouncycastle.util.Selector;
30 private Selector selector; field in class:ExtendedPKIXParameters
131 selector = _params.selector == null ? null
132 : (Selector) _params.selector.clone();
388 * <code>Selector</code>. If <code>null</code>, no constraints are
395 * Note that the <code>Selector</code> returned is cloned to protect
398 * @return a <code>Selector</code> specifying the constraints on th
    [all...]
  /external/clang/lib/AST/
NSAPI.cpp 43 Selector NSAPI::getNSStringSelector(NSStringMethodKind MK) const {
45 Selector Sel;
80 NSAPI::getNSStringMethodKind(Selector Sel) const {
90 Selector NSAPI::getNSArraySelector(NSArrayMethodKind MK) const {
92 Selector Sel;
157 Optional<NSAPI::NSArrayMethodKind> NSAPI::getNSArrayMethodKind(Selector Sel) {
167 Selector NSAPI::getNSDictionarySelector(
170 Selector Sel;
259 NSAPI::getNSDictionaryMethodKind(Selector Sel) {
269 Selector NSAPI::getNSSetSelector(NSSetMethodKind MK) const
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
PolicyEntryOperation.c 26 @param[out] Selector The pointer to the EFI_IPSEC_SPD_SELECTOR structure.
36 OUT EFI_IPSEC_SPD_SELECTOR *Selector,
53 Selector->LocalAddressCount = 1;
54 Status = EfiInetAddrRange ((CHAR16 *) ValueStr, Selector->LocalAddress);
77 Selector->RemoteAddressCount = 1;
78 Status = EfiInetAddrRange ((CHAR16 *) ValueStr, Selector->RemoteAddress);
96 Selector->NextLayerProtocol = EFI_IPSEC_ANY_PROTOCOL;
104 &Selector->NextLayerProtocol,
118 Selector->LocalPort = EFI_IPSEC_ANY_PORT;
119 Selector->RemotePort = EFI_IPSEC_ANY_PORT;
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 101 mutable llvm::SmallDenseMap<Selector, unsigned, 16> StringSelectors;
102 mutable Selector ArrayWithObjectSel;
103 mutable Selector AddObjectSel;
104 mutable Selector InsertObjectAtIndexSel;
105 mutable Selector ReplaceObjectAtIndexWithObjectSel;
106 mutable Selector SetObjectAtIndexedSubscriptSel;
107 mutable Selector ArrayByAddingObjectSel;
108 mutable Selector DictionaryWithObjectForKeySel;
109 mutable Selector SetObjectForKeySel;
110 mutable Selector SetObjectForKeyedSubscriptSel
    [all...]
NSAutoreleasePoolChecker.cpp 36 mutable Selector releaseS;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/IA32/
SetIdtEntry.c 55 IdtEntry->Bits.Selector = (UINT16)AsmReadCs ();
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/Ia32/
CpuAsm.asm 26 ; UINT16 Selector
44 ; UINT16 Selector
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/X64/
CpuAsm.asm 24 ; UINT16 Selector
41 ; UINT16 Selector
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
CollectionStore.java 28 * Return the matches in the collection for the passed in selector.
30 * @param selector the selector to match against.
33 public Collection<T> getMatches(Selector<T> selector)
35 if (selector == null)
48 if (selector.match(obj))
  /external/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 74 /// \brief Resolve a selector ID into a selector.
75 Selector GetExternalSelector(uint32_t ID) override;
203 /// selector.
204 void ReadMethodPool(Selector Sel) override;
207 /// selector if necessary.
208 void updateOutOfDateSelector(Selector Sel) override;
288 void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,
  /libcore/ojluni/src/main/java/java/nio/channels/
SelectionKey.java 34 * {@link Selector}.
37 * selector. A key remains valid until it is <i>cancelled</i> by invoking its
39 * selector. Cancelling a key does not immediately remove it from its
40 * selector; it is instead added to the selector's <a
41 * href="Selector.html#ks"><i>cancelled-key set</i></a> for removal during the
54 * be tested for readiness the next time one of the selector's selection
60 * the key's channel has been detected to be ready by the key's selector.
62 * be updated by the selector during a selection operation, but it cannot be
93 * synchronized with certain operations of the selector. Exactly how thi
134 public abstract Selector selector(); method in class:SelectionKey
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SelectionKeyImpl.java 41 public final SelectorImpl selector; field in class:SelectionKeyImpl
43 // Index for a pollfd array in Selector that this key is registered with
51 selector = sel;
58 public Selector selector() { method in class:SelectionKeyImpl
59 return selector;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 74 /// \brief Resolve a selector ID into a selector.
75 Selector GetExternalSelector(uint32_t ID) override;
205 /// selector.
206 void ReadMethodPool(Selector Sel) override;
209 /// selector if necessary.
210 void updateOutOfDateSelector(Selector Sel) override;
290 void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Serialization/
ASTDeserializationListener.h 49 /// \brief A selector was read from the AST file.
50 virtual void SelectorRead(serialization::SelectorID iD, Selector Sel) {}
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 74 /// \brief Resolve a selector ID into a selector.
75 Selector GetExternalSelector(uint32_t ID) override;
205 /// selector.
206 void ReadMethodPool(Selector Sel) override;
209 /// selector if necessary.
210 void updateOutOfDateSelector(Selector Sel) override;
290 void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Serialization/
ASTDeserializationListener.h 49 /// \brief A selector was read from the AST file.
50 virtual void SelectorRead(serialization::SelectorID iD, Selector Sel) {}
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 74 /// \brief Resolve a selector ID into a selector.
75 Selector GetExternalSelector(uint32_t ID) override;
205 /// selector.
206 void ReadMethodPool(Selector Sel) override;
209 /// selector if necessary.
210 void updateOutOfDateSelector(Selector Sel) override;
290 void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Serialization/
ASTDeserializationListener.h 49 /// \brief A selector was read from the AST file.
50 virtual void SelectorRead(serialization::SelectorID iD, Selector Sel) {}
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 74 /// \brief Resolve a selector ID into a selector.
75 Selector GetExternalSelector(uint32_t ID) override;
205 /// selector.
206 void ReadMethodPool(Selector Sel) override;
209 /// selector if necessary.
210 void updateOutOfDateSelector(Selector Sel) override;
290 void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/
ASTDeserializationListener.h 49 /// \brief A selector was read from the AST file.
50 virtual void SelectorRead(serialization::SelectorID iD, Selector Sel) {}
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 74 /// \brief Resolve a selector ID into a selector.
75 Selector GetExternalSelector(uint32_t ID) override;
205 /// selector.
206 void ReadMethodPool(Selector Sel) override;
209 /// selector if necessary.
210 void updateOutOfDateSelector(Selector Sel) override;
290 void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,

Completed in 1167 milliseconds

1 2 34 5 6 7 8 91011>>