Searched defs:source (Results 26 - 50 of 1548) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/utility/forward/
H A Dforward.fail.cpp20 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'}}
H A Dmove.fail.cpp23 move_only source() {return move_only();} function
/external/nist-sip/java/javax/sip/
H A DDialogTerminatedEvent.java8 public DialogTerminatedEvent(Object source, Dialog dialog) { argument
9 super(source);
H A DTimeoutEvent.java6 public TimeoutEvent(Object source, ServerTransaction serverTransaction, argument
8 super(source, serverTransaction);
12 public TimeoutEvent(Object source, ClientTransaction clientTransaction, argument
14 super(source, clientTransaction);
/external/skia/tools/viewer/sk_app/android/
H A Dmain_android.cpp4 * Use of this source code is governed by a BSD-style license that can be
45 struct android_poll_source* source; local
49 (void**)&source)) >= 0) {
52 if (source != NULL) {
53 source->process(state, source);
/external/valgrind/none/tests/s390x/
H A Dex_sig.c11 char source[40] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\0"; variable
25 ::"a" (buf2), "a" (source)
43 ::"a" (target), "a" (source)
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DMain.java66 public static void parse(File source) throws Exception argument
76 if (source.isDirectory())
78 System.out.println("Directory: " + source.getAbsolutePath());
79 String files[] = source.list();
83 parse(new File(source, files[i]));
93 String sourceFile = source.getName();
103 parseSource(source.getAbsolutePath());
116 public static void parseSource(String source) throws Exception argument
123 // and tell the lexer that that is the character source.
127 lexer.setCharStream(new ANTLRFileStream(source, "UTF
[all...]
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/mock/
H A DMockPropertyChangeEvent.java33 * @param source
35 public MockPropertyChangeEvent(Object source) { argument
36 super(source);
/external/autotest/frontend/client/src/autotest/common/
H A DSimpleChangeListenerCollection.java7 private Object source; field in class:SimpleChangeListenerCollection
10 public SimpleChangeListenerCollection(Object source) { argument
11 this.source = source;
20 listener.onChange(source);
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DResourceDecoder.java18 * The {@code source} is managed by the caller, there's no need to close it.
28 * @param source The data the resource should be decoded from.
33 Resource<Z> decode(T source, int width, int height) throws IOException; argument
/external/guava/guava/src/com/google/common/eventbus/
H A DDeadEvent.java36 private final Object source; field in class:DeadEvent
42 * @param source object broadcasting the DeadEvent (generally the
46 public DeadEvent(Object source, Object event) { argument
47 this.source = checkNotNull(source);
55 * @return the source of this event.
58 return source;
/external/guice/core/src/com/google/inject/internal/
H A DErrorHandler.java31 void handle(Object source, Errors errors); argument
/external/guice/core/src/com/google/inject/spi/
H A DDependencyAndSource.java28 * source} where the dependency was bound.
35 private final Object source; field in class:DependencyAndSource
37 public DependencyAndSource(Dependency<?> dependency, Object source) { argument
39 this.source = source;
56 * was just-in-time, there is no valid binding source, so this describes the
60 if (source instanceof Class) {
61 return StackTraceElements.forType((Class) source).toString();
62 } else if (source instanceof Member) {
63 return StackTraceElements.forMember((Member) source)
[all...]
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/object/
H A DIsEventFromTest.java22 EventObject ev2 = new EventObject("source 2");
27 assertMismatchDescription("source was \"source 2\"", isEventMatcher, ev2);
33 public DerivedEvent(Object source) { argument
34 super(source);
41 DerivedEvent wrongSource = new DerivedEvent("wrong source");
48 assertMismatchDescription("source was \"wrong source\"", isEventMatcher, wrongSource);
/external/libmojo/
H A Dbuild_mojom.mk2 # Use of this source code is governed by a BSD-style license that can be
16 define generate-mojom-source
50 $$(transform-generated-source)
66 # LOCAL_GENERATED_SOURCES will filter out anything that's not a C/C++ source
70 endef # define generate-mojom-source
73 $(foreach file,$(LOCAL_MOJOM_FILES),$(eval $(call generate-mojom-source,$(file))))
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRealResponseBody.java25 private final BufferedSource source; field in class:RealResponseBody
27 public RealResponseBody(Headers headers, BufferedSource source) { argument
29 this.source = source;
41 @Override public BufferedSource source() { method in class:RealResponseBody
42 return source;
/external/okhttp/okio/okio/src/main/java/okio/
H A DForwardingSink.java34 @Override public void write(Buffer source, long byteCount) throws IOException { argument
35 delegate.write(source, byteCount);
H A DSink.java52 /** Removes {@code byteCount} bytes from {@code source} and appends them to this. */
53 void write(Buffer source, long byteCount) throws IOException; argument
/external/pdfium/third_party/zlib_v128/
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
27 const Bytef *source,
33 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
24 uncompress( Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DVectorPool.java41 /** Allocates a vector and assigns the value of the passed source vector to it. */
42 public Vector2 allocate(Vector2 source) { argument
44 entry.set(source);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPhoneNumberUtils.java11 public static java.lang.String formatNumber(java.lang.String source) { argument
12 return source + "-formatted";
16 public static java.lang.String stripSeparators(java.lang.String source) { argument
17 return source + "-stripped";
/external/skia/gm/
H A Dsubsetshader.cpp4 * Use of this source code is governed by a BSD-style license that can be
15 SkBitmap source; local
16 if (!GetResourceAsBitmap("color_wheel.png", &source)) {
19 SkIRect left = SkIRect::MakeWH(source.width()/2, source.height());
20 SkIRect right = SkIRect::MakeXYWH(source.width()/2, 0,
21 source.width()/2, source.height());
23 source.extractSubset(&leftBitmap, left);
24 source
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DTextUtils.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
42 public static String normalizeNewlines(@Nonnull String source) { argument
43 return normalizeNewlines(source, newline);
47 public static String normalizeNewlines(@Nonnull String source, String newlineValue) { argument
48 return source.replace("\r", "").replace("\n", newlineValue);
52 public static String normalizeWhitespace(@Nonnull String source) { argument
54 source = normalizeNewlines(source);
58 Matcher matcher = pattern.matcher(source);
77 stripComments(@onnull String source) argument
[all...]
/external/strace/tests/
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/strace/tests-m32/
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...]

Completed in 3446 milliseconds

1234567891011>>