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

/frameworks/compile/mclinker/lib/Support/
H A DRealPath.cpp43 detail::canonicalize(m_PathName);
46 detail::get_pwd(path_name);
49 detail::canonicalize(path_name.native());
H A DFileSystem.cpp18 mcld::sys::fs::detail::status(pPath, file_status);
25 detail::status(pPath, file_status);
H A DDirectory.cpp51 detail::get_pwd(m_Path);
53 detail::open_dir(*this);
67 detail::open_dir(*this);
71 detail::close_dir(*this);
91 detail::get_pwd(m_Path);
96 detail::open_dir(*this);
107 detail::status(m_Path, m_FileStatus);
114 detail::symlink_status(m_Path, m_SymLinkStatus);
136 detail::close_dir(*this);
184 m_pEntry = detail
[all...]
H A DFileHandle.cpp86 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
88 m_Handler = sys::fs::detail::open(pPath, oflag(pMode),
150 if (sys::fs::detail::ftruncate(m_Handler, pSize) == -1) {
169 sys::fs::detail::pread(m_Handler, pMemBuffer, pLength, pStartOffset);
191 sys::fs::detail::pwrite(m_Handler, pMemBuffer, pLength, pStartOffset);
H A DPath.cpp120 detail::canonicalize(result);
125 return detail::canonicalize(m_PathName);
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DRelation.java24 * An immutable value type representing a statement relation with "kind" and "detail".
26 * <p> The set of kinds is enumerated by the API: <ul> <li> <b>delegate_permission</b>: The detail
32 * <p> The detail field is a lowercase alphanumeric string with underscores and periods allowed
43 private Relation(String kind, String detail) { argument
45 mDetail = detail;
57 * Returns the relation's detail.
65 * Creates a new Relation object for the specified {@code kind} and {@code detail}.
67 * @throws AssociationServiceException if {@code kind} or {@code detail} is not well formatted.
69 public static Relation create(@NonNull String kind, @NonNull String detail) argument
71 if (!KIND_PATTERN.matcher(kind).matches() || !DETAIL_PATTERN.matcher(detail)
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DMCLDDirectory.cpp30 sys::fs::detail::open_dir(*this);
44 sys::fs::detail::open_dir(*this);
58 sys::fs::detail::open_dir(*this);
72 sys::fs::detail::open_dir(*this);
93 sys::fs::detail::canonicalize(Directory::m_Path.native());
94 sys::fs::detail::open_dir(*this);
H A DSearchDirs.cpp107 if (mcld::sys::fs::detail::shared_library_extension ==
121 mcld::sys::fs::detail::static_library_extension ==
172 if (mcld::sys::fs::detail::shared_library_extension ==
186 mcld::sys::fs::detail::static_library_extension ==
/frameworks/compile/mclinker/include/mcld/Support/
H A 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(
H A DFileSystem.h76 namespace detail { namespace in namespace:mcld::sys::fs
107 } // namespace detail
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailClipper.java26 /** Helper for quick settings detail panel clip animations. **/
34 public QSDetailClipper(View detail) { argument
35 mDetail = detail;
36 mBackground = (TransitionDrawable) detail.getBackground();
H A DQSPanel.java176 // We need to poke the detail views as well as they might not be attached to the view
389 if (r.detailView == null) throw new IllegalStateException("Must return detail view");
553 private void fireShowingDetail(QSTile.DetailAdapter detail) { argument
555 mCallback.onShowingDetail(detail);
626 // Only hide content if still in detail state.
643 void onShowingDetail(QSTile.DetailAdapter detail); argument
/frameworks/compile/mclinker/include/mcld/ADT/
H A Dilist_sort.h19 namespace detail { namespace in namespace:mcld
74 } // namespace detail
79 detail::sort(list, list.size(), is_less_than);
/frameworks/base/tools/apilint/
H A Dapilint.py209 def __init__(self, sig, clazz, detail, error, rule, msg):
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):
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):
253 _fail(clazz, detail, Fals
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A 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/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1361 public void logOperation(int cookie, String detail) { argument
1363 logOperationLocked(cookie, detail);
1378 private void logOperationLocked(int cookie, String detail) { argument
1382 if (detail != null) {
1383 msg.append(", ").append(detail);
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp533 AString detail; local
534 CHECK(msg->findString("detail", &detail));
541 detail.c_str(),
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h376 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java913 private void expectNetworkStatsUidDetail(NetworkStats detail) throws Exception { argument
914 expectNetworkStatsUidDetail(detail, new String[0], new NetworkStats(0L, 0));
918 NetworkStats detail, String[] tetherIfacePairs, NetworkStats tetherStats)
920 expect(mNetManager.getNetworkStatsUidDetail(eq(UID_ALL))).andReturn(detail).atLeastOnce();
917 expectNetworkStatsUidDetail( NetworkStats detail, String[] tetherIfacePairs, NetworkStats tetherStats) argument
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp136 void notifyError(bool send, status_t err, const char *detail);
781 bool send, status_t err, const char *detail) {
787 msg->setString("detail", detail);
780 notifyError( bool send, status_t err, const char *detail) argument
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp203 AString detail; local
204 CHECK(msg->findString("detail", &detail));
209 detail.c_str(),
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java5731 String detail;
5732 detail = SystemProperties.get("ro.product.name", "");
5733 if (!mWifiNative.setDeviceName(detail)) {
5734 loge("Failed to set device name " + detail);
5736 detail = SystemProperties.get("ro.product.manufacturer", "");
5737 if (!mWifiNative.setManufacturer(detail)) {
5738 loge("Failed to set manufacturer " + detail);
5740 detail = SystemProperties.get("ro.product.model", "");
5741 if (!mWifiNative.setModelName(detail)) {
5742 loge("Failed to set model name " + detail);
[all...]
/frameworks/rs/api/
H A Drs_for_each.spec52 level of detail.
301 summary: Number of levels of detail for the specified context
303 Returns the number of levels of detail for the specified context. This is useful
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp2635 void MediaCodec::onError(status_t err, int32_t actionCode, const char *detail) { argument
2642 if (detail != NULL) {
2643 msg->setString("detail", detail);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 666 milliseconds