Searched defs:source (Results 1 - 25 of 463) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDebugMessageInsertKHR.java1 // C function void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf )
4 int source,
3 glDebugMessageInsertKHR( int source, int type, int id, int severity, String buf ) argument
H A DglGetShaderSource.java1 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
8 byte[] source,
12 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
19 byte source
22 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
3 glGetShaderSource( int shader, int bufsize, int[] length, int lengthOffset, byte[] source, int sourceOffset ) argument
H A DglDebugMessageCallbackKHR.java4 void onMessage(int source, int type, int id, int severity, String message); argument
/frameworks/av/media/libstagefright/tests/
H A DDummyRecorder.h32 // The media source from which this will receive frames
46 DummyRecorder(const sp<MediaSource> &source) : mSource(source) argument
/frameworks/base/core/java/android/text/
H A DSpannedString.java29 public SpannedString(CharSequence source) { argument
30 super(source, 0, source.length());
33 private SpannedString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
41 public static SpannedString valueOf(CharSequence source) { argument
42 if (source instanceof SpannedString) {
43 return (SpannedString) source;
45 return new SpannedString(source);
H A DInputFilter.java29 * of <code>source</code>. Return the CharSequence that you would
37 * Note: If <var>source</var> is an instance of {@link Spanned} or
38 * {@link Spannable}, the span objects in the <var>source</var> should be
42 public CharSequence filter(CharSequence source, int start, int end, argument
50 public CharSequence filter(CharSequence source, int start, int end, argument
53 if (Character.isLowerCase(source.charAt(i))) {
55 TextUtils.getChars(source, start, end, v, 0);
58 if (source instanceof Spanned) {
60 TextUtils.copySpansFrom((Spanned) source,
84 public CharSequence filter(CharSequence source, in argument
[all...]
H A DSpannable.java66 public Spannable newSpannable(CharSequence source) { argument
67 return new SpannableString(source);
H A DSpannableString.java29 public SpannableString(CharSequence source) { argument
30 super(source, 0, source.length());
33 private SpannableString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
37 public static SpannableString valueOf(CharSequence source) { argument
38 if (source instanceof SpannableString) {
39 return (SpannableString) source;
41 return new SpannableString(source);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DRequestArcInitiationAction.java32 RequestArcInitiationAction(HdmiCecLocalDevice source, int avrAddress) { argument
33 super(source, avrAddress);
H A DRequestArcTerminationAction.java32 RequestArcTerminationAction(HdmiCecLocalDevice source, int avrAddress) { argument
33 super(source, avrAddress);
H A DRequestArcAction.java37 * @param source {@link HdmiCecLocalDevice} instance
42 RequestArcAction(HdmiCecLocalDevice source, int avrAddress) { argument
43 super(source);
H A DSystemAudioActionFromAvr.java31 * @param source {@link HdmiCecLocalDevice} instance
37 SystemAudioActionFromAvr(HdmiCecLocalDevice source, int avrAddress, argument
39 super(source, avrAddress, targetStatus, callback);
/frameworks/base/tools/aapt/tests/
H A DMockCacheUpdater.h29 // Process an image from source out to dest
30 virtual void processImage(String8 source, String8 dest) { argument
/frameworks/av/media/libstagefright/
H A DMediaExtractor.cpp54 const sp<DataSource> &source, const char *mime) {
60 if (!source->sniff(&tmp, &confidence, &meta)) {
84 return new DRMExtractor(source, originalMime);
96 ret = new MPEG4Extractor(source);
98 ret = new MP3Extractor(source, meta);
101 ret = new AMRExtractor(source);
103 ret = new FLACExtractor(source);
105 ret = new WAVExtractor(source);
107 ret = new OggExtractor(source);
109 ret = new MatroskaExtractor(source);
53 Create( const sp<DataSource> &source, const char *mime) argument
[all...]
H A DThrottledSource.cpp25 const sp<DataSource> &source,
27 : mSource(source),
24 ThrottledSource( const sp<DataSource> &source, int32_t bandwidthLimitBytesPerSecond) argument
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG2TSAssembler.cpp49 const sp<ARTPSource> &source) {
50 return addPacket(source);
54 const sp<ARTPSource> &source) {
55 List<sp<ABuffer> > *queue = source->queue();
48 assembleMore( const sp<ARTPSource> &source) argument
53 addPacket( const sp<ARTPSource> &source) argument
/frameworks/base/core/java/android/content/
H A DContentProviderResult.java44 public ContentProviderResult(Parcel source) { argument
45 int type = source.readInt();
47 count = source.readInt();
51 uri = Uri.CREATOR.createFromParcel(source);
77 public ContentProviderResult createFromParcel(Parcel source) {
78 return new ContentProviderResult(source);
/frameworks/base/core/java/android/content/pm/
H A DPackageCleanItem.java71 public PackageCleanItem createFromParcel(Parcel source) {
72 return new PackageCleanItem(source);
80 private PackageCleanItem(Parcel source) { argument
81 userId = source.readInt();
82 packageName = source.readString();
83 andCode = source.readInt() != 0;
H A DVerifierInfo.java57 private VerifierInfo(Parcel source) { argument
58 packageName = source.readString();
59 publicKey = (PublicKey) source.readSerializable();
75 public VerifierInfo createFromParcel(Parcel source) {
76 return new VerifierInfo(source);
/frameworks/base/core/java/android/os/
H A DParcelable.java102 * @param source The Parcel to read the object's data from.
105 public T createFromParcel(Parcel source); argument
128 * @param source The Parcel to read the object's data from.
132 public T createFromParcel(Parcel source, ClassLoader loader); argument
/frameworks/base/core/java/android/text/method/
H A DTransformationMethod.java30 * Returns a CharSequence that is a transformation of the source text --
33 * the source text, and that if the source text is Editable, the returned
36 public CharSequence getTransformation(CharSequence source, View view); argument
/frameworks/base/core/java/android/view/
H A DAbsSavedState.java53 * @param source
55 protected AbsSavedState(Parcel source) { argument
57 Parcelable superState = source.readParcelable(null);
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java140 public void publish(Logger source, String tag, Level level, String message) { argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
H A DBitmapSerializeUtils.java41 * @param source The source file descriptor.
43 public static void readBitmapPixels(Bitmap bitmap, ParcelFileDescriptor source) { argument
44 nativeReadBitmapPixels(bitmap, source.getFd());
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DConfirmDialog.java90 public Drawable getDrawable(String source) { argument

Completed in 1708 milliseconds

1234567891011>>