Searched refs:from (Results 201 - 225 of 595) sorted by relevance

1234567891011>>

/frameworks/opt/net/wifi/service/jni/
H A Djni_helper.h124 void setByteArrayRegion(jbyteArray array, int from, int to, const jbyte *bytes);
125 void setIntArrayRegion(jintArray array, int from, int to, const jint *ints);
126 void setLongArrayRegion(jlongArray array, int from, int to, const jlong *longs);
H A Djni_helper.cpp665 void JNIHelper::setByteArrayRegion(jbyteArray array, int from, int to, const jbyte *bytes) { argument
666 mEnv->SetByteArrayRegion(array, from, to, bytes);
669 void JNIHelper::setIntArrayRegion(jintArray array, int from, int to, const jint *ints) { argument
670 mEnv->SetIntArrayRegion(array, from, to, ints);
673 void JNIHelper::setLongArrayRegion(jlongArray array, int from, int to, const jlong *longs) { argument
674 mEnv->SetLongArrayRegion(array, from, to, longs);
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DListMenuPresenter.java72 mInflater = LayoutInflater.from(mContext);
89 mInflater = LayoutInflater.from(mContext);
93 mInflater = LayoutInflater.from(mContext);
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
H A DTestUtilsMatchers.java118 * from the view and up its ancestor chain matches the specified color.
250 public static Matcher<List<Float>> inRange(final float from, final float to) { argument
266 if ((curr < from) || (curr > to)) {
268 from + " and " + to;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptGroup.java36 * Inside a script group, outputs from one kernel can be passed to another kernel as inputs.
63 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) { argument
64 mFrom = from;
69 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) { argument
70 mFrom = from;
471 * Allocation provided from outside of the ScriptGroup.
607 * must come from different Script objects. Additionally, all kernels
635 // do a DFS from original node, looking for original node
764 * @param from The source for the connection.
769 public Builder addConnection(Type t, Script.KernelID from, Scrip argument
803 addConnection(Type t, Script.KernelID from, Script.KernelID to) argument
[all...]
/frameworks/av/media/libstagefright/
H A DNuCachedSource2.cpp52 void copy(size_t from, void *data, size_t size);
139 void PageCache::copy(size_t from, void *data, size_t size) { argument
140 ALOGV("copy from %zu size %zu", from, size);
146 CHECK_LE(from + size, mTotalSize);
150 while (from >= offset + (*it)->mSize) {
155 size_t delta = from - offset;
274 // explicitly disconnect from the source, to allow any
524 // If the request can be completely satisfied from the cache, do so.
711 ALOGE("Failed to parse cache parameters from '
[all...]
/frameworks/base/libs/hwui/utils/
H A DVectorDrawableUtils.cpp89 const PathData& from, const PathData& to, float fraction) {
90 outData->points.resize(from.points.size());
91 outData->verbSizes = from.verbSizes;
92 outData->verbs = from.verbs;
94 for (size_t i = 0; i < from.points.size(); i++) {
95 outData->points[i] = from.points[i] * (1 - fraction) + to.points[i] * fraction;
123 // Taken from equations at: http://spaceroots.org/documents/ellipse/node8.html
181 /* Convert rotation angle from degrees to radians */
330 case 'l': // lineto - Draw a line from the current point (relative)
335 case 'L': // lineto - Draw a line from th
88 interpolatePaths(PathData* outData, const PathData& from, const PathData& to, float fraction) argument
[all...]
/frameworks/rs/api/
H A Drs_vector_math.spec126 The precision is what would be expected from doing the computation using 16 bit floating
144 The precision is what would be expected from doing the computation using 16 bit floating
165 The precision is what would be expected from doing the computation using 16 bit floating
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DPalette.java40 * A helper class to extract prominent colors from an image.
42 * A number of colors with different profiles are extracted from the image:
51 * These can be retrieved from the appropriate getter method.
63 * Palette p = Palette.from(bitmap).generate();
66 * Palette.from(bitmap).generate(new PaletteAsyncListener() {
99 public static Builder from(Bitmap bitmap) { method in class:Palette
104 * Generate a {@link Palette} from the pre-generated list of {@link Palette.Swatch} swatches.
105 * This is useful for testing, or if you want to resurrect a {@link Palette} instance from a
108 public static Palette from(List<Swatch> swatches) { method in class:Palette
117 return from(bitma
[all...]
/frameworks/base/core/java/android/view/
H A DGhostView.java154 private static void copySize(View from, View to) { argument
157 to.setRight(from.getWidth());
158 to.setBottom(from.getHeight());
183 // Remove all GhostViews from the middle
271 * Returns true if viewParents is from a View that is on top of the comparedWith's view.
272 * The ArrayLists contain the ancestors of views in order from top most grandparent, to
H A DContextThemeWrapper.java167 mInflater = LayoutInflater.from(getBaseContext()).cloneInContext(this);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
H A DInformationElementUtilTest.java62 * @return byte[] Byte array resulting from concatenating the arrays passed to the function
402 trafficIndicationMap.from(ie);
421 trafficIndicationMap.from(ie);
437 trafficIndicationMap.from(ie);
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp456 const Item *from = &mItems[i]; local
459 to->setName(from->mName, from->mNameLength);
460 to->mType = from->mType;
462 switch (from->mType) {
466 new AString(*from->u.stringValue);
473 to->u.refValue = from->u.refValue;
481 static_cast<AMessage *>(from->u.refValue)->dup();
490 to->u = from->u;
684 ALOGE("Failed reading string value from
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.h123 const char *from, unsigned long *x);
/frameworks/av/services/audioflinger/
H A DRecordTracks.h19 #error This header file should only be included from AudioFlinger.h
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java374 public void setProgress(@FloatRange(from=0.0, to=1.0) float progress) {
481 public @IntRange(from = 0) int getCopies() {
790 public void setCopies(@IntRange(from = 1) int copies) {
818 public void setProgress(@FloatRange(from=0.0, to=1.0) float progress) {
/frameworks/base/core/java/android/transition/
H A DScene.java88 * children from the sceneRoot container and will inflate and add
109 * children from the sceneRoot container and add the layout
175 LayoutInflater.from(mContext).inflate(mLayoutId, mSceneRoot);
260 * This is called by TransitionManager to determine whether it is safe for views from
261 * this scene to be removed from their parents when the scene is exited, which is
262 * used by {@link Fade} to fade these views out (the views must be removed from
/frameworks/base/core/tests/coretests/src/android/view/
H A DInflateTest.java40 mInflater = LayoutInflater.from(mContext);
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
H A DDocumentHolderTest.java42 LayoutInflater inflater = LayoutInflater.from(context);
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DNekoDialog.java76 return new Holder(LayoutInflater.from(parent.getContext())
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileView.java87 View view = LayoutInflater.from(mContext).inflate(R.layout.qs_tile_label, null);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DUserDetailView.java44 return (UserDetailView) LayoutInflater.from(context).inflate(
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DEmergencyCryptkeeperText.java73 boolean hasMobile = ConnectivityManager.from(mContext)
107 // We don't have a SubscriptionInfo to get the emergency calls only from.
108 // Grab it from the old sticky broadcast if possible instead. We can use it
/frameworks/base/services/core/java/com/android/server/am/
H A DUserSwitchingDialog.java66 View view = LayoutInflater.from(getContext()).inflate(R.layout.user_switching_dialog, null);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextGammaActivity.java76 final LayoutInflater inflater = LayoutInflater.from(c);

Completed in 321 milliseconds

1234567891011>>