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

123456

/frameworks/base/services/java/com/android/server/am/
H A DDeviceMonitor.java145 * Copies from a file to an output stream.
147 private void dump(File from, OutputStream out) throws IOException { argument
148 writeHeader(from, out);
152 in = new FileInputStream(from);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DAndroid.mk74 include $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
96 include $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
/frameworks/base/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.h101 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
136 //! insert one or several items initialized from a prototype item
198 virtual void do_copy(void* dest, const void* from, size_t num) const;
200 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
201 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
206 // No user serviceable parts from here...
397 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { argument
398 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
407 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { argument
408 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), nu
412 do_move_backward(void* dest, const void* from, size_t num) const argument
[all...]
/frameworks/base/libs/utils/
H A DVectorImpl.cpp376 const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize;
378 _do_copy(dest, from, mCount-where);
387 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize;
389 _do_move_forward(to, from, mCount - where);
428 const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; local
430 _do_copy(dest, from, new_size - where);
441 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize;
442 _do_move_backward(to, from, new_size - where);
466 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const
469 do_copy(dest, from, nu
[all...]
/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.java1032 @ViewDebug.IntToString(from = ABOVE, to = "above"),
1033 @ViewDebug.IntToString(from = ALIGN_BASELINE, to = "alignBaseline"),
1034 @ViewDebug.IntToString(from = ALIGN_BOTTOM, to = "alignBottom"),
1035 @ViewDebug.IntToString(from = ALIGN_LEFT, to = "alignLeft"),
1036 @ViewDebug.IntToString(from = ALIGN_PARENT_BOTTOM, to = "alignParentBottom"),
1037 @ViewDebug.IntToString(from = ALIGN_PARENT_LEFT, to = "alignParentLeft"),
1038 @ViewDebug.IntToString(from = ALIGN_PARENT_RIGHT, to = "alignParentRight"),
1039 @ViewDebug.IntToString(from = ALIGN_PARENT_TOP, to = "alignParentTop"),
1040 @ViewDebug.IntToString(from = ALIGN_RIGHT, to = "alignRight"),
1041 @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]));
H A DLinearLayout.java542 * to 0.0f if the weight sum should be computed from the children's
1308 // to accomodate the heightMesureSpec from the parent
1547 //In case of RTL, start drawing from the last child.
1755 @ViewDebug.IntToString(from = -1, to = "NONE"),
1756 @ViewDebug.IntToString(from = Gravity.NO_GRAVITY, to = "NONE"),
1757 @ViewDebug.IntToString(from = Gravity.TOP, to = "TOP"),
1758 @ViewDebug.IntToString(from = Gravity.BOTTOM, to = "BOTTOM"),
1759 @ViewDebug.IntToString(from = Gravity.LEFT, to = "LEFT"),
1760 @ViewDebug.IntToString(from = Gravity.RIGHT, to = "RIGHT"),
1761 @ViewDebug.IntToString(from
[all...]
/frameworks/base/core/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/base/media/libstagefright/foundation/
H A DAMessage.cpp261 const Item *from = &mItems[i];
264 to->mName = from->mName;
265 to->mType = from->mType;
267 switch (from->mType) {
271 new AString(*from->u.stringValue);
277 to->u.refValue = from->u.refValue;
285 static_cast<AMessage *>(from->u.refValue)->dup();
294 to->u = from->u;
/frameworks/base/core/java/android/view/
H A DContextThemeWrapper.java25 * A ContextWrapper that allows you to modify the theme from what is in the
75 mInflater = LayoutInflater.from(mBase).cloneInContext(this);
/frameworks/base/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/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.
H A DListMenuPresenter.java66 mInflater = LayoutInflater.from(mContext);
83 mInflater = LayoutInflater.from(mContext);
87 mInflater = LayoutInflater.from(mContext);
/frameworks/base/data/keyboards/
H A Dkeyboards.mk15 # Warning: this is actually a product definition, to be inherited from
/frameworks/base/opengl/libagl/
H A DAndroid.mk43 # behavior from the bionic Android.mk file
/frameworks/base/opengl/libs/GLES2_dbg/
H A DAndroid.mk39 # behavior from the bionic Android.mk file
/frameworks/compile/libbcc/
H A DAndroid.mk150 include $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
231 include $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
/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/ex/chips/src/com/android/ex/chips/
H A DSingleRecipientArrayAdapter.java37 mLayoutInflater = LayoutInflater.from(context);
/frameworks/base/media/libstagefright/rtsp/
H A DASessionDescription.cpp266 float from, to; local
267 if (!parseNTPRange(value.c_str() + 4, &from, &to)) {
271 *durationUs = (int64_t)((to - from) * 1E6);
/frameworks/base/libs/ui/
H A DInput.cpp149 void InputEvent::initialize(const InputEvent& from) { argument
150 mDeviceId = from.mDeviceId;
151 mSource = from.mSource;
250 void KeyEvent::initialize(const KeyEvent& from) { argument
251 InputEvent::initialize(from);
252 mAction = from.mAction;
253 mFlags = from.mFlags;
254 mKeyCode = from.mKeyCode;
255 mScanCode = from.mScanCode;
256 mMetaState = from
[all...]

Completed in 580 milliseconds

123456