Searched defs:tag (Results 151 - 175 of 313) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java505 public int getSpanStart(Object tag) { argument
510 public int getSpanEnd(Object tag) { argument
511 return nonEmptySpans.contains(tag) ? 1 : 0;
515 public int getSpanFlags(Object tag) { argument
/frameworks/base/media/java/android/media/tv/
H A DTvRecordingClient.java58 * @param tag A short name for debugging purposes.
62 public TvRecordingClient(Context context, String tag, @NonNull RecordingCallback callback, argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLEnvironment.java40 private GLEnvironment(NativeAllocatorTag tag) { argument
/frameworks/base/obex/javax/obex/
H A DApplicationParameter.java116 public void addAPPHeader(byte tag, byte len, byte[] value) { argument
123 mArray[mLength++] = tag;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DJob.java136 Uri getDataUriForIntent(String tag) { argument
137 return Uri.parse(String.format("data,%s-%s", tag, id));
258 Intent buildNavigateIntent(String tag) { argument
262 intent.setData(getDataUriForIntent(tag));
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1Decoder.java82 public static Asn1Tag mapTag(int tag) { argument
83 return sTagMap.get(tag);
105 int tag = decodeTag(data);
111 new Asn1Constructed(tag, asn1Class, length, payload, tagPosition);
119 parent.addChild(new Asn1Octets(tag, asn1Class, length, data));
121 parent.addChild(buildScalar(tag, asn1Class, length, data));
137 private static Asn1Object buildScalar(int tag, Asn1Class asn1Class, int length, ByteBuffer data) argument
139 switch (tag) {
141 return new Asn1Boolean(tag, asn1Class, length, data);
144 return new Asn1Integer(tag, asn1Clas
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMOTree.java194 private static XMLNode getNextNode(XMLNode node, String tag) throws IOException { argument
196 throw new IOException("No node for " + tag);
200 if (!child.getTag().equals(tag))
201 throw new IOException("Expected " + node.getTag() + " to have child '" + tag +
H A DXMLNode.java36 public XMLNode(XMLNode parent, String tag, Attributes attributes) throws SAXException { argument
37 mTag = tag;
53 public XMLNode(XMLNode parent, String tag, Map<String, String> attributes) { argument
54 mTag = tag;
123 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
131 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DNotificationPlayer.java273 * @param tag a string to use for debugging
275 public NotificationPlayer(String tag) { argument
276 if (tag != null) {
277 mTag = tag;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java79 public String tag, info; field in class:GestureRecorder.Gesture.TagRecord
80 public TagRecord(long when, String tag, String info) { argument
82 this.tag = tag;
86 return String.format("{\"type\":\"tag\", \"time\":%d, \"tag\":\"%s\", \"info\":\"%s\"}",
88 this.tag,
114 public void tag(long when, String tag, String info) { argument
115 mRecords.add(new TagRecord(when, tag, inf
171 tag(long when, String tag, String info) argument
182 tag(long when, String tag) argument
186 tag(String tag) argument
190 tag(String tag, String info) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DEvents.java108 public static void writeEvent(Context context, int tag, Object... list) { argument
110 final StringBuilder sb = new StringBuilder("writeEvent ").append(EVENT_TAGS[tag]);
113 switch (tag) {
176 sCallback.writeEvent(time, tag, list);
215 void writeEvent(long time, int tag, Object[] list); argument
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifData.java156 * Returns the tag with a given TID in the given IFD if the tag exists.
159 protected ExifTag getTag(short tag, int ifd) { argument
161 return (ifdData == null) ? null : ifdData.getTag(tag);
168 protected ExifTag addTag(ExifTag tag) { argument
169 if (tag != null) {
170 int ifd = tag.getIfd();
171 return addTag(tag, ifd);
180 protected ExifTag addTag(ExifTag tag, int ifdId) { argument
181 if (tag !
300 getAllTagsForTagId(short tag) argument
[all...]
H A DExifOutputStream.java156 // until SOF tag.
162 short tag = mBuffer.getShort();
163 if (tag == JpegHeader.EOI) {
285 for (ExifTag tag : tags) {
286 dataOutputStream.writeShort(tag.getTagId());
287 dataOutputStream.writeShort(tag.getDataType());
288 dataOutputStream.writeInt(tag.getComponentCount());
290 Log.v(TAG, "\n" + tag.toString());
292 if (tag.getDataSize() > 4) {
293 dataOutputStream.writeInt(tag
480 writeTagValue(ExifTag tag, OrderedDataOutputStream dataOutputStream) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java79 // per tag (or even globally) instead.
133 public boolean isTagEnabled(String tag) {
134 return DropBoxManagerService.this.isTagEnabled(tag);
138 public DropBoxManager.Entry getNextEntry(String tag, long millis) {
139 return DropBoxManagerService.this.getNextEntry(tag, millis);
220 final String tag = entry.getTag();
226 if (!isTagEnabled(tag)) return;
277 Slog.w(TAG, "Dropping: " + tag + " (" + temp.length() + " > " + max + " bytes)");
284 long time = createEntry(temp, tag, flags);
288 dropboxIntent.putExtra(DropBoxManager.EXTRA_TAG, tag);
308 isTagEnabled(String tag) argument
318 getNextEntry(String tag, long millis) argument
508 public final String tag; field in class:DropBoxManagerService.EntryFile
537 EntryFile(File temp, File dir, String tag,long timestampMillis, int flags, int blockSize) argument
561 EntryFile(File dir, String tag, long timestampMillis) argument
693 createEntry(File temp, String tag, int flags) argument
[all...]
/frameworks/base/services/core/java/com/android/server/firewall/
H A DStringFilter.java128 protected ValueProvider(String tag) { argument
129 super(tag);
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DTimeController.java44 /** Deadline alarm tag for logging purposes */
46 /** Delay alarm tag for logging purposes */
252 private void updateAlarmWithListenerLocked(String tag, OnAlarmListener listener, argument
259 Slog.d(TAG, "Setting " + tag + " for: " + alarmTimeElapsed);
262 AlarmManager.WINDOW_HEURISTIC, 0, tag, listener, null, new WorkSource(uid));
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserRestrictionsUtils.java165 @Nullable Bundle restrictions, @NonNull String tag) throws IOException {
170 serializer.startTag(null, tag);
183 serializer.endTag(null, tag);
164 writeRestrictions(@onNull XmlSerializer serializer, @Nullable Bundle restrictions, @NonNull String tag) argument
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java81 private TrackerEntry(String tag, EntryType type) { argument
83 mTag = tag;
107 static TrackerEntry createEntry(String tag, String msg) { argument
108 TrackerEntry entry = new TrackerEntry(tag, EntryType.LOG_TYPE);
210 String tag = cursor.getString(cursor.getColumnIndex(TAG));
212 TrackerEntry entry = new TrackerEntry(tag, EntryType.valueOf(sType));
215 Location location = new Location(tag);
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp233 BCHeaderField::FixedSubfield tag; member in struct:IntFieldHelper
/frameworks/compile/mclinker/lib/Target/
H A DELFAttribute.cpp207 // The tag of sub-subsection is encoded in ULEB128.
209 uint64_t tag = leb128::decode<uint64_t>(subsubsection_data, tag_size); local
225 switch (tag) {
227 ELFAttributeData::TagType tag; local
237 if (!ELFAttributeData::ReadTag(tag, attr_buf, attr_size))
244 m_AttrData.getOrCreateAttributeValue(tag);
265 !m_AttrData.merge(m_Parent.config(), pInput, tag, in_attr)) {
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
H A DXmlEditor.java135 String tag = it.getTag();
139 String newLine = line.substring(0, endTagPosition.charIndex) + " " + tag +
194 boolean isExpression = attrName.equals("android:tag");
222 // tag with no attributes, but with content
282 // android:tag is included, regardless, so we must only count as an expression
283 // if android:tag has a binding expression.
295 String tag = "";
297 tag = "android:tag=\"" + newTag + "_" + bindingIndex + "\"";
300 tag
418 TagAndContext(String tag, ElementContext elementContext) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOTree.java198 private static XMLNode getNextNode(XMLNode node, String tag) throws IOException { argument
200 throw new IOException("No node for " + tag);
204 if (!child.getTag().equals(tag))
205 throw new IOException("Expected " + node.getTag() + " to have child '" + tag +
H A DXMLNode.java37 public XMLNode(XMLNode parent, String tag, Attributes attributes) throws SAXException { argument
38 mTag = tag;
54 public XMLNode(XMLNode parent, String tag, Map<String, String> attributes) { argument
55 mTag = tag;
164 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
172 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParamsFactory.java278 * Search for a COMPREHENSION-TLV object with the given tag from a list
280 * @param tag A tag to search for
283 * @return A ComprehensionTlv object that has the tag value of {@code tag}.
284 * If no object is found with the tag, null is returned.
286 private ComprehensionTlv searchForTag(ComprehensionTlvTag tag, argument
289 return searchForNextTag(tag, iter);
293 * Search for the next COMPREHENSION-TLV object with the given tag from a
298 * @param tag
304 searchForNextTag(ComprehensionTlvTag tag, Iterator<ComprehensionTlv> iter) argument
[all...]
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.java54 private final String tag; field in class:FragmentTabHost.TabInfo
60 tag = _tag;
74 public View createTabContent(String tag) { argument
220 String tag = tabSpec.getTag();
222 TabInfo info = new TabInfo(tag, clss, args);
228 info.fragment = mFragmentManager.findFragmentByTag(tag);
251 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag);
253 if (tab.tag.equals(currentTab)) {
321 if (tab.tag.equals(tabId)) {
326 throw new IllegalStateException("No tab known for tag "
[all...]

Completed in 928 milliseconds

1234567891011>>