Searched defs:source (Results 51 - 75 of 1548) sorted by relevance

1234567891011>>

/external/strace/tests-mx32/
H A Dmount.c7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
48 static const char source[] = "mount_source"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, targe
[all...]
/external/swiftshader/third_party/LLVM/lib/Object/
H A DObjectFile.cpp24 ObjectFile::ObjectFile(unsigned int Type, MemoryBuffer *source, error_code &ec) argument
25 : Binary(Type, source) {
/external/v8/samples/
H A Dhello-world.cc2 // Use of this source code is governed by a BSD-style license that can be
39 // Create a string containing the JavaScript source code.
40 Local<String> source = local
44 // Compile the source code.
45 Local<Script> script = Script::Compile(context, source).ToLocalChecked();
/external/v8/src/builtins/
H A Dbuiltins-json.cc2 // Use of this source code is governed by a BSD-style license that can be
17 Handle<Object> source = args.atOrUndefined(isolate, 1); local
21 Object::ToString(isolate, source));
/external/valgrind/none/tests/s390x/
H A Dex_clone.c10 char source[40] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\0"; variable
32 ::"a" (buf2), "a" (source)
55 ::"a" (target), "a" (source)
H A Dmvst.c16 int mvst(void *targetp, void *source) argument
21 ::"a" (targetp),"a" (source): "0", "memory", "cc");
25 int mvst_full(void *targetp, void *source) argument
31 ::"a" (targetp),"a" (source): "0", "memory", "cc");
/external/vogar/src/vogar/
H A DFileCache.java28 void copyToCache(File source, String key); argument
/external/vogar/src/vogar/target/
H A DPackage.java32 private final ClassPathScanner source; field in class:Package
36 Package(ClassPathScanner source, argument
38 this.source = source;
52 info.add(source.scan(name));
/external/vogar/src/vogar/tasks/
H A DRetrieveFilesTask.java43 private void retrieveFiles(File destination, File source, FileFilter filenameFilter) argument
45 for (File file : run.target.ls(source)) {
/external/webrtc/webrtc/base/
H A Dsocketaddresspair.h4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
18 // Records a pair (source,destination) of socket addresses. The two addresses
26 const SocketAddress& source() const { return src_; } function in class:rtc::SocketAddressPair
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
H A DDummyLocalizable.java33 private final String source; field in class:DummyLocalizable
36 * @param source source text
38 public DummyLocalizable(final String source) { argument
39 this.source = source;
44 return source;
49 return source;
55 return source;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource.java87 public void startParse(InputSource source) throws SAXException; argument
/external/compiler-rt/lib/scudo/
H A Dscudo_utils.h24 inline Dest bit_cast(const Source& source) { argument
27 memcpy(&dest, &source, sizeof(dest));
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLBIOSource.java24 * Wrapped by a BoringSSL BIO to act as a source of bytes.
30 private OpenSSLBIOInputStream source; field in class:OpenSSLBIOSource
37 public OpenSSLBIOSource(OpenSSLBIOInputStream source) { argument
38 this.source = source;
42 return source.getBioContext();
46 if (source != null) {
47 NativeCrypto.BIO_free_all(source.getBioContext());
48 source = null;
62 private final ByteBuffer source; field in class:OpenSSLBIOSource.ByteBufferInputStream
64 ByteBufferInputStream(ByteBuffer source) argument
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkSpirVProgram.hpp42 : source(source_)
46 std::string source; member in struct:vk::SpirVAsmSource
57 std::string source; member in struct:vk::SpirVProgramInfo
70 src.source += de::toString(val);
/external/dng_sdk/source/
H A Ddng_jpeg_memory_source.cpp14 // We already filled the buffer with all of the data when the source was
61 jpeg_source_mgr source; local
63 source.next_input_byte = reinterpret_cast<const JOCTET *>(buffer);
64 source.bytes_in_buffer = size;
67 source.init_source = InitSource;
68 source.fill_input_buffer = FillInputBuffer;
69 source.skip_input_data = SkipInputData;
70 source.resync_to_restart = ResyncToRestart;
71 source.term_source = TermSource;
73 return source;
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/
H A DNullDecoder.java27 public Resource<Z> decode(T source, int width, int height) { argument
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DFileDescriptorBitmapDecoder.java44 public Resource<Bitmap> decode(ParcelFileDescriptor source, int width, int height) throws IOException { argument
45 Bitmap bitmap = bitmapDecoder.decode(source, bitmapPool, width, height, decodeFormat);
H A DImageVideoBitmapDecoder.java34 public Resource<Bitmap> decode(ImageVideoWrapper source, int width, int height) throws IOException { argument
36 InputStream is = source.getStream();
48 ParcelFileDescriptor fileDescriptor = source.getFileDescriptor();
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DFileDecoder.java14 public Resource<File> decode(File source, int width, int height) { argument
15 return new FileResource(source);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifFrameResourceDecoder.java19 public Resource<Bitmap> decode(GifDecoder source, int width, int height) { argument
20 Bitmap bitmap = source.getNextFrame();
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
H A DGifBitmapWrapperStreamResourceDecoder.java23 public Resource<GifBitmapWrapper> decode(InputStream source, int width, int height) throws IOException { argument
24 return gifBitmapDecoder.decode(new ImageVideoWrapper(source, null), width, height);
/external/google-breakpad/src/common/windows/
H A Dstring_utils-inl.h4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
73 // not fail if source is longer than destination_size. The destination
76 const wchar_t *source);
79 // be passed directly, and pre-MSVC8, this will not fail if source or count
83 const wchar_t *source, size_t count);
107 const wchar_t *source) {
109 wcscpy_s(destination, destination_size, source);
112 // wcsncpy doesn't 0-terminate the destination buffer if the source string
114 wcsncpy(destination, source, destination_siz
105 safe_wcscpy(wchar_t *destination, size_t destination_size, const wchar_t *source) argument
121 safe_wcsncpy(wchar_t *destination, size_t destination_size, const wchar_t *source, size_t count) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DConflictingRequirementsException.java32 private Object source; field in class:ConflictingRequirementsException
35 String message, Set<Feature<?>> conflicts, Object source) {
38 this.source = source;
46 return source;
50 return super.getMessage() + " (source: " + source + ")";
34 ConflictingRequirementsException( String message, Set<Feature<?>> conflicts, Object source) argument
/external/guice/core/src/com/google/inject/
H A DPrivateBinder.java47 PrivateBinder withSource(Object source); argument

Completed in 472 milliseconds

1234567891011>>