Searched defs:tag (Results 251 - 275 of 313) sorted by relevance

<<111213

/frameworks/base/tools/aapt2/
H A DResourceParser.cpp899 const StringPiece16& tag) {
904 mDiag->error(DiagMessage(source) << "no attribute 'name' found for tag <" << tag << ">");
910 mDiag->error(DiagMessage(source) << "no attribute 'value' found for tag <" << tag << ">");
918 << "' for <" << tag << ">; must be an integer");
1084 << "unknown tag <" << elementNamespace << ":" << elementName << ">");
1158 mDiag->error(DiagMessage(itemSource) << "unknown tag <" << elementNamespace << ":"
1207 mDiag->error(DiagMessage(itemSource) << "<attr> tag must have a 'name' attribute");
1216 mDiag->error(DiagMessage(itemSource) << "<attr> tag ha
898 parseEnumOrFlagItem(xml::XmlPullParser* parser, const StringPiece16& tag) argument
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DResourceBundle.java477 boolean used, String tag, String originalTag, Location location) {
478 BindingTargetBundle target = new BindingTargetBundle(id, viewName, used, tag,
749 @XmlAttribute(name="tag", required = true)
770 String tag, String originalTag, Location location) {
774 mTag = tag;
476 createBindingTarget(String id, String viewName, boolean used, String tag, String originalTag, Location location) argument
769 BindingTargetBundle(String id, String viewName, boolean used, String tag, String originalTag, Location location) argument
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DViewDataBinding.java64 * Prefix for android:tag on Views with binding. The root View and include tags will not have
65 * android:tag attributes and will use ids instead.
405 final Object tag = v.getTag();
406 if (tag instanceof ViewDataBinding) {
407 return (ViewDataBinding) tag;
416 * binding is for a merge layout file, this will return the first root in the merge tag.
922 final String tag = (String) view.getTag();
924 if (isRoot && tag != null && tag.startsWith("layout")) {
925 final int underscoreIndex = tag
1001 findIncludeIndex(String tag, int minInclude, IncludedLayouts included, int includedIndex) argument
1040 isNumeric(String tag, int startIndex) argument
[all...]
/frameworks/rs/api/
H A DSpecification.cpp835 const string tag = scanner.getNextTag(); local
836 if (tag == "function:") {
838 } else if (tag == "type:") {
840 } else if (tag == "constant:") {
843 scanner.error() << "Expected function:, type:, or constant:. Found: " << tag << "\n";
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp1158 camera_metadata_ro_entry_t Parameters::staticInfo(uint32_t tag, argument
1160 camera_metadata_ro_entry_t entry = info->find(tag);
1163 const char* tagSection = get_camera_metadata_section_name(tag);
1165 const char* tagName = get_camera_metadata_tag_name(tag);
1169 tagSection, tagName, tag);
1173 const char* tagSection = get_camera_metadata_section_name(tag);
1175 const char* tagName = get_camera_metadata_tag_name(tag);
1179 tagSection, tagName, tag, minCount, maxCount, entry.count);
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java449 public FragmentTransaction add(Fragment fragment, String tag) { argument
450 doAddOp(0, fragment, tag, OP_ADD);
459 public FragmentTransaction add(int containerViewId, Fragment fragment, String tag) { argument
460 doAddOp(containerViewId, fragment, tag, OP_ADD);
464 private void doAddOp(int containerViewId, Fragment fragment, String tag, int opcmd) { argument
467 if (tag != null) {
468 if (fragment.mTag != null && !tag.equals(fragment.mTag)) {
469 throw new IllegalStateException("Can't change tag of fragment "
471 + " now " + tag);
473 fragment.mTag = tag;
499 replace(int containerViewId, Fragment fragment, String tag) argument
[all...]
H A DFragmentManager.java180 * Finds a fragment that was identified by the given tag either when inflated
187 public abstract Fragment findFragmentByTag(String tag); argument
1398 public Fragment findFragmentByTag(String tag) { argument
1399 if (mAdded != null && tag != null) {
1403 if (f != null && tag.equals(f.mTag)) {
1408 if (mActive != null && tag != null) {
1412 if (f != null && tag.equals(f.mTag)) {
2277 String tag = a.getString(com.android.internal.R.styleable.Fragment_tag);
2281 if (containerId == View.NO_ID && id == View.NO_ID && tag == null) {
2283 + ": Must specify unique android:id, android:tag, o
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java851 /*package*/ native static final void dumpTheme(long theme, int priority, String tag, String prefix); argument
/frameworks/base/core/java/android/os/
H A DStrictMode.java971 public StrictModeResourceMismatchViolation(int policyMask, Object tag) { argument
972 super(policyMask, DETECT_RESOURCE_MISMATCH, tag != null ? tag.toString() : null);
1271 void onResourceMismatch(Object tag) { argument
1279 new StrictModeResourceMismatchViolation(mPolicyMask, tag);
2126 * <p>The name is an arbitary label (or tag) that will be applied
2195 * @param tag an object for the exception stack trace that's
2199 public static void noteResourceMismatch(Object tag) { argument
2205 ((AndroidBlockGuardPolicy) policy).onResourceMismatch(tag);
2436 for (String tag
[all...]
/frameworks/base/core/java/android/text/
H A DLayout.java2009 public int getSpanStart(Object tag) { argument
2010 return mSpanned.getSpanStart(tag);
2013 public int getSpanEnd(Object tag) { argument
2014 return mSpanned.getSpanEnd(tag);
2017 public int getSpanFlags(Object tag) { argument
2018 return mSpanned.getSpanFlags(tag);
/frameworks/base/core/java/android/widget/
H A DListView.java3779 protected View findViewWithTagTraversal(Object tag) { argument
3781 v = super.findViewWithTagTraversal(tag);
3783 v = findViewWithTagInHeadersOrFooters(mHeaderViewInfos, tag);
3788 v = findViewWithTagInHeadersOrFooters(mFooterViewInfos, tag);
3798 * Look in the passed in list of headers or footers for the view with the tag.
3800 View findViewWithTagInHeadersOrFooters(ArrayList<FixedViewInfo> where, Object tag) { argument
3809 v = v.findViewWithTag(tag);
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java1171 public Tab setTag(Object tag) { argument
1172 mTag = tag;
/frameworks/base/media/java/android/media/
H A DWebVttRenderer.java120 public void onStart(String tag, String[] classes, String annotation) { } argument
123 public void onEnd(String tag) { } argument
247 * Collect annotations and end-tags to closing >. Collect tag
284 Log.d(TAG, "invalid timestamp tag: <" + mName + ">");
323 /* we are finished with a line unless we are in the middle of a tag */
332 void onStart(String tag, String[] classes, String annotation); argument
333 void onEnd(String tag); argument
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java127 * @param tag A short name for debugging purposes.
129 public MediaSession(@NonNull Context context, @NonNull String tag) { argument
130 this(context, tag, UserHandle.myUserId());
140 * @param tag A short name for debugging purposes.
144 public MediaSession(@NonNull Context context, @NonNull String tag, int userId) { argument
148 if (TextUtils.isEmpty(tag)) {
149 throw new IllegalArgumentException("tag cannot be null or empty");
157 mBinder = manager.createSession(mCbStub, tag, userId);
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java202 * Log GL calls to the system log at "verbose" level with tag "GLSurfaceView".
1208 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
1209 Log.w(tag, formatEglError(function, error));
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DZenModePanel.java395 final ConditionTag tag = getConditionTagAt(i);
396 if (tag != null) {
397 if (sameConditionId(tag.condition, mExitCondition)) {
407 final ConditionTag tag = getConditionTagAt(i);
408 if (tag != null && tag.rb.isChecked()) {
409 return tag.condition;
586 final ConditionTag tag = getConditionTagAt(i);
587 if (tag != null && tag
721 announceConditionSelection(ConditionTag tag) argument
741 onClickTimeButton(View row, ConditionTag tag, boolean up, int rowId) argument
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java1295 * @param tag If non-null, this will be used in a log message if the
1298 private AuthorityInfo getAuthorityLocked(EndPoint info, String tag) { argument
1302 if (tag != null) {
1304 Slog.v(TAG, tag + ": unknown account " + au);
1311 if (tag != null) {
1313 Slog.v(TAG, tag + ": unknown provider " + info.provider);
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerService.java517 String tag) {
518 JobStatus jobStatus = JobStatus.createFromJobInfo(job, uId, packageName, userId, tag);
1568 public int scheduleAsPackage(JobInfo job, String packageName, int userId, String tag) argument
1595 packageName, userId, tag);
516 scheduleAsPackage(JobInfo job, int uId, String packageName, int userId, String tag) argument
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java131 ISessionCallback cb, String tag, MediaSessionService service, Handler handler) {
136 mTag = tag;
175 * Get the tag for the session.
177 * @return The session's tag.
130 MediaSessionRecord(int ownerPid, int ownerUid, int userId, String ownerPackageName, ISessionCallback cb, String tag, MediaSessionService service, Handler handler) argument
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsService.java562 NetworkTemplate template, int uid, int set, int tag, int fields) {
564 if (tag == TAG_NONE) {
565 return getUidComplete().getHistory(template, uid, set, tag, fields,
568 return getUidTagComplete().getHistory(template, uid, set, tag, fields,
575 NetworkTemplate template, int uid, int set, int tag, int fields,
578 if (tag == TAG_NONE) {
579 return getUidComplete().getHistory(template, uid, set, tag, fields, start, end,
582 return getUidTagComplete().getHistory(template, uid, set, tag, fields,
586 + " cannot access tag information from a different uid");
675 public void incrementOperationCount(int uid, int tag, in argument
[all...]
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java1772 private void writeWallpaperAttributes(XmlSerializer out, String tag, WallpaperData wallpaper) argument
1774 out.startTag(null, tag);
1808 out.endTag(null, tag);
1904 String tag = parser.getName();
1905 if ("wp".equals(tag)) {
1928 } else if ("kwp".equals(tag)) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java1539 WifiLock(int lockMode, String tag, IBinder binder, WorkSource ws) { argument
1540 super(tag, binder);
1631 public boolean acquireWifiLock(IBinder binder, int lockMode, String tag, WorkSource ws) { argument
1649 WifiLock wifiLock = new WifiLock(lockMode, tag, binder, ws);
1778 DeathRecipient(String tag, IBinder binder) { argument
1780 mTag = tag;
1800 Multicaster(String tag, IBinder binder) { argument
1801 super(tag, binder);
1832 public void acquireMulticastLock(IBinder binder, String tag) { argument
1837 mMulticasters.add(new Multicaster(tag, binde
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyEventLog.java167 private void writeEvent(int tag, Bundle data) { argument
168 writeEvent(System.currentTimeMillis(), tag, -1, -1, data);
171 private void writeEvent(int tag, int param1, int param2) { argument
172 writeEvent(System.currentTimeMillis(), tag, param1, param2, null);
175 private void writeEvent(int tag, int param1, int param2, Bundle data) { argument
176 writeEvent(System.currentTimeMillis(), tag, param1, param2, data);
179 private void writeEvent(long timestamp, int tag, int param1, int param2, Bundle data) { argument
188 logEvent(timestamp, ConnectivityMetricsLogger.COMPONENT_TAG_TELEPHONY, tag, b);
492 private void writeImsCallEvent(int tag, ImsCallSession session) { argument
493 writeEvent(tag, getCallI
496 writeImsCallEvent(int tag, ImsCallSession session, ImsReasonInfo reasonInfo) argument
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java1695 * appear on the child view tag.
1941 * Associate a Behavior-specific tag object with the given child view.
1944 * @param child child view to set tag with
1945 * @param tag tag object to set
1947 public static void setTag(View child, Object tag) { argument
1949 lp.mBehaviorTag = tag;
1953 * Get the behavior-specific tag object with the given child view.
1956 * @param child child view to get tag with
1957 * @return the previously stored tag objec
[all...]
H A DTabLayout.java1248 * @return This Tab's tag object.
1258 * @param tag Object to store
1262 public Tab setTag(@Nullable Object tag) { argument
1263 mTag = tag;

Completed in 752 milliseconds

<<111213