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

1234567

/frameworks/native/include/utils/
H A DVectorImpl.h53 /*! must be called from subclasses destructor */
103 virtual void do_copy(void* dest, const void* from, size_t num) const = 0;
105 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0;
106 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0;
124 inline void _do_copy(void* dest, const void* from, size_t num) const;
126 inline void _do_move_forward(void* dest, const void* from, size_t num) const;
127 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
H A DVector.h135 //! insert one or several items initialized from a prototype item
197 virtual void do_copy(void* dest, const void* from, size_t num) const;
199 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
200 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
208 // No user serviceable parts from here...
392 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { argument
393 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
402 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { argument
403 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
407 void Vector<TYPE>::do_move_backward(void* dest, const void* from, size_ argument
[all...]
/frameworks/native/libs/utils/
H A DVectorImpl.cpp386 const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize;
388 _do_copy(dest, from, mCount-where);
397 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize;
399 _do_move_forward(to, from, mCount - where);
438 const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize;
440 _do_copy(dest, from, new_size - where);
451 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize;
452 _do_move_backward(to, from, new_size - where);
476 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const
479 do_copy(dest, from, nu
[all...]
/frameworks/base/libs/androidfw/
H A DInput.cpp42 void InputEvent::initialize(const InputEvent& from) { argument
43 mDeviceId = from.mDeviceId;
44 mSource = from.mSource;
143 void KeyEvent::initialize(const KeyEvent& from) { argument
144 InputEvent::initialize(from);
145 mAction = from.mAction;
146 mFlags = from.mFlags;
147 mKeyCode = from.mKeyCode;
148 mScanCode = from.mScanCode;
149 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.java750 // This is the default case. For RTL we start from the right and for LTR we start
751 // from the left. This will give LEFT/TOP for LTR and RIGHT/TOP for RTL.
1109 @ViewDebug.IntToString(from = ABOVE, to = "above"),
1110 @ViewDebug.IntToString(from = ALIGN_BASELINE, to = "alignBaseline"),
1111 @ViewDebug.IntToString(from = ALIGN_BOTTOM, to = "alignBottom"),
1112 @ViewDebug.IntToString(from = ALIGN_LEFT, to = "alignLeft"),
1113 @ViewDebug.IntToString(from = ALIGN_PARENT_BOTTOM, to = "alignParentBottom"),
1114 @ViewDebug.IntToString(from = ALIGN_PARENT_LEFT, to = "alignParentLeft"),
1115 @ViewDebug.IntToString(from = ALIGN_PARENT_RIGHT, to = "alignParentRight"),
1116 @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/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/
H A DAndroid.mk35 # behavior from the bionic Android.mk file
/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/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/LD/
H A DSectionMap.h49 // add a mapping from input substr to output name and offset.
88 const char* from; member in struct:mcld::SectionMap::SectionNameMapping
/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java27 * the APIs from Scroller or OverScroller.</p>
43 public static ScrollerCompat from(Context context) { method in class:ScrollerCompat
75 * @return The new X offset as an absolute distance from the origin.
84 * @return The new Y offset as an absolute distance from the origin.
/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/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardGlowStripView.java112 float from = mLeftToRight ? 0f : 1f;
114 mAnimator = ValueAnimator.ofFloat(from, to);
/frameworks/native/opengl/libagl/
H A DAndroid.mk43 # behavior from the bionic Android.mk file
/frameworks/base/core/java/android/view/
H A DContextThemeWrapper.java26 * A ContextWrapper that allows you to modify the theme from what is in the
113 mInflater = LayoutInflater.from(mBase).cloneInContext(this);
/frameworks/compile/libbcc/runtime/make/
H A Dsubdir.mk1 # This file is intended to be included from each subdirectory makefile.
52 # Check for undefined required variables, and unset sentinel value from optional
/frameworks/compile/mclinker/lib/LD/
H A DSectionMap.cpp48 // exception from the given SECTIONS command
134 struct Mapping mapping = { m_StdSectionMap[i].from, m_StdSectionMap[i].to};
/frameworks/ex/chips/src/com/android/ex/chips/
H A DSingleRecipientArrayAdapter.java37 mLayoutInflater = LayoutInflater.from(context);

Completed in 525 milliseconds

1234567