Searched refs:from (Results 26 - 50 of 182) sorted by relevance

12345678

/frameworks/av/services/audioflinger/
H A DRecordTracks.h19 #error This header file should only be included from AudioFlinger.h
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DResourceLoadingTest.java47 mInflater = TransitionInflater.from(this);
53 TransitionInflater inflater = TransitionInflater.from(this);
/frameworks/compile/mclinker/
H A Dmcld-device-build.mk4 # We move them from global build/core/combo/TARGET_linux-arm.mk
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace.pb.cpp1282 GLMessage_DataType::GLMessage_DataType(const GLMessage_DataType& from) argument
1285 MergeFrom(from);
1628 const ::google::protobuf::MessageLite& from) {
1629 MergeFrom(*::google::protobuf::down_cast<const GLMessage_DataType*>(&from));
1632 void GLMessage_DataType::MergeFrom(const GLMessage_DataType& from) { argument
1633 GOOGLE_CHECK_NE(&from, this);
1634 intvalue_.MergeFrom(from.intvalue_);
1635 floatvalue_.MergeFrom(from.floatvalue_);
1636 charvalue_.MergeFrom(from.charvalue_);
1637 rawbytes_.MergeFrom(from
1627 CheckTypeAndMergeFrom( const ::google::protobuf::MessageLite& from) argument
1650 CopyFrom(const GLMessage_DataType& from) argument
1698 GLMessage_FrameBuffer(const GLMessage_FrameBuffer& from) argument
1863 CheckTypeAndMergeFrom( const ::google::protobuf::MessageLite& from) argument
1868 MergeFrom(const GLMessage_FrameBuffer& from) argument
1881 CopyFrom(const GLMessage_FrameBuffer& from) argument
1931 GLMessage(const GLMessage& from) argument
2254 CheckTypeAndMergeFrom( const ::google::protobuf::MessageLite& from) argument
2259 MergeFrom(const GLMessage& from) argument
2287 CopyFrom(const GLMessage& from) argument
[all...]
/frameworks/native/libs/input/
H A DInput.cpp38 void InputEvent::initialize(const InputEvent& from) { argument
39 mDeviceId = from.mDeviceId;
40 mSource = from.mSource;
145 void KeyEvent::initialize(const KeyEvent& from) { argument
146 InputEvent::initialize(from);
147 mAction = from.mAction;
148 mFlags = from.mFlags;
149 mKeyCode = from.mKeyCode;
150 mScanCode = from.mScanCode;
151 mMetaState = from
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp61 void ARTPAssembler::CopyTimes(const sp<ABuffer> &to, const sp<ABuffer> &from) { argument
63 CHECK(from->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
68 to->setInt32Data(from->int32Data());
/frameworks/base/core/java/android/widget/
H A DSimpleCursorTreeAdapter.java25 * An easy adapter to map columns from a cursor to TextViews or ImageViews
48 * The View IDs that will display a group's data fetched from the
59 * The View IDs that will display a child's data fetched from the
84 * @param groupTo The group views (from the group layouts) that should
85 * display column in the "from" parameter. These should all be
87 * given the values of the first N columns in the from parameter.
97 * @param childTo The child views (from the child layouts) that should
98 * display column in the "from" parameter. These should all be
100 * given the values of the first N columns in the from parameter.
125 * @param groupTo The group views (from th
212 bindView(View view, Context context, Cursor cursor, int[] from, int[] to) argument
[all...]
H A DSimpleAdapter.java33 * defines the views used to display the row, and a mapping from keys in the Map to specific
70 * "from"
73 * @param from A list of column names that will be added to the Map associated with each
75 * @param to The views that should display column in the "from" parameter. These should all be
77 * in the from parameter.
80 int resource, String[] from, int[] to) {
83 mFrom = from;
153 final String[] from = mFrom;
160 final Object data = dataSet.get(from[i]);
235 * @param value the value retrieved from th
79 SimpleAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to) argument
[all...]
H A DRelativeLayout.java834 // This is the default case. For RTL we start from the right and for LTR we start
835 // from the left. This will give LEFT/TOP for LTR and RIGHT/TOP for RTL.
1179 @ViewDebug.IntToString(from = ABOVE, to = "above"),
1180 @ViewDebug.IntToString(from = ALIGN_BASELINE, to = "alignBaseline"),
1181 @ViewDebug.IntToString(from = ALIGN_BOTTOM, to = "alignBottom"),
1182 @ViewDebug.IntToString(from = ALIGN_LEFT, to = "alignLeft"),
1183 @ViewDebug.IntToString(from = ALIGN_PARENT_BOTTOM, to = "alignParentBottom"),
1184 @ViewDebug.IntToString(from = ALIGN_PARENT_LEFT, to = "alignParentLeft"),
1185 @ViewDebug.IntToString(from = ALIGN_PARENT_RIGHT, to = "alignParentRight"),
1186 @ViewDebug.IntToString(from
[all...]
H A DSimpleExpandableListAdapter.java32 * that defines the views used to display a group, and a mapping from keys in
64 * @param groupFrom A list of keys that will be fetched from the Map
80 * @param childFrom A list of keys that will be fetched from the Map
109 * @param groupFrom A list of keys that will be fetched from the Map
128 * @param childFrom A list of keys that will be fetched from the Map
158 * @param groupFrom A list of keys that will be fetched from the Map
177 * @param childFrom A list of keys that will be fetched from the Map
243 private void bindView(View view, Map<String, ?> data, String[] from, int[] to) { argument
249 v.setText((String)data.get(from[i]));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBarTransitions.java143 private void startColorAnimation(int from, int to) { argument
144 if (DEBUG) Log.d(mTag, String.format("startColorAnimation %08x -> %08x", from, to));
145 mColorDrawableAnimator = ValueAnimator.ofObject(new ArgbEvaluator(), from, to);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java77 // Pops from the top of the stack as current configuration state (matrix,
83 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
87 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
109 // from * (1 - ratio) + to * ratio
111 public abstract void drawMixed(BasicTexture from, int toColor, argument
115 // rectangle. The actual color used is from * (1 - ratio) + to * ratio.
118 public abstract void drawMixed(BasicTexture from, int toColor, argument
121 // Unloads the specified texture from the canvas. The resource allocated
123 // to the unloaded state. This function should be called only from
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DSendReq.java54 * @param from the from value
61 EncodedStringValue from,
67 setFrom(from);
60 SendReq(byte[] contentType, EncodedStringValue from, int mmsVersion, byte[] transactionId) argument
/frameworks/webview/chromium/
H A Dchromium.mk15 # Warning: this is actually a product definition, to be inherited from
/frameworks/av/include/media/stagefright/
H A DColorConverter.h31 ColorConverter(OMX_COLOR_FORMATTYPE from, OMX_COLOR_FORMATTYPE to);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DStackActivity.java48 item = LayoutInflater.from(getContext()).inflate(
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h41 std::string from; member in struct:mcld::SectionMap::NamePair
61 // add a mapping from input sub-string to output name.
/frameworks/ex/chips/src/com/android/ex/chips/
H A DSingleRecipientArrayAdapter.java37 mLayoutInflater = LayoutInflater.from(context);
/frameworks/opt/colorpicker/src/com/android/colorpicker/
H A DColorPickerSwatch.java55 LayoutInflater.from(context).inflate(R.layout.color_picker_swatch, this);
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp282 const Item *from = &mItems[i];
285 to->mName = from->mName;
286 to->mType = from->mType;
288 switch (from->mType) {
292 new AString(*from->u.stringValue);
299 to->u.refValue = from->u.refValue;
307 static_cast<AMessage *>(from->u.refValue)->dup();
316 to->u = from->u;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DBaseMenuPresenter.java55 mSystemInflater = LayoutInflater.from(context);
63 mInflater = LayoutInflater.from(mContext);
134 * @param parent Parent to filter from
160 * with data from the item parameter.
/frameworks/base/data/keyboards/
H A Dkeyboards.mk15 # Warning: this is actually a product definition, to be inherited from
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardGlowStripView.java110 float from = mLeftToRight ? 0f : 1f;
112 mAnimator = ValueAnimator.ofFloat(from, to);
/frameworks/support/v7/appcompat/
H A DAndroid.mk18 # The R class is automatically excluded from the generated library.
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DBaseMenuPresenter.java58 mSystemInflater = LayoutInflater.from(context);
66 mInflater = LayoutInflater.from(mContext);
140 * @param parent Parent to filter from
165 * passed as convertView if present. The returned view will be populated with data from the item

Completed in 838 milliseconds

12345678