HomeSort by relevance Sort by last modified time
    Searched refs:Selector (Results 51 - 75 of 129) sorted by null

1 23 4 5 6

  /external/clang/lib/StaticAnalyzer/Checkers/
NSAutoreleasePoolChecker.cpp 35 mutable Selector releaseS;
RetainCountChecker.cpp 437 Selector S;
439 ObjCSummaryKey(IdentifierInfo* ii, Selector s)
442 ObjCSummaryKey(const ObjCInterfaceDecl *d, Selector s)
445 ObjCSummaryKey(const ObjCInterfaceDecl *d, IdentifierInfo *ii, Selector s)
448 ObjCSummaryKey(Selector s)
452 Selector getSelector() const { return S; }
460 DenseMapInfo<Selector>::getEmptyKey());
465 DenseMapInfo<Selector>::getTombstoneKey());
471 | (DenseMapInfo<Selector>::getHashValue(V.getSelector())
478 DenseMapInfo<Selector>::isEqual(LHS.getSelector()
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js     [all...]
concat-jquery-mootools-prototype.js 24 jQuery = window.jQuery = window.$ = function( selector, context ) {
26 return new jQuery.fn.init( selector, context );
32 // Is it a simple selector
36 init: function( selector, context ) {
38 selector = selector || document;
41 if ( selector.nodeType ) {
42 this[0] = selector;
44 this.context = selector;
48 if ( typeof selector === "string" )
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
AttributeCertificateIssuer.java 20 import org.bouncycastle.util.Selector;
27 implements CertSelector, Selector
X509CRLStoreSelector.java 6 import org.bouncycastle.util.Selector;
16 * This class is a Selector implementation for X.509 certificate revocation
19 * @see org.bouncycastle.util.Selector
25 implements Selector
169 * Returns if this selector must match CRLs with the delta CRL indicator
198 * @param selector A <code>X509CRLSelector</code> instance.
200 * @exception IllegalArgumentException if selector is null or creation
203 public static X509CRLStoreSelector getInstance(X509CRLSelector selector)
205 if (selector == null)
208 "cannot create from null selector");
    [all...]
AttributeCertificateHolder.java 30 import org.bouncycastle.util.Selector;
50 implements CertSelector, Selector
  /external/clang/lib/Index/
Entity.cpp 111 Selector LocalSel = LocalName.getObjCSelector();
117 Selector GlobSel =
180 Selector GlobSel = Name.getObjCSelector();
Analyzer.cpp 130 Selector Sel = GlobSel.getSelector(Ctx);
148 // FIXME: Finding @selector references should be through another Analyzer
221 Selector Sel = Msg->getSelector();
256 /// the selector.
313 Selector sel = Msg->getSelector();
366 Selector Sel = GlobSel.getSelector(Ctx);
  /external/clang/include/clang/Serialization/
ASTWriter.h 187 /// \brief The selector ID that will be assigned to the next new identifier.
190 /// \brief Map that provides the ID numbers of each Selector.
191 llvm::DenseMap<Selector, serialization::SelectorID> SelectorIDs;
193 /// \brief Offset of each selector within the method pool/selector
194 /// table, indexed by the Selector ID (-1).
427 /// \brief Emit a Selector (which is a smart pointer reference).
428 void AddSelectorRef(Selector, RecordDataImpl &Record);
438 /// \brief Get the unique number used to refer to the given selector.
439 serialization::SelectorID getSelectorRef(Selector Sel)
    [all...]
ASTReader.h 353 /// This vector is indexed by the Selector ID (-1). NULL selector
354 /// entries indicate that the particular selector ID has not yet
356 SmallVector<Selector, 16> SelectorsLoaded;
361 /// \brief Mapping from global selector IDs to the module in which the
362 /// selector resides along with the offset that should be added to the
363 /// global selector ID to produce a local ID.
427 /// \brief Method selectors used in a @selector expression. Used for
558 /// \brief The number of times we have looked up a selector in the method
562 /// \brief The total number of method pool entries in the selector table
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java 27 import java.nio.channels.Selector;
39 * Tests for Selector and its default implementation
50 Selector selector; field in class:SelectorTest
65 selector = Selector.open();
75 selector.close();
83 * @tests java.nio.channels.Selector#open()
86 assertNotNull(selector);
90 * @tests Selector#isOpen(
457 Selector selector = Selector.open(); local
    [all...]
  /device/moto/stingray/whisper/
SHA_CommMarshalling.h 214 uint8_t SHAC_Pause(uint8_t Selector);
  /external/clang/lib/Analysis/
CocoaConventions.cpp 36 cocoa::NamingConvention cocoa::deriveNamingConvention(Selector S,
  /external/clang/lib/Serialization/
ASTCommon.cpp 67 unsigned serialization::ComputeHash(Selector Sel) {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathBuilderSpi.java 23 import org.bouncycastle.util.Selector;
71 Selector certSelect = pkixParams.getTargetConstraints();
  /external/clang/include/clang/AST/
ExternalASTSource.h 26 class Selector;
86 /// \brief Resolve a selector ID into a selector.
92 virtual Selector GetExternalSelector(uint32_t ID);
DeclarationName.h 77 /// selector with zero arguments, and Ptr is an IdentifierInfo
78 /// pointer pointing to the selector name.
80 /// StoredObjCOneArgSelector - The name is an Objective-C selector
82 /// pointing to the selector name.
86 /// whether this is an Objective-C selector, C++ operator-id name,
97 /// multi-argument selector or C++ special name.
160 /// DeclarationName - Used to create an empty selector.
169 // Construct a declaration name from an Objective-C selector.
170 DeclarationName(Selector Sel);
251 /// getObjCSelector - Get the Objective-C selector stored in thi
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 182 Selector S = msg.getSelector();
197 new Selector[NUM_RAISE_SELECTORS];
ObjCMessage.cpp 30 Selector ObjCMessage::getSelector() const {
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Debugger.java 27 import java.nio.channels.Selector;
71 mListenChannel.configureBlocking(false); // required for Selector
104 * Register the debugger's listen socket with the Selector.
106 void registerListener(Selector sel) throws IOException {
151 mChannel.configureBlocking(false); // required for Selector
MonitorThread.java 31 import java.nio.channels.Selector;
59 private Selector mSelector;
199 // create a selector
201 mSelector = Selector.open();
250 // Log.i("ddms", "selector looping");
277 Log.e("ddms", "Exception during activity from Selector.");
360 /* close the client; automatically un-registers from selector */
472 * the Selector.
537 * selector. The failure could be caused by the debugger going away,
625 * Register the Client's socket channel with the selector. We attac
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 63 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance) const {
281 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel,
322 const Selector &Sel,
344 Selector SelInfo, QualType T,
395 "No selector locs for non-implicit method");
732 ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const {
741 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const {
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 171 ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
186 llvm::DenseMap<Selector, SourceLocation>::iterator Pos
192 // In ARC, forbid the user from using @selector for
351 Selector Sel, ObjCMethodDecl *Method,
393 // Method might have more arguments than selector indicates. This is due
486 ObjCMethodDecl *Sema::LookupPrivateClassMethod(Selector Sel,
498 // Before we give up, check if the selector is an instance method.
514 ObjCMethodDecl *Sema::LookupPrivateInstanceMethod(Selector Sel,
532 ObjCMethodDecl *Sema::LookupMethodInQualifiedType(Selector Sel,
580 Selector Sel = PP.getSelectorTable().getNullarySelector(Member)
    [all...]
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 39 Selector DelegateSel;

Completed in 2039 milliseconds

1 23 4 5 6