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

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
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 )
18 byte source
21 // 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
/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,
82 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/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/cmds/stagefright/
H A Daudioloop.cpp30 sp<MediaSource> source = new SineSource(kSampleRate, kNumChannels);
32 sp<MediaSource> source = new AudioSource( local
49 if (source->getFormat()->findInt32(kKeyMaxInputSize, &maxInputSize)) {
56 source);
/frameworks/av/media/libstagefright/
H A DMediaExtractor.cpp55 const sp<DataSource> &source, const char *mime) {
61 if (!source->sniff(&tmp, &confidence, &meta)) {
85 return new DRMExtractor(source, originalMime);
99 ret = new FragmentedMP4Extractor(source);
101 ret = new MPEG4Extractor(source);
104 ret = new MP3Extractor(source, meta);
107 ret = new AMRExtractor(source);
109 ret = new FLACExtractor(source);
111 ret = new WAVExtractor(source);
113 ret = new OggExtractor(source);
54 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/base/core/java/android/content/
H A DContentProviderResult.java42 public ContentProviderResult(Parcel source) { argument
43 int type = source.readInt();
45 count = source.readInt();
49 uri = Uri.CREATOR.createFromParcel(source);
69 public ContentProviderResult createFromParcel(Parcel source) {
70 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 DPackageInfoLite.java80 public PackageInfoLite createFromParcel(Parcel source) {
81 return new PackageInfoLite(source);
89 private PackageInfoLite(Parcel source) { argument
90 packageName = source.readString();
91 versionCode = source.readInt();
92 recommendedInstallLocation = source.readInt();
93 installLocation = source.readInt();
95 final int verifiersLength = source.readInt();
100 source.readTypedArray(verifiers, VerifierInfo.CREATOR);
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.java139 public void publish(Logger source, String tag, Level level, String message) { argument
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java32 private final ClassPathPackageInfoSource source; field in class:ClassPathPackageInfo
37 ClassPathPackageInfo(ClassPathPackageInfoSource source, String packageName, argument
39 this.source = source;
48 info.add(source.getPackageInfo(name));
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestArgs.java32 public TestArgs(Parcel source) { argument
33 maxTime = source.readLong();
34 maxOps = source.readLong();
35 combOp = source.readInt();
36 fgOp = source.readInt();
37 bgOp = source.readInt();
/frameworks/base/tools/aapt/
H A DCacheUpdater.h21 * mirror cache where the source tree is duplicated and filled with processed
36 // Process an image from source out to dest
37 virtual void processImage(String8 source, String8 dest) = 0;
95 // Process an image from source out to dest
96 virtual void processImage(String8 source, String8 dest) argument
101 preProcessImageToCache(bundle, source, dest);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pInfo.java58 public WifiP2pInfo(WifiP2pInfo source) { argument
59 if (source != null) {
60 groupFormed = source.groupFormed;
61 isGroupOwner = source.isGroupOwner;
62 groupOwnerAddress = source.groupOwnerAddress;
/frameworks/ex/common/java/com/android/common/
H A DRfc822InputFilter.java33 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, argument
37 if (end-start != 1 || source.charAt(start) != ' ') {
59 if (source instanceof Spanned) {
61 sb.append(source);
/frameworks/ex/variablespeed/jni/
H A Dmacros.h56 inline Dest bit_cast(const Source& source) { argument
62 memcpy(&dest, &source, sizeof(dest));
/frameworks/support/v4/ics/android/support/v4/view/
H A DPagerTitleStripIcs.java41 public CharSequence getTransformation(CharSequence source, View view) { argument
42 source = super.getTransformation(source, view);
43 return source != null ? source.toString().toUpperCase(mLocale) : null;

Completed in 9757 milliseconds

1234567891011>>