HomeSort by relevance Sort by last modified time
    Searched refs:newTag (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IIccPhoneBook.aidl 69 * @param newTag adn tag to be stored
71 * Set both newTag and newPhoneNubmer to "" means to replace the old
78 String newTag, String newPhoneNumber,
94 * @param newTag adn tag to be stored
96 * Set both newTag and newPhoneNubmer to "" means to replace the old
104 String newTag, String newPhoneNumber,
113 * @param newTag adn tag to be stored
115 * Set both newTag and newPhoneNubmer to "" means to replace the old
121 boolean updateAdnRecordsInEfByIndex(int efid, String newTag,
132 * @param newTag adn tag to be store
    [all...]
UiccPhoneBookController.java 46 String newTag, String newPhoneNumber, String pin2) throws android.os.RemoteException {
48 oldPhoneNumber, newTag, newPhoneNumber, pin2);
54 String oldPhoneNumber, String newTag, String newPhoneNumber,
60 oldPhoneNumber, newTag, newPhoneNumber, pin2);
70 updateAdnRecordsInEfByIndex(int efid, String newTag,
72 return updateAdnRecordsInEfByIndexForSubscriber(getDefaultSubscription(), efid, newTag,
78 updateAdnRecordsInEfByIndexForSubscriber(int subId, int efid, String newTag,
83 return iccPbkIntMgr.updateAdnRecordsInEfByIndex(efid, newTag,
IccPhoneBookInterfaceManager.java 153 * @param newTag adn tag to be stored
155 * Set both newTag and newPhoneNubmer to "" means to replace the old
163 String newTag, String newPhoneNumber, String pin2) {
176 Rlog.pii(LOG_TAG, oldPhoneNumber) + ")" + "==>" + " ("+ Rlog.pii(LOG_TAG, newTag) +
187 AdnRecord newAdn = new AdnRecord(newTag, newPhoneNumber);
207 * @param newTag adn tag to be stored
209 * Set both newTag and newPhoneNubmer to "" means to replace the old
216 updateAdnRecordsInEfByIndex(int efid, String newTag,
228 Rlog.pii(LOG_TAG, newTag) + "," + Rlog.pii(LOG_TAG, newPhoneNumber) + ")" +
235 AdnRecord newAdn = new AdnRecord(newTag, newPhoneNumber)
    [all...]
IccProvider.java 378 String newTag = values.getAsString("newTag");
383 newTag, newNumber, pin2, subId);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/development/
AbstractLogdSizePreferenceController.java 151 String newTag = currentTag.replaceAll(
167 if (newTag.length() != 0) {
168 newTag = "," + newTag;
171 newTag = SELECT_LOGD_TAG_SILENCE + newTag;
173 if (!newTag.equals(currentTag)) {
174 SystemProperties.set(SELECT_LOGD_TAG_PROPERTY, newTag);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifModifier.java 111 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
112 if (newTag != null) {
113 if (newTag.getComponentCount() != oldTag.getComponentCount()
114 || newTag.getDataType() != oldTag.getDataType()) {
117 mTagOffsets.add(new TagOffset(newTag, oldTag.getOffset()));
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifModifier.java 111 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
112 if (newTag != null) {
113 if (newTag.getComponentCount() != oldTag.getComponentCount()
114 || newTag.getDataType() != oldTag.getDataType()) {
117 mTagOffsets.add(new TagOffset(newTag, oldTag.getOffset()));
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifModifier.java 112 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
113 if (newTag != null) {
114 if (newTag.getComponentCount() != oldTag.getComponentCount()
115 || newTag.getDataType() != oldTag.getDataType()) {
118 mTagOffsets.add(new TagOffset(newTag, oldTag.getOffset()));
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifModifier.java 112 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
113 if (newTag != null) {
114 if (newTag.getComponentCount() != oldTag.getComponentCount()
115 || newTag.getDataType() != oldTag.getDataType()) {
118 mTagOffsets.add(new TagOffset(newTag, oldTag.getOffset()));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ApplicationSpecific.java 187 private byte[] replaceTagNumber(int newTag, byte[] input)
222 tmp[0] = (byte)newTag;
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
TranslateJcite.java 178 String newTag = snippetLocator.substring(snippetLocatorPrefix.length());
180 newTag = newTag.trim();
183 return AstNodes.createTextTagElement(ast, "@sample " + fileName + " " + newTag);
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 52 public static String strip(File f, String newTag, String encoding) throws IOException {
90 recurseReplace(layoutNode, lines, noTag, newTag, 0);
292 String newTag, int bindingIndex) {
296 if (!isMerge && (hasExpressionAttributes(node) || newTag != null || containsInclude)) {
298 if (newTag != null) {
299 tag = "android:tag=\"" + newTag + "_" + bindingIndex + "\"";
322 nextTag = newTag;
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
LayoutFileParser.java 124 final String newTag = original.getParentFile().getName() + '/' + xmlNoExtension;
126 parseExpressions(newTag, rootView, isMerge, bundle);
143 private void parseExpressions(String newTag, final XMLParser.ElementContext rootView,
232 tag = newTag + "_" + tagNumber;
433 private void stripBindingTags(File xml, File output, String newTag, String encoding) throws IOException {
434 String res = XmlEditor.strip(xml, newTag, encoding);
  /frameworks/base/core/java/android/nfc/
Tag.java 321 Tag newTag = mTagService.rediscover(getServiceHandle());
322 if (newTag != null) {
323 return newTag;
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 265 int newFlags, String newTag, String newPackageName, int newOwnerUid,
273 Slog.d(TAG, "onWakeLockChanging: flags=" + newFlags + ", tag=\"" + newTag
283 monitorType, newWorkSource, newOwnerPid, newTag, newHistoryTag,
290 onWakeLockAcquired(newFlags, newTag, newPackageName, newOwnerUid, newOwnerPid,
    [all...]
  /frameworks/support/exifinterface/src/androidTest/java/androidx/exifinterface/media/
ExifInterfaceTest.java 637 final String newTag = ExifInterface.TAG_PHOTOGRAPHIC_SENSITIVITY;
643 assertEquals(isoValue, exif.getAttribute(newTag));
646 exif.setAttribute(newTag, isoValue);
648 assertEquals(isoValue, exif.getAttribute(newTag));
    [all...]
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.0/
compilerCommon-1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.0-rc5/
compilerCommon-1.0-rc5.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.1/
compilerCommon-1.1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0/
compilerCommon-2.0.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-alpha9/
compilerCommon-2.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta2/
compilerCommon-2.0.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta5/
compilerCommon-2.0.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta6/
compilerCommon-2.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta7/
compilerCommon-2.0.0-beta7.jar 

Completed in 579 milliseconds

1 2 3 4 5 6