HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 1 - 25 of 9781) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Frontend/
verify2.c 10 #error source
18 // CHECK-NEXT: Line 10: source
37 // CHECK2-NEXT: File {{.*}}verify2.c Line 10: source
  /libcore/luni/src/main/java/java/text/
CollationKey.java 35 * During the construction of a {@code CollationKey}, the entire source string
82 private final String source; field in class:CollationKey
84 protected CollationKey(String source) {
85 this.source = source;
100 * @return the source string of this collation key.
103 return source;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
DummyLocalizable.java 32 /** Source string. */
33 private final String source; field in class:DummyLocalizable
36 * @param source source text
38 public DummyLocalizable(final String source) {
39 this.source = source;
44 return source;
49 return source;
55 return source;
    [all...]
  /libcore/luni/src/main/java/java/util/
EventObject.java 34 protected transient Object source; field in class:EventObject
39 * @param source
42 public EventObject(Object source) {
43 if (source == null) {
44 throw new IllegalArgumentException("source == null");
46 this.source = source;
53 return source;
60 return getClass().getName() + "[source=" + source + ']'
    [all...]
  /frameworks/base/core/java/android/text/
SpannedString.java 2 * Copyright (C) 2006 The Android Open Source Project
29 public SpannedString(CharSequence source) {
30 super(source, 0, source.length());
33 private SpannedString(CharSequence source, int start, int end) {
34 super(source, start, end);
41 public static SpannedString valueOf(CharSequence source) {
42 if (source instanceof SpannedString) {
43 return (SpannedString) source;
45 return new SpannedString(source);
    [all...]
SpannableString.java 2 * Copyright (C) 2006 The Android Open Source Project
29 public SpannableString(CharSequence source) {
30 super(source, 0, source.length());
33 private SpannableString(CharSequence source, int start, int end) {
34 super(source, start, end);
37 public static SpannableString valueOf(CharSequence source) {
38 if (source instanceof SpannableString) {
39 return (SpannableString) source;
41 return new SpannableString(source);
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLBIOSource.java 2 * Copyright (C) 2014 The Android Open Source Project
24 private OpenSSLBIOInputStream source; field in class:OpenSSLBIOSource
31 public OpenSSLBIOSource(OpenSSLBIOInputStream source) {
32 this.source = source;
36 return source.getBioContext();
40 if (source != null) {
41 NativeCrypto.BIO_free_all(source.getBioContext());
42 source = null;
56 private final ByteBuffer source; field in class:OpenSSLBIOSource.ByteBufferInputStream
    [all...]
  /cts/tools/signature-tools/test/signature/converter/util/
CompilationUnit.java 2 * Copyright (C) 2009 The Android Open Source Project
23 private String source; field in class:CompilationUnit
25 public CompilationUnit(String name, String source) {
27 this.source = source;
35 return source;
  /external/lldb/
Android.mk 12 source \
13 source/API \
14 source/Breakpoint \
15 source/Commands \
16 source/Core \
17 source/DataFormatters \
18 source/Expression \
19 source/Host \
20 source/Interpreter \
21 source/Plugins
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Envelope.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 private Endpoint source; field in class:Envelope
50 * source. The 'reliable' flag further indicates on which mode of
53 public Envelope( Endpoint source, byte[] data, boolean reliable )
55 this.source = source;
62 return source;
77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";
EndpointEvent.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
47 private Kernel source; field in class:EndpointEvent
51 public EndpointEvent( Kernel source, Endpoint p, Type type )
53 this.source = source;
58 public static EndpointEvent createAdd( Kernel source, Endpoint p )
60 return new EndpointEvent( source, p, Type.ADD );
63 public static EndpointEvent createRemove( Kernel source, Endpoint p )
65 return new EndpointEvent( source, p, Type.REMOVE )
    [all...]
  /external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/
ref_1.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
22 const A source() {return A();} function
26 std::reference_wrapper<const A> r = std::ref(source());
  /external/libcxx/test/std/utilities/utility/forward/
forward1.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
18 A source() {return A();} function
23 std::forward<A&>(source()); // error
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/
ref_1.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
22 const A source() {return A();} function
26 std::reference_wrapper<const A> r = std::ref(source());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/
forward1.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
18 A source() {return A();} function
23 std::forward<A&>(source()); // error
  /external/mesa3d/src/glsl/glcpp/tests/
091-hash-line.c 6 #error source 1, line 0 error
8 #error source 2, line 30 error
13 #define FUNCTION_LIKE_MACRO(source, line) source line
  /external/nist-sip/java/javax/sip/
TimeoutEvent.java 6 public TimeoutEvent(Object source, ServerTransaction serverTransaction,
8 super(source, serverTransaction);
12 public TimeoutEvent(Object source, ClientTransaction clientTransaction,
14 super(source, clientTransaction);
  /external/zlib/src/contrib/puff/
puff.h 17 2. Altered source versions must be plainly marked as such, and must not be
19 3. This notice may not be removed or altered from any source distribution.
34 const unsigned char *source, /* pointer to source data pointer */
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDebugMessageInsertKHR.java 1 // C function void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf )
4 int source,
  /system/core/include/cutils/
partition_utils.h 2 * Copyright 2011, The Android Open Source Project
22 int partition_wiped(char *source);
  /external/hamcrest/library/src/org/hamcrest/object/
IsEventFrom.java 18 private final Object source; field in class:IsEventFrom
20 public IsEventFrom(Class eventClass, Object source) {
22 this.source = source;
31 return ev.getSource() == source;
38 .appendValue(source);
43 * derived from <var>eventClass</var> announced by <var>source</var>.
46 public static Matcher<EventObject> eventFrom(Class<? extends EventObject> eventClass, Object source) {
47 return new IsEventFrom(eventClass, source);
52 * derived from {@link java.util.EventObject} announced by <var>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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
MultiplyTimeScaleTrack.java 37 Track source; field in class:MultiplyTimeScaleTrack
40 public MultiplyTimeScaleTrack(Track source, int timeScaleFactor) {
41 this.source = source;
46 return source.getSampleDescriptionBox();
50 return adjustTts(source.getDecodingTimeEntries(), timeScaleFactor);
54 return adjustCtts(source.getCompositionTimeEntries(), timeScaleFactor);
58 return source.getSyncSamples();
62 return source.getSampleDependencies();
66 TrackMetaData trackMetaData = (TrackMetaData) source.getTrackMetaData().clone()
    [all...]
  /external/libyuv/
Android.mk 7 files/source/compare.cc \
8 files/source/convert.cc \
9 files/source/convert_argb.cc \
10 files/source/convert_from.cc \
11 files/source/cpu_id.cc \
12 files/source/format_conversion.cc \
13 files/source/planar_functions.cc \
14 files/source/rotate.cc \
15 files/source/rotate_argb.cc \
16 files/source/row_common.cc
    [all...]
  /external/jpeg/
rdrle.c 83 rle_source_ptr source = (rle_source_ptr) sinfo; local
90 source->header = *rle_hdr_init(NULL);
91 source->header.rle_file = source->pub.input_file;
92 switch (rle_get_setup(&(source->header))) {
115 width = source->header.xmax - source->header.xmin + 1;
116 height = source->header.ymax - source->header.ymin + 1;
117 source->header.xmin = 0; /* realign horizontally *
189 rle_source_ptr source = (rle_source_ptr) sinfo; local
207 rle_source_ptr source = (rle_source_ptr) sinfo; local
243 rle_source_ptr source = (rle_source_ptr) sinfo; local
373 rle_source_ptr source; local
    [all...]

Completed in 1025 milliseconds

1 2 3 4 5 6 7 8 91011>>