/frameworks/base/core/java/android/widget/ |
D | SimpleCursorAdapter.java | 87 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { in SimpleCursorAdapter() argument 90 mOriginalFrom = from; in SimpleCursorAdapter() 91 findColumns(from); in SimpleCursorAdapter() 146 final int[] from = mFrom; in bindView() local 153 bound = binder.setViewValue(v, cursor, from[i]); in bindView() 157 String text = cursor.getString(from[i]); in bindView() 331 private void findColumns(String[] from) { in findColumns() argument 334 int count = from.length; in findColumns() 339 mFrom[i] = mCursor.getColumnIndexOrThrow(from[i]); in findColumns() 364 public void changeCursorAndColumns(Cursor c, String[] from, int[] to) { in changeCursorAndColumns() argument [all …]
|
D | RelativeLayout.java | 1006 @ViewDebug.IntToString(from = ABOVE, to = "above"), 1007 @ViewDebug.IntToString(from = ALIGN_BASELINE, to = "alignBaseline"), 1008 @ViewDebug.IntToString(from = ALIGN_BOTTOM, to = "alignBottom"), 1009 @ViewDebug.IntToString(from = ALIGN_LEFT, to = "alignLeft"), 1010 @ViewDebug.IntToString(from = ALIGN_PARENT_BOTTOM, to = "alignParentBottom"), 1011 @ViewDebug.IntToString(from = ALIGN_PARENT_LEFT, to = "alignParentLeft"), 1012 @ViewDebug.IntToString(from = ALIGN_PARENT_RIGHT, to = "alignParentRight"), 1013 @ViewDebug.IntToString(from = ALIGN_PARENT_TOP, to = "alignParentTop"), 1014 @ViewDebug.IntToString(from = ALIGN_RIGHT, to = "alignRight"), 1015 @ViewDebug.IntToString(from = ALIGN_TOP, to = "alignTop"), [all …]
|
D | SimpleCursorTreeAdapter.java | 231 private void bindView(View view, Context context, Cursor cursor, int[] from, int[] to) { in bindView() argument 239 bound = binder.setViewValue(v, cursor, from[i]); in bindView() 243 String text = cursor.getString(from[i]); in bindView()
|
D | SimpleAdapter.java | 82 int resource, String[] from, int[] to) { in SimpleAdapter() argument 85 mFrom = from; in SimpleAdapter() 166 final String[] from = mFrom; in bindView() local 173 final Object data = dataSet.get(from[i]); in bindView()
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/ |
D | Forwarder.java | 36 private Socket from, to; field in Forwarder 40 public Forwarder (Socket from, Socket to, ForwardServer server) { in Forwarder() argument 42 this.from = from; in Forwarder() 48 Thread outgoing = new Thread(new SocketPipe(from, to)); in start() 49 Thread incoming = new Thread(new SocketPipe(to, from)); in start() 57 shutdown(from); in stop()
|
/frameworks/base/media/libstagefright/ |
D | MetaData.cpp | 28 MetaData::MetaData(const MetaData &from) in MetaData() argument 30 mItems(from.mItems) { in MetaData() 170 MetaData::typed_data::typed_data(const typed_data &from) in typed_data() argument 171 : mType(from.mType), in typed_data() 173 allocateStorage(from.mSize); in typed_data() 174 memcpy(storage(), from.storage(), mSize); in typed_data() 178 const MetaData::typed_data &from) { in operator =() argument 179 if (this != &from) { in operator =() 181 mType = from.mType; in operator =() 182 allocateStorage(from.mSize); in operator =() [all …]
|
D | stagefright_string.cpp | 31 string::string(const string &from, size_type start, size_type length) in string() argument 32 : mString(from.c_str() + start, length) { in string() 75 void string::erase(size_t from, size_t length) { in erase() argument 76 String8 s(mString.string(), from); in erase() 77 s.append(mString.string() + from + length); in erase()
|
/frameworks/base/libs/utils/ |
D | VectorImpl.cpp | 360 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; in _grow() local 362 _do_copy(dest, from, mCount-where); in _grow() 373 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; in _grow() local 374 _do_move_forward(to, from, s); in _grow() 412 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() local 414 _do_copy(dest, from, mCount-(where+amount)); in _shrink() 426 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _shrink() local 427 _do_move_backward(to, from, s); in _shrink() 453 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const in _do_copy() argument 456 do_copy(dest, from, num); in _do_copy() [all …]
|
/frameworks/base/include/utils/ |
D | SortedVector.h | 127 virtual void do_copy(void* dest, const void* from, size_t num) const; 129 virtual void do_move_forward(void* dest, const void* from, size_t num) const; 130 virtual void do_move_backward(void* dest, const void* from, size_t num) const; 252 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { in do_copy() argument 253 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_copy() 262 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { in do_move_forward() argument 263 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_forward() 267 void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { in do_move_backward() argument 268 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_backward()
|
D | VectorImpl.h | 101 virtual void do_copy(void* dest, const void* from, size_t num) const = 0; 103 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0; 104 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0; 122 inline void _do_copy(void* dest, const void* from, size_t num) const; 124 inline void _do_move_forward(void* dest, const void* from, size_t num) const; 125 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
|
D | Vector.h | 162 virtual void do_copy(void* dest, const void* from, size_t num) const; 164 virtual void do_move_forward(void* dest, const void* from, size_t num) const; 165 virtual void do_move_backward(void* dest, const void* from, size_t num) const; 334 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { in do_copy() argument 335 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_copy() 344 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { in do_move_forward() argument 345 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_forward() 349 void Vector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { in do_move_backward() argument 350 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_backward()
|
/frameworks/base/docs/html/guide/topics/media/ |
D | index.jd | 11 <li>Handles data from raw resources, files, streams</li> 27 <li><a href="#playraw">Playing from a Raw Resource</li> 28 <li><a href="#playfile">Playing from a File or Stream</li> 50 <p>Android lets you play audio and video from several types of data sources. You 51 can play audio or video from media files stored in the application's resources 52 (raw resources), from standalone files in the filesystem, or from a data stream 53 arriving over a network connection. To play audio or video from your 67 <p>Media can be played from anywhere: from a raw resource, from a file from the system, 68 or from an available network (URL).</p> 74 <h3 id="playraw">Playing from a Raw Resource</h3> [all …]
|
/frameworks/base/services/java/com/android/server/am/ |
D | ActivityResult.java | 29 public ActivityResult(HistoryRecord from, String resultWho, in ActivityResult() argument 32 mFrom = from; in ActivityResult()
|
D | DeviceMonitor.java | 147 private void dump(File from, OutputStream out) throws IOException { in dump() argument 148 writeHeader(from, out); in dump() 152 in = new FileInputStream(from); in dump()
|
/frameworks/base/include/media/stagefright/ |
D | stagefright_string.h | 33 string(const string &from, size_type start, size_type length = npos); 39 void erase(size_type from, size_type length);
|
/frameworks/base/docs/html/sdk/ |
D | adt_download.jd | 7 from your computer (archived site) instead. </p> 10 download the latest version from this page, uninstall the old version from 43 …<td>Required for users of Android 1.6 SDK only . Updated from 0.9.1. <em><nobr>September 2009</nob… 57 environment, open Eclipse and from the main menu select <strong>Help</strong> 69 …<td>Required for users of Android 1.5 SDK. Updated from 0.9.0. <em><nobr>6 May 2009</nobr></em></t…
|
D | OLD_RELEASENOTES.jd | 16 <p>This beta SDK release contains a large number of bug fixes and improvements from the early-look … 82 …API key on final Android 1.0 devices. This key can be obtained at no cost from Google, and will al… 93 …ed to selection at the moment. Actions on the layout elements can be done from the following stand… 113 …als to on-device rendering since the font engine in Java slightly differs from the font engine in … 127 <li>If a layout fails to render in a way that prevents the whole editor from opening, you can: 164 …You can also hold/unhold calls. This also works when sending SMS messages from one emulator to the… 195 …<li>New sample: the source code for the now-obsolete Home screen from M5 is included as an example… 205 …from "outside" the device, the data messaging facility of the GTalkService will not be present in … 215 …<li>Many internal and non-public APIs have been removed from the documentation. Classes and … 244 …<li>More internal APIs are removed from class documentation. (However, this work is not quit… [all …]
|
D | android-1.6-highlights.jd | 71 browser bookmarks & history, contacts, and the web—directly from 79 content from their applications in Quick Search Box.</p> 89 and there is a 28% improvement in the time from completing one shot to the next.</p> 129 it easier for users to discover great apps and games from developers.</p> 135 reviews from other users.</li> 147 content from their applications in Quick Search Box, the global search tool. 150 To enable application search suggestions, users simply select each application from which 160 SpeechSynthesis Data Installer from Android Market, which includes the "voices" needed by the 205 <p>Android 1.6 upgrades the Linux kernel from 2.6.27 to 2.6.29.</p>
|
/frameworks/base/core/java/com/google/android/mms/pdu/ |
D | ReadRecInd.java | 34 public ReadRecInd(EncodedStringValue from, in ReadRecInd() argument 41 setFrom(from); in ReadRecInd()
|
/frameworks/base/docs/html/guide/practices/ui_guidelines/ |
D | activity_task_design.jd | 11 <li>In addition to writing your own activities, you are free to re-use activities from many other a… 12 <li>You can enable activities in your application to be started from intents in other applications.… 24 <li><a href=#starting_an_activity_from_home>Starting an Activity from Home</a></li> 25 <li><a href=#navigating_away_from_an_activity>Navigating Away from an Activity</a></li> 29 <li><a href=#launching_from_two_entry_points>Launching from Two Entry Points</a></li> 59 framework, from a high-level, user-centric perspective useful to 73 This document draws examples from several Android applications, 126 applications. When you create an application, you can assemble it from 127 activities that you create and from activities you re-use from other 237 As the user moves from activity to activity, across applications, the [all …]
|
/frameworks/base/docs/html/guide/basics/ |
D | appmodel.jd | 48 be one task created for your .apk, and any activities you start from there 51 <p>A task, then, from the user's perspective your application; and from the 65 from the user's perspective, a new application starts at this point. If this 68 to navigate from home back to where they are and launch the same Intent as a 69 new task. Otherwise, if the user presses HOME instead of BACK from the task 93 NEW_TASK flag, in particular launching activities from status bar notifications 113 activity of an application that can be launched from outside of it, you may 224 instances are made only from the main thread of the process they are running in.</p> 241 an IBinder are dispatched from the thread calling them or a thread pool in the 242 local process if coming from another process, <em>not</em> [all …]
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | othertools.jd | 7 <p>All of the tools are included in the Android SDK and are accessible from the 33 these tasks directly from the IDE. To create 34 Android projects and AVDs from Eclipse, see <a href="{@docRoot}guide/developing/eclipse-adt.html">D… 35 In Eclipse</a>. To update your SDK from Eclipse, see 87 <p>The dx tool lets you generate Android bytecode from .class files. The tool
|
/frameworks/base/awt/java/awt/image/ |
D | LookupOp.java | 391 for (int from = 0, to = channelBase; from < nLevels; from++, to++) { in createByteLevels() 392 values[to] = data[dataIdx][from] & 0xFF; in createByteLevels() 431 for (int from = 0, to = channelBase; from < nLevels; from++, to++) { in createShortLevels() 432 values[to] = data[dataIdx][from] & 0xFFFF; in createShortLevels()
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | themes.jd | 14 <li><a href="#fromTheApp">Set the theme from the application</a></li> 38 … referencing these styles later, and the parent indicates what style resource to inherit from.</li> 41 …<li>You can then reference the custom resources from other XML resources, your manifest or applica… 63 …from which the current style will inherit values. The style can inherit from any type of resource … 65 <p>Here's how you would reference the custom style from an XML layout, in this case, for an EditTex… 105 …-symbol indicates that we're referencing a resource previously defined elsewhere (which may be from 106 this project or from the Android framework). 143 <h3 id="fromTheApp">Set the theme from the application</h3> 167 <p>For detailed information about custom styles and themes and referencing them from your applicati…
|
/frameworks/base/docs/html/ |
D | license.jd | 12 tabs, including both static content and content extracted from source 29 documentation (code comments) extracted from a source code module that 32 extracted from it. </p> 71 <li>In addition, content linked from a page on this site is not covered 100 If your online work <em>exactly reproduces</em> text or images from this 105 Portions of this page are reproduced from work created and <a 119 the content from this site, please include a paragraph at the bottom of
|