Searched refs:Source (Results 1 - 25 of 540) sorted by relevance

1234567891011>>

/external/parameter-framework/upstream/utility/
H A DBinaryCopy.hpp48 * @tparam Source The source type
51 * @param source Source variable
54 template <class Destination, class Source>
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source)
57 static_assert(sizeof(Source) == sizeof(Destination),
58 "Source and Destination must have the same size");
64 Source source;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
H A DSourceTest.java25 * Unit tests for {@link Source}.
32 final Source s = new Source(new StringReader(src));
39 final Source s = new Source(new StringReader(src));
46 final Source s = new Source(new StringReader(src));
53 final Source s = new Source(new StringReader(src));
62 final Source
[all...]
H A DSource.java31 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/okhttp/okio/okio/src/main/java/okio/
H A DForwardingSource.java20 /** A {@link Source} which forwards calls to another. Useful for subclassing. */
21 public abstract class ForwardingSource implements Source {
22 private final Source delegate;
24 public ForwardingSource(Source delegate) {
29 /** {@link Source} to which this instance is delegating. */
30 public final Source delegate() {
H A DSource.java29 * {@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/lz4/
H A DAndroid.mk1 # Copyright (C) 2015 The Android Open Source Project
/external/squashfs-tools/
H A DAndroid.mk1 # Copyright (C) 2015 The Android Open Source Project
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dmultiple.hpp54 /// Higher multiple number of Source.
57 /// @param Source
63 genType const & Source,
66 /// Lower multiple number of Source.
69 /// @param Source
75 genType const & Source,
H A Dextend.hpp53 /// Extends of Length the Origin position using the (Source - Origin) direction.
58 genType const & Source,
/external/clang/unittests/AST/
H A DExternalASTSourceTest.cpp5 // 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);
/external/llvm/lib/Support/
H A DStringExtras.cpp5 // 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);
H A DConvertUTFWrapper.cpp5 // This file is distributed under the University of Illinois Open Source
17 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source, argument
23 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin());
24 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) {
28 memcpy(ResultPtr, Source.data(), Source.size());
29 ResultPtr += Source.size();
32 const UTF8 *sourceStart = (const UTF8*)Source.data();
38 &sourceStart, sourceStart + Source.size(),
39 &targetStart, targetStart + 2*Source
63 ConvertCodePointToUTF8(unsigned Source, char *&ResultPtr) argument
[all...]
/external/valgrind/memcheck/tests/
H A Doverlap.stderr.exp0 Source and destination overlap in memcpy(0x........, 0x........, 21)
5 Source and destination overlap in memcpy(0x........, 0x........, 21)
9 Source and destination overlap in strncpy(0x........, 0x........, 21)
13 Source and destination overlap in strncpy(0x........, 0x........, 21)
17 Source and destination overlap in strcpy(0x........, 0x........)
21 Source and destination overlap in strncat(0x........, 0x........, 21)
25 Source and destination overlap in strncat(0x........, 0x........, 21)
/external/libchrome/base/
H A Dscoped_observer.h20 template <class Source, class Observer>
30 void Add(Source* source) {
36 void Remove(Source* source) {
49 bool IsObserving(Source* source) const {
58 std::vector<Source*> sources_;
/external/libweave/third_party/chromium/base/
H A Dscoped_observer.h19 template <class Source, class Observer>
29 void Add(Source* source) {
35 void Remove(Source* source) {
48 bool IsObserving(Source* source) const {
57 std::vector<Source*> sources_;
/external/opencv3/samples/wp8/OpenCVXaml/OpenCVXaml/
H A DMainPage.xaml.cs31 if (Preview.Source != null)
36 WriteableBitmap bitmap = new WriteableBitmap(Preview.Source as BitmapSource);
48 Preview.Source = bitmap;
/external/llvm/unittests/AsmParser/
H A DAsmParserTest.cpp5 // 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/clang/unittests/Lex/
H A DPPCallbacksTest.cpp5 // This file is distributed under the University of Illinois Open Source
242 const char* Source = local
246 InclusionDirectiveFilenameRange(Source, "/quoted.h", false);
252 const char* Source = local
256 InclusionDirectiveFilenameRange(Source, "/angled.h", true);
262 const char* Source = local
267 InclusionDirectiveFilenameRange(Source, "/quoted.h", false);
273 const char* Source = local
278 InclusionDirectiveFilenameRange(Source, "/angled.h", true);
284 const char* Source local
295 const char* Source = local
307 const char* Source = local
317 const char* Source = local
328 const char* Source = local
340 const char* Source = local
[all...]
/external/boringssl/src/tool/
H A Ddigest.cc58 // Source is an awkward expression of a union type in C++: Stdin | File filename.
59 struct Source { struct
64 Source() : is_stdin_(false) {} function in struct:Source
65 Source(Type) : is_stdin_(true) {} function in struct:Source
66 Source(const std::string &name) : is_stdin_(false), filename_(name) {} function in struct:Source
117 const Source &source) {
187 static bool PrintFileSum(const EVP_MD *md, const Source &source) {
223 const Source &source) {
307 Source target_source;
310 target_source = Source(Sourc
[all...]
/external/llvm/autoconf/m4/
H A Dconfig_project.m46 AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),
/external/llvm/bindings/ocaml/all_backends/
H A Dllvm_all_backends.ml5 * This file is distributed under the University of Illinois Open Source
H A Dllvm_all_backends.mli5 * This file is distributed under the University of Illinois Open Source
/external/llvm/bindings/ocaml/transforms/utils/
H A Dllvm_transform_utils.ml5 * This file is distributed under the University of Illinois Open Source
/external/lzma/xz-embedded/
H A DAndroid.mk1 # Copyright 2013 The Android Open Source Project
/external/webrtc/webrtc/modules/audio_processing/transient/
H A Dfile_utils.h23 template <class Dest, class Source>
24 inline Dest bit_cast(const Source& source) {
25 // A compile error here means your Dest and Source have different sizes.
26 static_assert(sizeof(Dest) == sizeof(Source),
27 "Dest and Source have different sizes");

Completed in 1046 milliseconds

1234567891011>>