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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HtmlMessage.java 27 public long getId();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetAttributeFix.java 52 if (mId.equals(AccessibilityDetector.ISSUE.getId())) {
54 } else if (mId.equals(InefficientWeightDetector.BASELINE_WEIGHTS.getId())) {
56 } else if (mId.equals(SecurityDetector.EXPORTED_SERVICE.getId())) {
58 } else if (mId.equals(TextFieldDetector.ISSUE.getId())) {
60 } else if (mId.equals(TranslationDetector.MISSING.getId())) {
62 } else if (mId.equals(ManifestDetector.ALLOW_BACKUP.getId())) {
64 } else if (mId.equals(MissingIdDetector.ISSUE.getId())) {
74 if (mId.equals(TranslationDetector.MISSING.getId())) {
83 if (mId.equals(AccessibilityDetector.ISSUE.getId())) {
85 } else if (mId.equals(InefficientWeightDetector.BASELINE_WEIGHTS.getId())) {
    [all...]
LintFix.java 151 sFixes.put(InefficientWeightDetector.INEFFICIENT_WEIGHT.getId(),
153 sFixes.put(AccessibilityDetector.ISSUE.getId(), SetAttributeFix.class);
154 sFixes.put(InefficientWeightDetector.BASELINE_WEIGHTS.getId(), SetAttributeFix.class);
155 sFixes.put(ManifestDetector.ALLOW_BACKUP.getId(), SetAttributeFix.class);
156 sFixes.put(MissingIdDetector.ISSUE.getId(), SetAttributeFix.class);
157 sFixes.put(HardcodedValuesDetector.ISSUE.getId(), ExtractStringFix.class);
158 sFixes.put(UselessViewDetector.USELESS_LEAF.getId(), RemoveUselessViewFix.class);
159 sFixes.put(UselessViewDetector.USELESS_PARENT.getId(), RemoveUselessViewFix.class);
160 sFixes.put(PxUsageDetector.PX_ISSUE.getId(), ConvertToDpFix.class);
161 sFixes.put(TextFieldDetector.ISSUE.getId(), SetAttributeFix.class)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/security/
Realm.java 26 public String getId();
  /frameworks/base/core/java/android/print/
PrintJob.java 44 public PrintJobId getId() {
45 return mCachedInfo.getId();
62 PrintJobInfo info = mPrintManager.getPrintJobInfo(mCachedInfo.getId());
84 mPrintManager.cancelPrintJob(mCachedInfo.getId());
96 mPrintManager.restartPrintJob(mCachedInfo.getId());
193 return mCachedInfo.getId().equals(other.mCachedInfo.getId());
198 return mCachedInfo.getId().hashCode();
  /system/vold/
PrivateVolume.cpp 49 mRawDevPath = StringPrintf("/dev/block/vold/%s", getId().c_str());
69 cryptfs_revert_ext_volume(getId().c_str());
75 int res = cryptfs_setup_ext_volume(getId().c_str(), mRawDevPath.c_str(),
79 PLOG(ERROR) << getId() << " failed to setup cryptfs";
87 if (cryptfs_revert_ext_volume(getId().c_str())) {
88 LOG(ERROR) << getId() << " failed to revert cryptfs";
95 LOG(ERROR) << getId() << " failed to read metadata";
103 PLOG(ERROR) << getId() << " failed to create mount point " << mPath;
110 LOG(DEBUG) << getId() << " passed filesystem check";
112 PLOG(ERROR) << getId() << " failed filesystem check"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditorContributor.java 78 actionBars.setGlobalActionHandler(ActionFactory.DELETE.getId(),
80 actionBars.setGlobalActionHandler(ActionFactory.UNDO.getId(),
82 actionBars.setGlobalActionHandler(ActionFactory.REDO.getId(),
84 actionBars.setGlobalActionHandler(ActionFactory.CUT.getId(),
86 actionBars.setGlobalActionHandler(ActionFactory.COPY.getId(),
88 actionBars.setGlobalActionHandler(ActionFactory.PASTE.getId(),
90 actionBars.setGlobalActionHandler(ActionFactory.SELECT_ALL.getId(),
92 actionBars.setGlobalActionHandler(ActionFactory.FIND.getId(),
95 IDEActionFactory.BOOKMARK.getId(), getAction(editor,
96 IDEActionFactory.BOOKMARK.getId()));
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineKey.java 73 } else if (transformation != null && !transformation.getId().equals(engineKey.transformation.getId())) {
77 } else if (decoder != null && !decoder.getId().equals(engineKey.decoder.getId())) {
81 } else if (cacheDecoder != null && !cacheDecoder.getId().equals(engineKey.cacheDecoder.getId())) {
85 } else if (encoder != null && !encoder.getId().equals(engineKey.encoder.getId())) {
89 } else if (transcoder != null && !transcoder.getId().equals(engineKey.transcoder.getId())) {
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
ITestSummary.java 26 public int getId();
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Encoder.java 30 String getId();
ResourceDecoder.java 44 String getId();
Transformation.java 42 String getId();
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
DataFetcher.java 57 String getId();
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Endpoint.java 50 public long getId();
  /libcore/luni/src/main/java/java/security/cert/
Extension.java 44 String getId();
  /frameworks/support/v4/ics/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompatIcs.java 36 public static String getId(AccessibilityServiceInfo info) {
37 return info.getId();
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Statistics.java 137 assert shader.getId() >= 1;
139 if (!shadersUsed.contains(shader.getId()))
140 shadersUsed.add(shader.getId());
160 assert image.getId() >= 1;
162 if (!texturesUsed.contains(image.getId()))
163 texturesUsed.add(image.getId());
177 assert fb.getId() >= 1;
179 if (!fbosUsed.contains(fb.getId()))
180 fbosUsed.add(fb.getId());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DigestFactory.java 40 md5.add(PKCSObjectIdentifiers.md5.getId());
44 sha1.add(OIWObjectIdentifiers.idSHA1.getId());
48 sha224.add(NISTObjectIdentifiers.id_sha224.getId());
52 sha256.add(NISTObjectIdentifiers.id_sha256.getId());
56 sha384.add(NISTObjectIdentifiers.id_sha384.getId());
60 sha512.add(NISTObjectIdentifiers.id_sha512.getId());
63 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5);
67 oids.put(OIWObjectIdentifiers.idSHA1.getId(), OIWObjectIdentifiers.idSHA1);
71 oids.put(NISTObjectIdentifiers.id_sha224.getId(), NISTObjectIdentifiers.id_sha224);
75 oids.put(NISTObjectIdentifiers.id_sha256.getId(), NISTObjectIdentifiers.id_sha256)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
ImageVideoWrapperEncoder.java 36 public String getId() {
38 id = streamEncoder.getId() + fileDescriptorEncoder.getId();
  /frameworks/base/core/java/android/printservice/
PrintJob.java 47 mDocument = new PrintDocument(mCachedInfo.getId(), client,
56 public PrintJobId getId() {
58 return mCachedInfo.getId();
78 info = mPrintServiceClient.getPrintJobInfo(mCachedInfo.getId());
80 Log.e(LOG_TAG, "Couldn't get info for job: " + mCachedInfo.getId(), re);
297 return mPrintServiceClient.setPrintJobTag(mCachedInfo.getId(), tag);
299 Log.e(LOG_TAG, "Error setting tag for job: " + mCachedInfo.getId(), re);
362 return (mCachedInfo.getId().equals(other.mCachedInfo.getId()));
367 return mCachedInfo.getId().hashCode()
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
InCallServiceFixture.java 63 if (mCallById.containsKey(call.getId())) {
64 throw new RuntimeException("Call " + call.getId() + " already added");
66 mCallById.put(call.getId(), call);
67 mLatestCallId = call.getId();
72 if (!mCallById.containsKey(call.getId())) {
73 throw new RuntimeException("Call " + call.getId() + " not added yet");
75 mCallById.put(call.getId(), call);
76 mLatestCallId = call.getId();
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
Voicemail.java 34 public long getId();
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedGenerator.java 36 public static final String DATA = CMSObjectIdentifiers.data.getId();
38 public static final String DIGEST_SHA1 = OIWObjectIdentifiers.idSHA1.getId();
39 public static final String DIGEST_SHA224 = NISTObjectIdentifiers.id_sha224.getId();
40 public static final String DIGEST_SHA256 = NISTObjectIdentifiers.id_sha256.getId();
41 public static final String DIGEST_SHA384 = NISTObjectIdentifiers.id_sha384.getId();
42 public static final String DIGEST_SHA512 = NISTObjectIdentifiers.id_sha512.getId();
43 public static final String DIGEST_MD5 = PKCSObjectIdentifiers.md5.getId();
45 // public static final String DIGEST_GOST3411 = CryptoProObjectIdentifiers.gostR3411.getId();
46 // public static final String DIGEST_RIPEMD128 = TeleTrusTObjectIdentifiers.ripemd128.getId();
47 // public static final String DIGEST_RIPEMD160 = TeleTrusTObjectIdentifiers.ripemd160.getId();
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
ResourceTranscoder.java 20 String getId();
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryIdContentPair.java 53 int getId() {

Completed in 884 milliseconds

1 2 3 4 5 6 7 8 91011>>