/external/okhttp/okio/okio/src/main/java/okio/ |
H A D | Source.java | 29 * {@link Okio#buffer(Source)} to wrap any source with a buffer. 42 * <p>Source avoids the impossible-to-implement {@linkplain 46 * <p>Source omits the unsafe-to-compose {@linkplain java.io.InputStream#mark 62 public interface Source extends Closeable { interface in inherits:Closeable
|
/external/clang/unittests/AST/ |
H A D | ExternalASTSourceTest.cpp | 5 // This file is distributed under the University of Illinois Open Source 28 TestFrontendAction(ExternalASTSource *Source) : Source(Source) {} argument 32 getCompilerInstance().getASTContext().setExternalSource(Source); variable 43 IntrusiveRefCntPtr<ExternalASTSource> Source; member in class:TestFrontendAction 46 bool testExternalASTSource(ExternalASTSource *Source, argument 60 TestFrontendAction Action(Source);
|
H A D | CommentLexer.cpp | 5 // This file is distributed under the University of Illinois Open Source 46 void lexString(const char *Source, std::vector<Token> &Toks); 61 void CommentLexerTest::lexString(const char *Source, argument 63 std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Source); 67 Lexer L(Allocator, Diags, Traits, Begin, Source, Source + strlen(Source)); 82 const char *Source = ""; local 85 lexString(Source, Toks); 204 const char *Source local 333 const char *Source = "/// \\\\^ \\\\0"; local 359 const char *Source = "/// \\\\brief Aaa."; local 379 const char *Source = "/// \\\\em\\\\em \\\\em\\t\\\\em\\n"; local 411 const char *Source = "/// @em@em @em\\t@em\\n"; local 443 const char *Source = "/// \\\\aaa\\\\bbb \\\\ccc\\t\\\\ddd\\n"; local 475 const char *Source = "// \\\\c\\n"; local 492 const char *Source = local 528 const char *Source = local 604 const char *Source = "/// \\\\verbatim"; local 623 const char *Source = "/** \\\\verbatim*/"; local 701 const char *Source = local 741 const char *Source = local 784 const char *Source = local 838 const char *Source = local 941 const char *Source = local 975 const char *Source = local 994 const char *Source = local 1016 const char *Source = local 1061 const char *Source = local 1083 const char *Source = "// <img> Meow"; local 1106 const char *Source = "// <img="; local 1127 const char *Source = "// <img src=> Meow"; local 1242 const char *Source = "// <img src=@"; local 1388 const char *Source = "// </"; local 1406 const char *Source = "// </@"; local 1427 const char *Source = "// </img"; local 1445 const char *Source = "// <tag>"; local 1466 const char *Source = "// </tag>"; local 1487 const char *Source = "// &"; local 1505 const char *Source = "// &!"; local 1526 const char *Source = "// &"; local 1544 const char *Source = "// &!"; local 1565 const char *Source = "// &#"; local 1583 const char *Source = "// &#a"; local 1604 const char *Source = "// *"; local 1622 const char *Source = "// *a"; local 1643 const char *Source = "// &#x"; local 1661 const char *Source = "// &#xz"; local 1682 const char *Source = "// «"; local 1700 const char *Source = "// «z"; local 1721 const char *Source = "// &"; local 1739 const char *Source = "// &<"; local 1760 const char *Source = "// & meow"; local 1806 const char *Source = local [all...] |
/external/llvm/lib/Object/ |
H A D | ELFObjectFile.cpp | 5 // This file is distributed under the University of Illinois Open Source 20 ELFObjectFileBase::ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source) argument 21 : ObjectFile(Type, Source) {}
|
H A D | SymbolicFile.cpp | 5 // This file is distributed under the University of Illinois Open Source 24 SymbolicFile::SymbolicFile(unsigned int Type, MemoryBufferRef Source) argument 25 : Binary(Type, Source) {}
|
H A D | Binary.cpp | 5 // This file is distributed under the University of Illinois Open Source 30 Binary::Binary(unsigned int Type, MemoryBufferRef Source) argument 31 : TypeID(Type), Data(Source) {}
|
H A D | ObjectFile.cpp | 5 // This file is distributed under the University of Illinois Open Source 28 ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source) argument 29 : SymbolicFile(Type, Source) {}
|
H A D | MachOUniversal.cpp | 5 // This file is distributed under the University of Illinois Open Source 97 MachOUniversalBinary::create(MemoryBufferRef Source) { argument 100 new MachOUniversalBinary(Source, EC)); 106 MachOUniversalBinary::MachOUniversalBinary(MemoryBufferRef Source, argument 108 : Binary(Binary::ID_MachOUniversalBinary, Source), NumberOfObjects(0) {
|
/external/llvm/unittests/AsmParser/ |
H A D | AsmParserTest.cpp | 5 // This file is distributed under the University of Illinois Open Source 25 StringRef Source = "; Empty module \n"; local 27 auto Mod = parseAssemblyString(Source, Error, Ctx); 38 StringRef Source = "; Empty module \n\1\2"; local 41 EXPECT_DEATH(Mod = parseAssemblyString(Source.substr(0, Source.size() - 2), 51 StringRef Source = "@0 = global i32 0\n !0 = !{}\n !42 = !{i32 42}"; local 54 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping); 71 StringRef Source = "define void @test() {\n entry:\n ret void\n}"; local 72 auto Mod = parseAssemblyString(Source, Erro 122 StringRef Source = local [all...] |
/external/llvm/include/llvm/Object/ |
H A D | COFFImportFile.h | 5 // This file is distributed under the University of Illinois Open Source 31 COFFImportFile(MemoryBufferRef Source) argument 32 : SymbolicFile(ID_COFFImportFile, Source) {}
|
/external/llvm/lib/Support/ |
H A D | StringExtras.cpp | 5 // This file is distributed under the University of Illinois Open Source 37 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source, argument 40 StringRef::size_type Start = Source.find_first_not_of(Delimiters); 43 StringRef::size_type End = Source.find_first_of(Delimiters, Start); 45 return std::make_pair(Source.slice(Start, End), Source.substr(End)); 50 void llvm::SplitString(StringRef Source, argument 53 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
|
/external/clang/include/clang/AST/ |
H A D | CommentSema.h | 5 // This file is distributed under the University of Illinois Open Source 40 /// Source manager for the comment being parsed. 81 ArrayRef<T> copyArray(ArrayRef<T> Source) { argument 82 if (!Source.empty()) 83 return Source.copy(Allocator);
|
/external/clang/lib/AST/ |
H A D | DeclFriend.cpp | 5 // This file is distributed under the University of Illinois Open Source 63 ExternalASTSource *Source = getParentASTContext().getExternalSource(); local 64 Decl *First = data().FirstFriend.get(Source);
|
H A D | DeclCXX.cpp | 5 // This file is distributed under the University of Illinois Open Source 38 ExternalASTSource *Source = C.getExternalSource(); local 40 assert(Source && "getFromExternalSource with no external source"); 43 I.setDecl(cast<NamedDecl>(Source->GetExternalDecl(
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
H A D | Source.java | 31 public class Source { class 42 public static Source getSourceFor(final Class<?> type) throws IOException { 44 return new Source(new FileReader(file)); 60 public Source(final Reader reader) throws IOException { method in class:Source
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
H A D | ServerSocketService.java | 91 private enum Source { REQUEST, ACCEPT} enum in class:ServerSocketService 107 private final SetMultimap<Source, UUID> connectionState = Multimaps.newSetMultimap( 108 Maps.<Source, Collection<UUID>>newEnumMap(Source.class), 134 return getConnectionImpl(id, Source.REQUEST); 155 getConnectionImpl(id, Source.ACCEPT).set(openedSocket); 176 private SettableFuture<OpenedSocket> getConnectionImpl(UUID id, Source source) {
|
/external/deqp/external/ |
H A D | fetch_sources.py | 7 # Copyright 2015 The Android Open Source Project 41 class Source: class in inherits: 51 class SourcePackage (Source): 53 Source.__init__(self, baseDir, extractDir) 61 Source.clean(self) 69 Source.clean(self) 136 class GitRepo (Source): 138 Source.__init__(self, baseDir, extractDir)
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
H A D | Check.cs | 39 public static void Source (object source) method in class:Antlr.Runtime.JavaExtensions.Check
|
H A D | EnumerableExtensions.cs | 61 Check.Source(source); 93 Check.Source(source); 113 Check.Source(source); 134 Check.Source(source); 157 Check.Source(source); 230 Check.Source(source); 249 Check.Source(source); 272 Check.Source(source);
|
/external/clang/include/clang/Driver/ |
H A D | Job.h | 5 // This file is distributed under the University of Illinois Open Source 44 /// Source - The action which caused the creation of this job. 45 const Action &Source; member in class:clang::driver::Command 85 Command(const Action &Source, const Tool &Creator, const char *Executable, 100 const Action &getSource() const { return Source; }
|
/external/clang/unittests/Sema/ |
H A D | ExternalSemaSourceTest.cpp | 5 // This file is distributed under the University of Illinois Open Source 169 void PushSource(clang::ExternalSemaSource *Source) { argument 170 Sources.push_back(Source);
|
/external/clang/unittests/Tooling/ |
H A D | CommentHandlerTest.cpp | 5 // This file is distributed under the University of Illinois Open Source 201 const char *Source = local 208 EXPECT_TRUE(Visitor.runOver(Source)); 210 Verifier.Match(Source, 1, 1);
|
H A D | RewriterTestContext.h | 5 // This file is distributed under the University of Illinois Open Source 56 std::unique_ptr<llvm::MemoryBuffer> Source = local 58 InMemoryFileSystem->addFile(Name, 0, std::move(Source));
|
/external/libchrome/base/containers/ |
H A D | stack_container.h | 27 // StackAllocator::Source which contains the data. Copying the allocator 47 struct Source { struct in class:base::StackAllocator 48 Source() : used_stack_buffer_(false) { function in struct:base::StackAllocator::Source 86 // no guarantee that the Source buffer of Ts is large enough 102 explicit StackAllocator(Source* source) : source_(source) { 128 Source* source_; 171 const typename Allocator::Source& stack_data() const { 177 typename Allocator::Source stack_data_;
|
/external/llvm/lib/Analysis/ |
H A D | SparsePropagation.cpp | 5 // This file is distributed under the University of Illinois Open Source 99 void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { argument 100 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second) 103 DEBUG(dbgs() << "Marking Edge Executable: " << Source->getName()
|