Searched defs:source (Results 1 - 25 of 617) 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 DglDebugMessageCallback.java4 void onMessage(int source, int type, int id, int severity, String message); 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);
/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/support/v4/kitkat/android/support/v4/view/
H A DViewParentCompatKitKat.java24 View source, int changeType) {
25 parent.notifySubtreeAccessibilityStateChanged(child, source, changeType);
23 notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, View source, int changeType) argument
/frameworks/av/media/libmedia/
H A DAudioPolicy.cpp28 audio_source_t source,
36 mValue.mSource = source;
27 AudioMixMatchCriterion(audio_usage_t usage, audio_source_t source, uint32_t rule) argument
H A DIMediaExtractorService.cpp41 virtual sp<IMediaExtractor> makeExtractor(const sp<IDataSource> &source, const char *mime) { argument
44 data.writeStrongBinder(IInterface::asBinder(source));
71 ALOGE("Error reading source from parcel");
74 sp<IDataSource> source = interface_cast<IDataSource>(b); local
76 sp<IMediaExtractor> ex = makeExtractor(source, mime);
/frameworks/av/media/libstagefright/
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/include/
H A DDataConverter.h34 status_t convert(const sp<ABuffer> &source, sp<ABuffer> &target);
38 virtual status_t safeConvert(const sp<ABuffer> &source, sp<ABuffer> &target);
41 // SampleConverterBase uses a ratio to calculate the source and target sizes
42 // based on source and target sample sizes.
48 virtual status_t safeConvert(const sp<ABuffer> &source, sp<ABuffer> &target) = 0;
61 static AudioConverter *Create(AudioEncoding source, AudioEncoding target);
68 AudioEncoding source, size_t sourceSample,
71 mFrom(source),
67 AudioConverter( AudioEncoding source, size_t sourceSample, AudioEncoding target, size_t targetSample) 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.java43 public ContentProviderResult(Parcel source) { argument
44 int type = source.readInt();
46 count = source.readInt();
50 uri = Uri.CREATOR.createFromParcel(source);
76 public ContentProviderResult createFromParcel(Parcel source) {
77 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/hardware/camera2/params/
H A DVendorTagDescriptor.java32 private VendorTagDescriptor(Parcel source) { argument
38 public VendorTagDescriptor createFromParcel(Parcel source) {
40 VendorTagDescriptor vendorDescriptor = new VendorTagDescriptor(source);
/frameworks/base/core/java/android/security/net/config/
H A DCertificatesEntryRef.java28 public CertificatesEntryRef(CertificateSource source, boolean overridesPins) { argument
29 mSource = source;
/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 parcel to read from
55 protected AbsSavedState(Parcel source) { argument
56 this(source, null);
63 * @param source parcel to read from
66 protected AbsSavedState(Parcel source, ClassLoader loader) { argument
67 Parcelable superState = source.readParcelable(loader);

Completed in 3944 milliseconds

1234567891011>>