HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 26 - 50 of 4045) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/base/
socketaddresspair.h 4 * 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
  /libcore/ojluni/src/main/java/java/util/
EventObject.java 32 * All Events are constructed with a reference to the object, the "source",
46 protected transient Object source; field in class:EventObject
51 * @param source The object on which the Event initially occurred.
52 * @exception IllegalArgumentException if source is null.
54 public EventObject(Object source) {
55 if (source == null)
56 throw new IllegalArgumentException("null source");
58 this.source = source;
67 return source;
    [all...]
  /packages/services/Car/tools/keventreader/server/
event.h 2 * Copyright (C) 2018 The Android Open Source Project
28 KeypressEvent(const std::string source = "", uint32_t keycode = 0, bool keydown = false);
30 std::string source; member in struct:com::android::car::keventreader::KeypressEvent
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ivtvfb.h 30 void *source; member in struct:ivtvfb_dma_frame
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/forward/
forward.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
20 A source() {return A();} function
27 std::forward<A&>(source()); // expected-note {{requested here}}
32 std::forward<A&>(source()); // expected-error {{no matching function for call to 'forward'}}
move.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
23 move_only source() {return move_only();} function
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
message.cpp 21 std::string StringifyMessage(spv_message_level_t level, const char* source,
47 if (source) oss << source << ":"; local
  /external/vogar/src/vogar/target/
Package.java 2 * Copyright (C) 2008 The Android Open Source Project
32 private final ClassPathScanner source; field in class:Package
36 Package(ClassPathScanner source,
38 this.source = source;
52 info.add(source.scan(name));
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Base64Body.java 2 * Copyright (C) 2015 The Android Open Source Project
26 private final InputStream source; field in class:Base64Body
30 public Base64Body(InputStream source) {
31 this.source = source;
36 return source;
56 IOUtils.copyLarge(source, b64out);
58 source.close();
  /tools/tradefederation/core/tests/src/com/android/tradefed/result/
SnapshotInputStreamSourceTest.java 2 * Copyright (C) 2011 The Android Open Source Project
50 InputStreamSource source = local
59 source.close();
  /bionic/libc/include/netinet/
udp.h 2 * Copyright (C) 2008 The Android Open Source Project
5 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
46 u_int16_t source; member in struct:udphdr::__anon298::__anon300
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/
DalService.java 2 * Copyright (C) 2017 The Android Open Source Project
17 package com.example.android.autofill.service.data.source;
27 Call<DalCheck> check(@Query("source.web.site") String webDomain,
DefaultFieldTypesSource.java 2 * Copyright (C) 2018 The Android Open Source Project
17 package com.example.android.autofill.service.data.source;
DigitalAssetLinksDataSource.java 2 * Copyright (C) 2017 The Android Open Source Project
16 package com.example.android.autofill.service.data.source;
25 * Data source for
PackageVerificationDataSource.java 2 * Copyright (C) 2017 The Android Open Source Project
16 package com.example.android.autofill.service.data.source;
  /external/dng_sdk/source/
dng_jpeg_memory_source.cpp 14 // 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/guava/guava/src/com/google/common/eventbus/
DeadEvent.java 36 private final Object source; field in class:DeadEvent
42 * @param source object broadcasting the DeadEvent (generally the
46 public DeadEvent(Object source, Object event) {
47 this.source = checkNotNull(source);
55 * @return the source of this event.
58 return source;
  /external/guice/core/src/com/google/inject/internal/
InternalFactoryToProviderAdapter.java 30 private final Object source; field in class:InternalFactoryToProviderAdapter
32 public InternalFactoryToProviderAdapter(Provider<? extends T> provider, Object source) {
34 this.source = checkNotNull(source, "source");
41 return errors.checkForNull(provider.get(), source, dependency);
43 throw errors.withSource(source).errorInProvider(userException).toException();
  /external/guice/core/src/com/google/inject/spi/
DisableCircularProxiesOption.java 30 private final Object source; field in class:DisableCircularProxiesOption
32 DisableCircularProxiesOption(Object source) {
33 this.source = checkNotNull(source, "source");
37 return source;
RequireAtInjectOnConstructorsOption.java 31 private final Object source; field in class:RequireAtInjectOnConstructorsOption
33 RequireAtInjectOnConstructorsOption(Object source) {
34 this.source = checkNotNull(source, "source");
38 return source;
RequireExactBindingAnnotationsOption.java 30 private final Object source; field in class:RequireExactBindingAnnotationsOption
32 RequireExactBindingAnnotationsOption(Object source) {
33 this.source = checkNotNull(source, "source");
37 return source;
RequireExplicitBindingsOption.java 30 private final Object source; field in class:RequireExplicitBindingsOption
32 RequireExplicitBindingsOption(Object source) {
33 this.source = checkNotNull(source, "source");
37 return source;
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_buffer_objects.h 52 bool source; member in struct:intel_buffer_object
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RealResponseBody.java 25 private final BufferedSource source; field in class:RealResponseBody
27 public RealResponseBody(Headers headers, BufferedSource source) {
29 this.source = source;
41 @Override public BufferedSource source() { method in class:RealResponseBody
42 return source;
  /external/pdfium/testing/libfuzzer/
xfa_codec_fuzzer.h 2 // Use of this source code is governed by a BSD-style license that can be
35 auto source = pdfium::MakeRetain<CFX_BufferSeekableReadStream>(data, size); local
36 FXCODEC_STATUS status = decoder->LoadImageInfo(source, type, nullptr, true);

Completed in 552 milliseconds

12 3 4 5 6 7 8 91011>>