HomeSort by relevance Sort by last modified time
    Searched refs:Selector (Results 26 - 50 of 146) sorted by null

12 3 4 5 6

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Store.java 3 import org.bouncycastle.util.Selector;
75 public Collection getMatches(Selector selector)
77 return _spi.engineGetMatches(selector);
ExtendedPKIXParameters.java 3 import org.bouncycastle.util.Selector;
28 private Selector selector; field in class:ExtendedPKIXParameters
126 selector = _params.selector == null ? null
127 : (Selector) _params.selector.clone();
379 * <code>Selector</code>. If <code>null</code>, no constraints are
386 * Note that the <code>Selector</code> returned is cloned to protect
389 * @return a <code>Selector</code> specifying the constraints on th
    [all...]
ExtendedPKIXBuilderParameters.java 3 import org.bouncycastle.util.Selector;
71 * @param targetConstraints a <code>Selector</code> specifying the
83 Selector targetConstraints)
X509CertStoreSelector.java 3 import org.bouncycastle.util.Selector;
11 * This class is a Selector implementation for X.509 certificates.
13 * @see org.bouncycastle.util.Selector
19 implements Selector
40 X509CertStoreSelector selector = (X509CertStoreSelector)super.clone(); local
42 return selector;
48 * @param selector A <code>X509CertSelector</code> instance.
50 * @exception IllegalArgumentException if selector is null or creation fails.
52 public static X509CertStoreSelector getInstance(X509CertSelector selector)
54 if (selector == null
    [all...]
  /external/clang/include/clang/Frontend/
ChainedIncludesSource.h 43 virtual Selector GetExternalSelector(uint32_t ID);
69 virtual void ReadMethodPool(Selector Sel);
  /external/clang/include/clang/Sema/
ExternalSemaSource.h 62 /// selector.
63 virtual void ReadMethodPool(Selector Sel);
150 SmallVectorImpl<std::pair<Selector, SourceLocation> > &Sels) {}
MultiplexExternalSemaSource.h 70 /// \brief Resolve a selector ID into a selector.
71 virtual Selector GetExternalSelector(uint32_t ID);
211 /// selector.
212 virtual void ReadMethodPool(Selector Sel);
295 virtual void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,
  /external/smack/src/org/xbill/DNS/
Client.java 18 Selector selector = null; local
21 selector = Selector.open();
23 key = channel.register(selector, SelectionKey.OP_READ);
27 if (!done && selector != null)
28 selector.close();
39 nkeys = key.selector().select(timeout);
41 nkeys = key.selector().selectNow();
54 key.selector().close()
    [all...]
TLSARecord.java 27 public static class Selector {
28 private Selector() {}
57 private int selector; field in class:TLSARecord
72 * @param selector The part of the TLS certificate presented by the server
80 int certificateUsage, int selector, int matchingType,
85 this.selector = checkU8("selector", selector);
96 selector = in.readU8();
104 selector = st.getUInt8()
    [all...]
  /libcore/luni/src/main/java/java/nio/
SelectionKeyImpl.java 22 import java.nio.channels.Selector;
38 private SelectorImpl selector; field in class:SelectionKeyImpl
41 Object attachment, SelectorImpl selector) {
44 this.selector = selector;
56 synchronized (selector.keysLock) {
62 synchronized (selector.keysLock) {
73 synchronized (selector.keysLock) {
86 public Selector selector() { method in class:SelectionKeyImpl
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelector.java 22 import java.nio.channels.Selector;
33 public abstract class AbstractSelector extends Selector {
51 * Closes this selector. This method does nothing if this selector is
68 * Returns true if this selector is open.
76 * Returns this selector's provider.
91 * Registers {@code channel} with this selector.
96 * @return the key related to the channel and this selector.
AbstractSelectableChannel.java 27 import java.nio.channels.Selector;
53 * the selector provider that creates this channel.
60 * Returns the selector provider that has created this channel.
63 * @return this channel's selector provider.
73 * @return {@code true} if this channel is registered with a selector,
82 * Gets this channel's selection key for the specified selector.
84 * @param selector
85 * the selector with which this channel has been registered.
87 * has not been registered with {@code selector}.
90 synchronized public final SelectionKey keyFor(Selector selector)
    [all...]
  /external/clang/lib/AST/
NSAPI.cpp 38 Selector NSAPI::getNSStringSelector(NSStringMethodKind MK) const {
40 Selector Sel;
71 NSAPI::getNSStringMethodKind(Selector Sel) const {
81 Selector NSAPI::getNSArraySelector(NSArrayMethodKind MK) const {
83 Selector Sel;
129 Optional<NSAPI::NSArrayMethodKind> NSAPI::getNSArrayMethodKind(Selector Sel) {
139 Selector NSAPI::getNSDictionarySelector(
142 Selector Sel;
215 NSAPI::getNSDictionaryMethodKind(Selector Sel) {
225 Selector NSAPI::getNSNumberLiteralSelector(NSNumberLiteralMethodKind MK
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 164 /// AddObjCKeyword - Register an Objective-C \@keyword like "class" "selector"
289 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) {
295 /// selector containing more than one keyword. We use a folding set
297 /// this class is provided strictly through Selector.
306 assert((nKeys > 1) && "not a multi-keyword selector");
315 // getName - Derive the full selector name and return it.
343 unsigned Selector::getNumArgs() const {
354 IdentifierInfo *Selector::getIdentifierInfoForSlot(unsigned argIndex) const {
364 StringRef Selector::getNameForSlot(unsigned int argIndex) const
    [all...]
  /external/clang/lib/ARCMigrate/
TransAPIUses.cpp 34 Selector getReturnValueSel, setReturnValueSel;
35 Selector getArgumentSel, setArgumentSel;
37 Selector zoneSel;
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 137 Selector S = msg.getSelector();
163 Selector S = msg.getSelector();
469 mutable Selector releaseS;
470 mutable Selector retainS;
471 mutable Selector autoreleaseS;
472 mutable Selector drainS;
499 Selector S = msg.getSelector();
524 mutable Selector arrayWithObjectsS;
525 mutable Selector dictionaryWithObjectsAndKeysS;
526 mutable Selector setWithObjectsS
    [all...]
NSAutoreleasePoolChecker.cpp 36 mutable Selector releaseS;
NoReturnFunctionChecker.cpp 84 static bool END_WITH_NULL isMultiArgSelector(const Selector *Sel, ...) {
133 Selector Sel = Msg.getSelector();
CheckObjCInstMethSignature.cpp 60 << "'. A method with the same name (same selector) is also defined in "
91 typedef llvm::DenseMap<Selector,ObjCMethodDecl*> MapTy;
110 Selector S = M->getSelector();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
find.h 52 * @param selector Functionality (e. g. std::find_if (), std::equal(),...)
58 typename Selector>
61 RandomAccessIterator2 begin2, Pred pred, Selector selector)
66 return find_template(begin1, end1, begin2, pred, selector,
69 return find_template(begin1, end1, begin2, pred, selector,
72 return find_template(begin1, end1, begin2, pred, selector,
89 * @param selector Functionality (e. g. std::find_if (), std::equal(),...)
95 typename Selector>
101 Selector selector
    [all...]
  /external/chromium/base/
tracked_objects.h 369 // Selector enum is the token identifier for each parsed keyword, most of
373 enum Selector {
391 // Reset the comparator to a NIL selector. Clear() and recursively delete any
412 void SetTiebreaker(Selector selector, const std::string& required);
414 // Indicate if this instance is set up to sort by the given Selector, thereby
417 bool IsGroupedBy(Selector selector) const;
422 void SetSubgroupTiebreaker(Selector selector);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderInternals.h 146 /// \brief Class that performs lookup for a selector's entries in the global
159 typedef Selector external_key_type;
170 static unsigned ComputeHash(Selector Sel);
179 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
AttributeCertificateIssuer.java 12 import org.bouncycastle.util.Selector;
18 implements Selector
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
X509CertificateHolderSelector.java 1 package org.bouncycastle.cert.selector;
11 import org.bouncycastle.util.Selector;
17 implements Selector
25 * Construct a selector with the value of a public key's subjectKeyId.
  /external/clang/include/clang/AST/
ASTImporter.h 190 /// \brief Import the given Objective-C selector from the "from"
193 /// \returns the equivalent selector in the "to" context.
194 Selector Import(Selector FromSel);

Completed in 283 milliseconds

12 3 4 5 6