HomeSort by relevance Sort by last modified time
    Searched defs:Source (Results 1 - 25 of 335) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/CompilerStub/
memcpy.c 38 const UINT8 *Source;
40 for (Ptr = Dest, Source = Src; Count > 0; Count--, Source++, Ptr++) {
41 *Ptr = *Source;
  /external/okhttp/okio/okio/src/main/java/okio/
Source.java 27 * <p>Most applications shouldn't operate on a source directly, but rather
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
50 * <p>When implementing a source, you need not worry about the {@linkplain
54 * <p>And source has a stronger {@code skip} method: {@link BufferedSource#skip}
58 * Use {@link Okio#source} to adapt an {@code InputStream} to a source. Use
59 * {@link BufferedSource#inputStream} to adapt a source to an {@cod
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
Source.java 18 // $Id: Source.java 446598 2006-09-15 12:55:40Z jeremias $
24 * needed to act as source input (XML source or transformation instructions).
26 public interface Source {
29 * Set the system identifier for this Source.
31 * <p>The system identifier is optional if the source does not
  /prebuilts/go/darwin-x86/src/go/format/
format.go 2 // Use of this source code is governed by a BSD-style
5 // Package format implements standard formatting of Go source.
27 // nodes representing partial source files (for instance, if the node is
34 // Determine if we have a complete source file (file != nil).
73 // Source formats src in canonical gofmt style and returns the result
75 // correct Go source file, or a list of Go declarations or statements.
77 // If src is a partial source file, the leading and trailing space of src
80 // line of src containing code. Imports are not sorted for partial source files.
84 // execute that gofmt binary instead of calling Source.
86 func Source(src []byte) ([]byte, error)
    [all...]
  /prebuilts/go/linux-x86/src/go/format/
format.go 2 // Use of this source code is governed by a BSD-style
5 // Package format implements standard formatting of Go source.
27 // nodes representing partial source files (for instance, if the node is
34 // Determine if we have a complete source file (file != nil).
73 // Source formats src in canonical gofmt style and returns the result
75 // correct Go source file, or a list of Go declarations or statements.
77 // If src is a partial source file, the leading and trailing space of src
80 // line of src containing code. Imports are not sorted for partial source files.
84 // execute that gofmt binary instead of calling Source.
86 func Source(src []byte) ([]byte, error)
    [all...]
  /cts/tests/tests/media/libmediandkjni/
native_media_source.h 2 * Copyright (C) 2017 The Android Open Source Project
36 class Source {
38 Source(int32_t w, int32_t h, int32_t colorFormat, float fps, bool looping)
46 virtual ~Source() = default;
68 std::shared_ptr<Source> createDecoderSource(
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiCopyMemRep1.c 27 IN VOID *Source,
34 Copy Length bytes from Source to Destination.
40 Source - Place to copy from
51 mov esi, Source ; esi <- Source
58 lea eax, [esi + edx - 1] ; eax <- End of Source
63 mov esi, eax ; esi <- End of Source
EfiCopyMemRep4.c 27 IN VOID *Source,
34 Copy Length bytes from Source to Destination.
40 Source - Place to copy from
51 mov esi, Source ; esi <- Source
58 lea eax, [esi + edx - 1] ; eax <- End of Source
70 mov esi, eax ; esi <- End of Source
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
F86GuidedSectionExtraction.c 144 VOID *Source;
156 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
160 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
174 Source,
185 Source,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/
F86GuidedSectionExtraction.c 144 VOID *Source;
156 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
160 Source = (UINT8 *) InputSection + ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
174 Source,
185 Source,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Io.c 41 TcpInput (Pkt, NetSession->Source.Addr[0], NetSession->Dest.Addr[0]);
43 TcpIcmpInput (Pkt, IcmpErr, NetSession->Source.Addr[0], NetSession->Dest.Addr[0]);
53 @param Src Source address of the TCP segment.
74 EFI_IP_ADDRESS Source;
77 Source.Addr[0] = Src;
83 IpSender = IpIoFindSender (&IpIo, IP_VERSION_4, &Source);
  /external/clang/lib/AST/
DeclFriend.cpp 5 // This file is distributed under the University of Illinois Open Source
66 ExternalASTSource *Source = getParentASTContext().getExternalSource();
67 Decl *First = data().FirstFriend.get(Source);
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 5 // This file is distributed under the University of Illinois Open Source
28 TestFrontendAction(ExternalASTSource *Source) : Source(Source) {}
32 getCompilerInstance().getASTContext().setExternalSource(Source);
43 IntrusiveRefCntPtr<ExternalASTSource> Source;
46 bool testExternalASTSource(ExternalASTSource *Source,
60 TestFrontendAction Action(Source);
65 // Ensure that a failed name lookup into an external source only occurs once.
  /external/deqp/external/openglcts/scripts/
verify_kc_cts_rev.py 41 class Source:
51 class GitRepo (Source):
53 Source.__init__(self, baseDir, extractDir)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue21048.go 4 // Use of this source code is governed by a BSD-style
26 var Source, Sink T
40 Sink.a = Source.a
41 Sink.b = Source.b
42 Sink.c = Source.c
43 Sink.d = Source.d
44 Sink.e = Source.e
50 t.a = Source.a
51 t.b = Source.b
52 t.c = Source.
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue21048.go 4 // Use of this source code is governed by a BSD-style
26 var Source, Sink T
40 Sink.a = Source.a
41 Sink.b = Source.b
42 Sink.c = Source.c
43 Sink.d = Source.d
44 Sink.e = Source.e
50 t.a = Source.a
51 t.b = Source.b
52 t.c = Source.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Image/
Image.h 39 VOID *Source;
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 5 // This file is distributed under the University of Illinois Open Source
25 StringRef Source = "; Empty module \n";
27 auto Mod = parseAssemblyString(Source, Error, Ctx);
38 StringRef Source = "; Empty module \n\1\2";
41 EXPECT_DEATH(Mod = parseAssemblyString(Source.substr(0, Source.size() - 2),
51 StringRef Source = "@0 = global i32 0\n !0 = !{}\n !42 = !{i32 42}";
54 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping);
71 StringRef Source = "define void @test() {\n entry:\n ret void\n}";
72 auto Mod = parseAssemblyString(Source, Error, Ctx)
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
tensor_coding.h 49 // Source provides a way for a particular RPC implementation to provide
51 class Source {
53 virtual ~Source();
64 // Ownership of the returned stream is retained by the Source and
70 // source->contents() into *this.
71 Status ParseFrom(Source* source);
93 bool ParseFast(Source* source);
94 bool ParseSlow(Source* source)
    [all...]
  /frameworks/base/tools/aapt2/
Source.h 2 * Copyright (C) 2015 The Android Open Source Project
31 struct Source {
35 Source() = default;
37 inline Source(const android::StringPiece& path) : path(path.to_string()) { // NOLINT(implicit)
40 inline Source(const android::StringPiece& path, size_t line)
43 inline Source WithLine(size_t line) const {
44 return Source(path, line);
59 inline ::std::ostream& operator<<(::std::ostream& out, const Source& source) {
60 return out << source.to_string()
    [all...]
  /frameworks/compile/libbcc/include/bcc/
Source.h 2 * Copyright 2010-2012, The Android Open Source Project
34 class Source {
50 Source(const char* name, BCCContext &pContext, llvm::Module &pModule,
54 static Source *CreateFromBuffer(BCCContext &pContext,
59 static Source *CreateFromFile(BCCContext &pContext,
62 // Create a Source object from an existing module. If pNoDelete
64 static Source *CreateFromModule(BCCContext &pContext,
73 // Merge the current source with pSource. pSource
75 bool merge(Source &pSource);
112 ~Source();
    [all...]
  /frameworks/compile/libbcc/lib/
Source.cpp 2 * Copyright 2012, The Android Open Source Project
17 #include "bcc/Source.h"
86 unsigned Source::getCompilerVersion() const {
90 void Source::getWrapperInformation(unsigned *compilerVersion,
97 void Source::setModule(llvm::Module *pModule) {
102 Source *Source::CreateFromBuffer(BCCContext &pContext,
119 // the error check below or in ~Source() (since pNoDelete is false).
128 Source *result = CreateFromModule(pContext, pName, *module,
138 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath)
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
bld_vlv.bat 29 set Source=0
193 if %Source% == 0 (
196 echo ACTIVE_PLATFORM = %PLATFORM_PACKAGE%/PlatformPkg%Arch%Source.dsc >> Conf\target.txt.tmp
  /external/libmojo/mojo/edk/system/
request_context.h 2 // Use of this source code is governed by a BSD-style license that can be
33 // Identifies the source of the current stack frame's RequestContext.
34 enum class Source {
39 // Constructs a RequestContext with a LOCAL_API_CALL Source.
42 explicit RequestContext(Source source);
48 Source source() const { return source_; } function in class:mojo::edk::RequestContext
90 const Source source_;
  /external/swiftshader/third_party/LLVM/utils/TableGen/
PseudoLoweringEmitter.h 5 // This file is distributed under the University of Illinois Open Source
32 CodeGenInstruction Source; // The source pseudo instruction definition.
38 Source(s), Dest(d), OperandMap(m) {}

Completed in 693 milliseconds

1 2 3 4 5 6 7 8 91011>>