Searched refs:source (Results 1 - 25 of 1101) sorted by relevance

1234567891011>>

/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 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);
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...]
/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/opt/net/ims/src/java/com/android/ims/internal/
H A DVideoPauseTracker.java65 * Tracks a request to pause the video for a source (see {@link #SOURCE_DATA_ENABLED},
70 * to pause via any source and we're not already paused.
72 * @param source The source of the pause request.
76 public boolean shouldPauseVideoFor(int source) { argument
79 mPauseRequests.add(source);
82 Log.i(this, "shouldPauseVideoFor: source=%s, pendingRequests=%s - should pause",
83 sourceToString(source), sourcesToString(mPauseRequests));
87 Log.i(this, "shouldPauseVideoFor: source=%s, pendingRequests=%s - already paused",
88 sourceToString(source), sourcesToStrin
107 shouldResumeVideoFor(int source) argument
146 wasVideoPausedFromSource(int source) argument
167 sourceToString(int source) argument
[all...]
/frameworks/base/telephony/java/com/android/ims/internal/uce/options/
H A DOptionsSipResponse.java138 public OptionsSipResponse createFromParcel(Parcel source) {
139 return new OptionsSipResponse(source);
148 private OptionsSipResponse(Parcel source) { argument
149 readFromParcel(source);
153 public void readFromParcel(Parcel source) { argument
154 mRequestId = source.readInt();
155 mSipResponseCode = source.readInt();
156 mReasonPhrase = source.readString();
157 mCmdId = source.readParcelable(OptionsCmdId.class.getClassLoader());
158 mRetryAfter = source
[all...]
H A DOptionsCmdId.java81 public OptionsCmdId createFromParcel(Parcel source) {
82 return new OptionsCmdId(source);
91 private OptionsCmdId(Parcel source) { argument
92 readFromParcel(source);
96 public void readFromParcel(Parcel source) { argument
97 mCmdId = source.readInt();
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DPresSipResponse.java137 public PresSipResponse createFromParcel(Parcel source) {
138 return new PresSipResponse(source);
147 private PresSipResponse(Parcel source) { argument
148 readFromParcel(source);
152 public void readFromParcel(Parcel source) { argument
153 mRequestId = source.readInt();
154 mSipResponseCode = source.readInt();
155 mReasonPhrase = source.readString();
156 mCmdId = source.readParcelable(PresCmdId.class.getClassLoader());
157 mRetryAfter = source
[all...]
H A DPresRlmiInfo.java206 public PresRlmiInfo createFromParcel(Parcel source) {
207 return new PresRlmiInfo(source);
216 private PresRlmiInfo(Parcel source) { argument
217 readFromParcel(source);
221 public void readFromParcel(Parcel source) { argument
222 mUri = source.readString();
223 mVersion = source.readInt();
224 mFullState = (source.readInt() == 0) ? false : true;
225 mListName = source.readString();
226 mRequestId = source
[all...]
H A DPresCmdId.java87 public PresCmdId createFromParcel(Parcel source) {
89 return new PresCmdId(source);
99 private PresCmdId(Parcel source) { argument
100 readFromParcel(source);
104 public void readFromParcel(Parcel source) { argument
105 mCmdId = source.readInt();
H A DPresPublishTriggerType.java93 public PresPublishTriggerType createFromParcel(Parcel source) {
95 return new PresPublishTriggerType(source);
105 private PresPublishTriggerType(Parcel source) { argument
106 readFromParcel(source);
110 public void readFromParcel(Parcel source) { argument
111 mPublishTriggerType = source.readInt();
H A DPresSubscriptionState.java57 public PresSubscriptionState createFromParcel(Parcel source) {
58 return new PresSubscriptionState(source);
67 private PresSubscriptionState(Parcel source) { argument
68 readFromParcel(source);
72 public void readFromParcel(Parcel source) { argument
73 mPresSubscriptionState = source.readInt();
H A DPresCmdStatus.java122 public PresCmdStatus createFromParcel(Parcel source) {
124 return new PresCmdStatus(source);
134 private PresCmdStatus(Parcel source) { argument
135 readFromParcel(source);
139 public void readFromParcel(Parcel source) { argument
140 mUserData = source.readInt();
141 mRequestId = source.readInt();
142 mCmdId = source.readParcelable(PresCmdId.class.getClassLoader());
143 mStatus = source.readParcelable(StatusCode.class.getClassLoader());
H A DPresServiceInfo.java131 public PresServiceInfo createFromParcel(Parcel source) {
132 return new PresServiceInfo(source);
141 private PresServiceInfo(Parcel source) { argument
142 readFromParcel(source);
146 public void readFromParcel(Parcel source) { argument
147 mServiceID = source.readString();
148 mServiceDesc = source.readString();
149 mServiceVer = source.readString();
150 mMediaCap = source.readInt();
/frameworks/base/core/java/android/content/pm/
H A DPackageInfoLite.java101 public PackageInfoLite createFromParcel(Parcel source) {
102 return new PackageInfoLite(source);
110 private PackageInfoLite(Parcel source) { argument
111 packageName = source.readString();
112 splitNames = source.createStringArray();
113 versionCode = source.readInt();
114 baseRevisionCode = source.readInt();
115 splitRevisionCodes = source.createIntArray();
116 recommendedInstallLocation = source.readInt();
117 installLocation = source
[all...]
H A DPackageInfo.java339 public PackageInfo createFromParcel(Parcel source) {
340 return new PackageInfo(source);
349 private PackageInfo(Parcel source) { argument
350 packageName = source.readString();
351 splitNames = source.createStringArray();
352 versionCode = source.readInt();
353 versionName = source.readString();
354 baseRevisionCode = source.readInt();
355 splitRevisionCodes = source.createIntArray();
356 sharedUserId = source
[all...]
/frameworks/base/telephony/java/com/android/ims/internal/uce/common/
H A DStatusCode.java107 public StatusCode createFromParcel(Parcel source) {
109 return new StatusCode(source);
119 private StatusCode(Parcel source) { argument
120 readFromParcel(source);
124 public void readFromParcel(Parcel source) { argument
125 mStatusCode = source.readInt();
/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/aapt2/java/
H A DProguardRules.h34 inline void AddClass(const Source& source, const std::string& class_name) { argument
35 keep_set_[class_name].insert(source);
38 inline void AddMethod(const Source& source, const std::string& method_name) { argument
39 keep_method_set_[method_name].insert(source);
49 bool CollectProguardRulesForManifest(const Source& source,
52 bool CollectProguardRules(const Source& source, xml::XmlResource* res,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DAndroid.mk8 ./source/h264bsd_transform.c \
9 ./source/h264bsd_util.c \
10 ./source/h264bsd_byte_stream.c \
11 ./source/h264bsd_seq_param_set.c \
12 ./source/h264bsd_pic_param_set.c \
13 ./source/h264bsd_slice_header.c \
14 ./source/h264bsd_slice_data.c \
15 ./source/h264bsd_macroblock_layer.c \
16 ./source/h264bsd_stream.c \
17 ./source/h264bsd_vl
[all...]
/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/base/core/java/android/app/
H A DWaitResult.java57 public WaitResult createFromParcel(Parcel source) {
58 return new WaitResult(source);
67 private WaitResult(Parcel source) { argument
68 result = source.readInt();
69 timeout = source.readInt() != 0;
70 who = ComponentName.readFromParcel(source);
71 thisTime = source.readLong();
72 totalTime = source.readLong();

Completed in 395 milliseconds

1234567891011>>