Searched refs:take (Results 1 - 25 of 214) sorted by relevance

123456789

/external/clang/test/Sema/
H A Dblock-args.c3 void take(void*);
6 take(^(int x){});
7 take(^(int x, int y){});
8 take(^(int x, int y){});
9 take(^(int x, // expected-note {{previous declaration is here}}
13 take(^(int x) { return x+1; });
16 take(CP);
/external/llvm/lib/Object/
H A DBinary.cpp55 OwningPtr<Binary> ret(new Archive(scopedSource.take(), ec));
65 ObjectFile::createELFObjectFile(scopedSource.take()));
81 ObjectFile::createMachOObjectFile(scopedSource.take()));
88 OwningPtr<Binary> ret(new COFFObjectFile(scopedSource.take(), ec));
102 return createBinary(File.take(), Result);
H A DObjectFile.cpp63 return createObjectFile(File.take());
/external/clang/test/CXX/temp/temp.param/
H A Dp15-cxx0x.cpp83 typedef types<typename Take<_>::type...> take; typedef in struct:ParameterPackExpansions::takedrop_impl::inner
88 template<unsigned N, typename...Ts> struct take { struct in namespace:ParameterPackExpansions
90 template inner<wrap<Ts>::template inner...>::take; // expected-error {{too few template arguments}}
97 using T1 = take<3, int, char, double, long>::type; // expected-note {{previous}}
102 using T2 = take<4, int, char, double, long>::type; // expected-note {{previous}}
108 using T3 = take<5, int, char, double, long>::type; // expected-note {{in instantiation of}}
/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.cpp86 AuthenticationChallenge challenge = m_challenges.take(challengeID);
101 AuthenticationChallenge challenge = m_challenges.take(challengeID);
115 AuthenticationChallenge challenge = m_challenges.take(challengeID);
/external/clang/tools/libclang/
H A DARCMigrate.cpp74 return remap.take();
87 return remap.take();
112 return remap.take();
115 return remap.take();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingBlockingQueue.java71 @Override public E take() throws InterruptedException { method in class:ForwardingBlockingQueue
72 return delegate().take();
/external/llvm/lib/AsmParser/
H A DParser.cpp40 return M2.take();
52 return ParseAssembly(File.take(), 0, Err, Context);
/external/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp52 GCOVBuffer GCNO_GB(GCNO_Buff.take());
64 GCOVBuffer GCDA_GB(GCDA_Buff.take());
/external/javassist/src/main/javassist/bytecode/analysis/
H A DIntQueue.java45 int take() { method in class:IntQueue
/external/llvm/include/llvm/Support/
H A DIRReader.h45 // ParseBitcodeFile does not take ownership of the Buffer in the
69 return getLazyIRModule(File.take(), Err, Context);
86 // ParseBitcodeFile does not take ownership of the Buffer.
107 return ParseIR(File.take(), Err, Context);
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp121 return Database.take();
145 new JSONCompilationDatabase(DatabaseBuffer.take()));
148 return Database.take();
157 new JSONCompilationDatabase(DatabaseBuffer.take()));
160 return Database.take();
/external/clang/lib/Frontend/
H A DChainedIncludesSource.cpp46 return Reader.take();
95 Clang->setInvocation(CInvok.take());
113 Clang->setASTConsumer(consumer.take());
153 source->CIs.push_back(Clang.take());
164 source->FinalReader.reset(Reader.take());
165 return source.take();
/external/llvm/include/llvm/ADT/
H A DOwningPtr.h25 /// pointee object can be taken away from OwningPtr by using the take method.
48 /// take - Reset the owning pointer to null and return its pointer. This does
50 T *take() { function in class:llvm::OwningPtr
102 /// take - Reset the owning pointer to null and return its pointer. This does
104 T *take() { function in class:llvm::OwningArrayPtr
/external/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp36 Scope->resetChild(i, Child.take());
57 New->setNext(MatcherPtr.take());
80 Matcher *EmitNode = MatcherPtr.take();
160 Matcher *CheckType = MatcherPtr.take();
194 Scope->resetChild(i, Child.take());
213 MatcherPtr.take(); // Don't delete CPPM.
268 if (Matcher *N = Child.take())
512 return MatcherPtr.take();
/external/webkit/Source/WebKit2/UIProcess/
H A DWebCookieManagerProxy.cpp85 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID);
154 RefPtr<HTTPCookieAcceptPolicyCallback> callback = m_httpCookieAcceptPolicyCallbacks.take(callbackID);
H A DWebApplicationCacheManagerProxy.cpp78 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID);
H A DWebKeyValueStorageManagerProxy.cpp77 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID);
H A DWebMediaCacheManagerProxy.cpp77 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID);
H A DWebResourceCacheManagerProxy.cpp77 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID);
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h68 FileSystemStatCache *takeNextStatCache() { return NextStatCache.take(); }
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DAbstractKernel.java99 return envelopes.take();
/external/webkit/Source/WebCore/loader/archive/
H A DArchiveResourceCollection.cpp86 return m_subframes.take(frameName);
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DWebPluginSiteDataManager.cpp179 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID);
240 RefPtr<VoidCallback> callback = m_voidCallbacks.take(callbackID);
270 OwnPtr<GetSitesWithDataState> state = adoptPtr(m_pendingGetSitesWithData.take(callbackID));
286 OwnPtr<ClearSiteDataState> state = adoptPtr(m_pendingClearSiteData.take(callbackID));
/external/clang/lib/Parse/
H A DParseStmt.cpp346 TryBlock.take(),
347 Handler.take());
389 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.take(), Block.take());
406 return Actions.ActOnSEHFinallyBlock(FinallyBlock,Block.take());
1428 ThirdPart = Actions.MakeFullExpr(Third.take());
1441 ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, FirstPart.take(),
1451 FirstPart.take(),
1452 Collection.take(),
1483 return Actions.FinishObjCForCollectionStmt(ForEachStmt.take(),
[all...]

Completed in 1352 milliseconds

123456789