Searched defs:in (Results 1 - 25 of 213) sorted by last modified time

123456789

/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdIntrinsicBlend.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
102 uchar4 *in = (uchar4 *)p->in; local
106 in += xstart;
116 for (;x1 < x2; x1++, out++, in++) {
117 *out = *in;
127 rsdIntrinsicBlendSrcOver_K(out, in, len);
130 in += len << 3;
133 for (;x1 < x2; x1++, out++, in
[all...]
H A DrsdIntrinsicColorMatrix.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
96 uchar4 *in = (uchar4 *)p->in; local
100 in += xstart;
109 rsdIntrinsicColorMatrixDot_K(out, in, cp->ip, len);
111 rsdIntrinsicColorMatrix3x3_K(out, in, cp->ip, len);
114 rsdIntrinsicColorMatrix4x4_K(out, in, cp->ip, len);
118 in += len << 2;
123 One(p, out++, in
[all...]
H A DrsdIntrinsicLUT.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
43 uchar4 *in = (uchar4 *)p->in; local
47 in += xstart;
57 uchar4 p = *in;
60 in++;
H A DrsdRuntimeStubs.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
141 Allocation *in,
144 rsrForEach(rsc, sc, target, in, out, NULL, 0, NULL);
148 Allocation *in,
152 rsrForEach(rsc, sc, target, in, out, usr, 0, NULL);
156 Allocation *in,
161 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
165 Allocation *in,
170 rsrForEach(rsc, sc, target, in, ou
140 SC_ForEach_SAA(Script *target, Allocation *in, Allocation *out) argument
147 SC_ForEach_SAAU(Script *target, Allocation *in, Allocation *out, const void *usr) argument
155 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
164 SC_ForEach_SAAUL(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen) argument
173 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsScriptC_Lib.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
92 // have to apply locking for proper behavior in RenderScript.
158 Allocation *in, Allocation *out,
161 target->runForEach(rsc, /* root slot */ 0, in, out, usr, usrBytes, call);
156 rsrForEach(Context *rsc, Script *sc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
H A Drs_hal.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 const void *in; member in struct:android::renderscript::__anon1583
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
89 private SavedState(Parcel in) { argument
90 super(in);
91 curTab = in.readString();
109 public SavedState createFromParcel(Parcel in) {
110 return new SavedState(in);
121 // because the simple Context construct can result in a broken object!
255 // This fragment was restored in the active state,
/frameworks/support/v4/honeycomb_mr2/android/support/v4/os/
H A DParcelableCompatCreatorCallbacks.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 * @param in The Parcel to read the object's data from.
34 * @param loader The ClassLoader that this object is being created in.
37 public T createFromParcel(Parcel in, ClassLoader loader); argument
H A DParcelableCompatHoneycombMR2.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 public T createFromParcel(Parcel in) { argument
36 return mCallbacks.createFromParcel(in, null);
39 public T createFromParcel(Parcel in, ClassLoader loader) { argument
40 return mCallbacks.createFromParcel(in, loader);
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
83 public BackStackState(Parcel in) { argument
84 mOps = in.createIntArray();
85 mTransition = in.readInt();
86 mTransitionStyle = in.readInt();
87 mName = in.readString();
88 mIndex = in.readInt();
89 mBreadCrumbTitleRes = in.readInt();
90 mBreadCrumbTitleText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
[all...]
H A DFragment.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
75 public FragmentState(Parcel in) { argument
76 mClassName = in.readString();
77 mIndex = in.readInt();
78 mFromLayout = in.readInt() != 0;
79 mFragmentId = in.readInt();
80 mContainerId = in.readInt();
81 mTag = in.readString();
82 mRetainInstance = in
305 SavedState(Parcel in, ClassLoader loader) argument
[all...]
H A DFragmentManager.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
131 * in the state, and if changes are made after the state is saved then they
136 /** @hide -- remove once prebuilts are in. */
158 * from XML or as the container ID when added in a transaction. This first
168 * from XML or as supplied when added in a transaction. This first
250 * Return the number of entries currently in the back stack.
255 * Return the BackStackEntry at index <var>index</var> in the back stack;
272 * Put a reference to a fragment in a Bundle. This Bundle can be
277 * @param bundle The bundle in whic
346 FragmentManagerState(Parcel in) argument
[all...]
H A DFragmentTabHost.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 * its tab content. When placing this in a view hierarchy, after inflating
40 * <p>Here is a simple example of using a FragmentTabHost in an Activity:
97 private SavedState(Parcel in) { argument
98 super(in);
99 curTab = in.readString();
117 public SavedState createFromParcel(Parcel in) {
118 return new SavedState(in);
129 // because the simple Context construct can result in
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
62 * development. The API will likely change in later updates of
66 * <p>ViewPager is most often used in conjunction with {@link android.app.Fragment},
77 * <p>Here is a more complicated example of ViewPager, using it in conjuction
79 * ViewPager in the API 4+ Support Demos and API 13+ Support Demos sample code.
219 * Indicates that the pager is in an idle, settled state. The current page
220 * is fully in view and no animation is in progress.
230 * Indicates that the pager is in th
1187 SavedState(Parcel in, ClassLoader loader) argument
[all...]
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 * Cache implementation that caches files directly onto the hard disk in the specified
47 /** Total amount of space currently used by the cache in bytes. */
53 /** The maximum size of the cache in bytes. */
56 /** Default maximum disk usage in bytes. */
68 * @param maxCacheSizeInBytes The maximum size of the cache in bytes.
134 * Initializes the DiskBasedCache by scanning for all files currently in the
165 * Invalidates an entry in the cache.
307 private static byte[] streamToBytes(InputStream in, in argument
420 CountingInputStream(InputStream in) argument
[all...]
/frameworks/rs/driver/
H A DrsdIntrinsicBlend.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
102 uchar4 *in = (uchar4 *)p->in; local
106 in += xstart;
116 for (;x1 < x2; x1++, out++, in++) {
117 *out = *in;
127 rsdIntrinsicBlendSrcOver_K(out, in, len);
130 in += len << 3;
133 for (;x1 < x2; x1++, out++, in
[all...]
H A DrsdIntrinsicColorMatrix.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
96 uchar4 *in = (uchar4 *)p->in; local
100 in += xstart;
109 rsdIntrinsicColorMatrixDot_K(out, in, cp->ip, len);
111 rsdIntrinsicColorMatrix3x3_K(out, in, cp->ip, len);
114 rsdIntrinsicColorMatrix4x4_K(out, in, cp->ip, len);
118 in += len << 2;
123 One(p, out++, in
[all...]
H A DrsdIntrinsicLUT.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
43 uchar4 *in = (uchar4 *)p->in; local
47 in += xstart;
57 uchar4 p = *in;
60 in++;
H A DrsdRuntimeStubs.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
430 Allocation *in,
433 rsrForEach(rsc, sc, target, in, out, NULL, 0, NULL);
437 Allocation *in,
441 rsrForEach(rsc, sc, target, in, out, usr, 0, NULL);
445 Allocation *in,
450 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
454 Allocation *in,
459 rsrForEach(rsc, sc, target, in, ou
429 SC_ForEach_SAA(Script *target, Allocation *in, Allocation *out) argument
436 SC_ForEach_SAAU(Script *target, Allocation *in, Allocation *out, const void *usr) argument
444 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
453 SC_ForEach_SAAUL(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen) argument
462 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument
[all...]
/frameworks/rs/
H A DrsScriptC_Lib.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
92 // have to apply locking for proper behavior in RenderScript.
158 Allocation *in, Allocation *out,
161 target->runForEach(rsc, /* root slot */ 0, in, out, usr, usrBytes, call);
156 rsrForEach(Context *rsc, Script *sc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
H A Drs_hal.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 const void *in; member in struct:android::renderscript::__anon1554
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V21.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
57 public CustomBufferedReader(Reader in) { argument
58 super(in);
78 * Read one line, but make this object store it in its queue.
113 * "Encoding" in vCard is different from "Charset". It is mainly used for
135 * Set for storing unkonwn TYPE attributes, which is not acceptable in vCard
136 * specification, but happens to be seen in real world vCard.
146 * Set for storing unkonwn VALUE attributes, which is not acceptable in
147 * vCard specification, but happens to be seen in rea
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatCmdMessage.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
98 public CatCmdMessage(Parcel in) { argument
99 mCmdDet = in.readParcelable(null);
100 mTextMsg = in.readParcelable(null);
101 mMenu = in.readParcelable(null);
102 mInput = in.readParcelable(null);
106 mBrowserSettings.url = in.readString();
107 mBrowserSettings.mode = LaunchBrowserMode.values()[in.readInt()];
110 mToneSettings = in
[all...]
H A DCommandDetails.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
50 public CommandDetails(Parcel in) { argument
51 compRequired = in.readInt() != 0;
52 commandNumber = in.readInt();
53 typeOfCommand = in.readInt();
54 commandQualifier = in.readInt();
66 public CommandDetails createFromParcel(Parcel in) {
67 return new CommandDetails(in);
H A DDuration.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
56 private Duration(Parcel in) { argument
57 timeInterval = in.readInt();
58 timeUnit = TimeUnit.values()[in.readInt()];
71 public Duration createFromParcel(Parcel in) {
72 return new Duration(in);

Completed in 693 milliseconds

123456789