Home
last modified time | relevance | path

Searched refs:detail (Results 1 – 25 of 166) sorted by relevance

1234567

/frameworks/compile/mclinker/lib/Support/
DDirectory.cpp51 detail::get_pwd(m_Path); in Directory()
53 detail::open_dir(*this); in Directory()
67 detail::open_dir(*this); in Directory()
71 detail::close_dir(*this); in ~Directory()
91 detail::get_pwd(m_Path); in assign()
96 detail::open_dir(*this); in assign()
107 detail::status(m_Path, m_FileStatus); in status()
114 detail::symlink_status(m_Path, m_SymLinkStatus); in symlinkStatus()
136 detail::close_dir(*this); in clear()
184 m_pEntry = detail::bring_one_into_cache(*this); in operator ++()
[all …]
DRealPath.cpp43 detail::canonicalize(m_PathName); in initialize()
46 detail::get_pwd(path_name); in initialize()
49 detail::canonicalize(path_name.native()); in initialize()
DFileHandle.cpp86 m_Handler = sys::fs::detail::open(pPath, oflag(pMode)); in open()
88 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), in open()
150 if (sys::fs::detail::ftruncate(m_Handler, pSize) == -1) { in truncate()
169 sys::fs::detail::pread(m_Handler, pMemBuffer, pLength, pStartOffset); in read()
191 sys::fs::detail::pwrite(m_Handler, pMemBuffer, pLength, pStartOffset); in write()
DFileSystem.cpp18 mcld::sys::fs::detail::status(pPath, file_status); in exists()
25 detail::status(pPath, file_status); in is_directory()
DPath.cpp120 detail::canonicalize(result); in generic_string()
125 return detail::canonicalize(m_PathName); in canonicalize()
/frameworks/compile/mclinker/lib/MC/
DMCLDDirectory.cpp30 sys::fs::detail::open_dir(*this); in MCLDDirectory()
44 sys::fs::detail::open_dir(*this); in MCLDDirectory()
58 sys::fs::detail::open_dir(*this); in MCLDDirectory()
72 sys::fs::detail::open_dir(*this); in assign()
93 sys::fs::detail::canonicalize(Directory::m_Path.native()); in setSysroot()
94 sys::fs::detail::open_dir(*this); in setSysroot()
DSearchDirs.cpp107 if (mcld::sys::fs::detail::shared_library_extension == in find()
121 mcld::sys::fs::detail::static_library_extension == in find()
172 if (mcld::sys::fs::detail::shared_library_extension == in find()
186 mcld::sys::fs::detail::static_library_extension == in find()
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
DRelation.java43 private Relation(String kind, String detail) { in Relation() argument
45 mDetail = detail; in Relation()
69 public static Relation create(@NonNull String kind, @NonNull String detail) in create() argument
71 if (!KIND_PATTERN.matcher(kind).matches() || !DETAIL_PATTERN.matcher(detail).matches()) { in create()
74 return new Relation(kind, detail); in create()
/frameworks/base/docs/html/design/patterns/
Dswipe-views.jd17 <h2 id="detail-views">Swiping Between Detail Views</h2>
19 <p>An app's data is often organized in a master/detail relationship: The user can view a list of
21 detail contents in a separate screen.</p>
25 Master (left) and detail (right) views.
28 <p>On a phone, since the master and detail are on separate screens, this typically requires the use…
29 jump back and forth between the list and the detail view, aka "pogo-sticking".</p>
30 <p>In cases where users will want to view multiple detail items in succession, avoid pogo-sticking …
31 using the swipe gesture to navigate to the next/previous detail view.</p>
68 <p>Use swipe to quickly navigate between detail views or tabs.</p>
79 <p>Consider adding contextual information in your detail view that informs the user about the
Dapp-structure.jd25 <p>A typical Android app consists of top level and detail/edit views. If the navigation hierarchy is
26 deep and complex, category views connect top level and detail views.</p>
47 <p>The detail/edit view is where you consume or create data.</p>
186 to the detail level, where data can be viewed and managed. Minimize perceived navigation effort by
188 <p>Even though the number of vertical navigation steps from the top level down to the detail views …
240 thereby removing the need to navigate all the way down to the song's detail view.
244 <p>Even though category views mostly serve to guide people to content detail, keep in mind that the…
246 <p>For example, if you allow people to delete an item in a detail view, you should also allow them …
247 delete multiple items in the category view. Analyze which detail view actions are applicable to
258 <p>The detail view allows you to view and act on your data. The layout of the detail view depends o…
[all …]
Dwidgets.jd20 …ng information widgets typically launches the associated app and opens a detail view of the widget…
27 …browsing the collection, and opening an element of the collection to its detail view for consumpti…
46 <p>Interacting with control widgets may or may not progress to an associated detail view depending …
77detail within the app; or in other words: the widget is the information "snack" while the app is t…
84 …n an information element will usually navigate the user to a lower level detail screen. Providing …
/frameworks/base/docs/html/training/implementing-navigation/
Ddescendant.jd16 <li><a href="#master-detail">Implement Master/Detail Flows Across Handsets and Tablets</a></li>
43 <h2 id="master-detail">Implement Master/Detail Flows Across Handsets and Tablets</h2>
45detail</em> navigation flow, a <em>master</em> screen contains a list of items in a collection, an…
47detail screen); this concern is further discussed in <a href="{@docRoot}training/design-navigation…
49 …ltiple Screens</em> class. The class describes how to implement a master/detail flow using two act…
/frameworks/compile/mclinker/include/mcld/Support/
DDirectory.h32 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(
34 friend void detail::open_dir(Directory& pDir);
35 friend void detail::close_dir(Directory& pDir);
110 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(
DFileSystem.h76 namespace detail {
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSDetailClipper.java34 public QSDetailClipper(View detail) { in QSDetailClipper() argument
35 mDetail = detail; in QSDetailClipper()
36 mBackground = (TransitionDrawable) detail.getBackground(); in QSDetailClipper()
/frameworks/compile/mclinker/include/mcld/ADT/
Dilist_sort.h19 namespace detail {
79 detail::sort(list, list.size(), is_less_than);
/frameworks/base/tools/apilint/
Dapilint.py209 def __init__(self, sig, clazz, detail, error, rule, msg): argument
224 if detail is not None:
225 dump += "\n in " + repr(detail)
226 self.line = detail.line
227 blame = detail.blame
242 def _fail(clazz, detail, error, rule, msg): argument
246 sig = "%s-%s-%s" % (clazz.fullname, repr(detail), msg)
249 failures[sig] = Failure(sig, clazz, detail, error, rule, msg)
252 def warn(clazz, detail, rule, msg): argument
253 _fail(clazz, detail, False, rule, msg)
[all …]
/frameworks/compile/mclinker/lib/Support/Windows/
DPathV3.inc21 // mcld::sys::fs::detail
23 namespace detail {
185 } // namespace detail
DFileSystem.inc34 namespace detail {
143 } // namespace detail
/frameworks/compile/mclinker/lib/Support/Unix/
DPathV3.inc27 // mcld::sys::fs::detail
29 namespace detail {
213 } // namespace detail
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarHeaderView.java733 public void onShowingDetail(final QSTile.DetailAdapter detail) {
738 handleShowingDetail(detail);
770 private void handleShowingDetail(final QSTile.DetailAdapter detail) {
771 final boolean showingDetail = detail != null;
780 mQsDetailHeaderTitle.setText(detail.getTitle());
781 final Boolean toggleState = detail.getToggleState();
794 detail.setToggleState(checked);
/frameworks/opt/setupwizard/tools/gradle/
Dandroid.properties10 // https://code.google.com/p/android/issues/detail?id=73282
/frameworks/base/docs/html/training/design-navigation/
Dmultiple-sizes.jd49detail information about an item, etc. Thus on such devices, screens generally map one-to-one with…
51detail order. Users are especially accustomed to multiple panes on larger screens from years and y…
90 …nts of the left pane when in portrait. This works quite well with master/detail panes where the le…
/frameworks/base/tests/LegacyRestoreTest/
DREADME10 <https://code.google.com/p/android/issues/detail?id=63880>.
/frameworks/base/docs/html-intl/intl/ru/distribute/googleplay/
Dabout.jd19 <li><a href="#product-detail-pages">Страницы приложений в каталоге магазина</a></li>
313 <h2 id="product-detail-pages">

1234567