HomeSort by relevance Sort by last modified time
    Searched refs:mName (Results 26 - 50 of 2247) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
IndexBundle.java 35 private String mName;
45 mName = name;
52 return mName;
74 if (mName.startsWith(DEFAULT_PREFIX)) {
75 if (!other.mName.startsWith(DEFAULT_PREFIX)) {
78 } else if (other.mName.startsWith(DEFAULT_PREFIX)) {
80 } else if (!mName.equals(other.mName)) {
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
StringResource.java 20 public final String mName;
25 mName = name;
  /system/chre/util/include/chre/util/
scope_timer_impl.h 25 : mName(name), mStartTime(SystemTime::getMonotonicTime()) {}
30 mName, (stopTime - mStartTime).toRawNanoseconds());
  /packages/apps/Email/src/com/android/email/
StopWatch.java 38 private final String mName;
43 mName = name;
46 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") start");
56 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") split(" + label + ") " + elapse);
62 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") stop: "
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
PropertyInfo.java 24 public final String mName;
30 mName = VehicleProperty.toString(mPropId);
35 return mName;
53 return mName.compareTo(propertyInfo.mName);
  /frameworks/base/core/java/android/bluetooth/
BluetoothHealthAppConfiguration.java 30 private final String mName;
43 mName = name;
59 mName = name;
70 if (mName == null) return false;
72 return mName.equals(config.getName()) && mDataType == config.getDataType()
81 result = 31 * result + (mName != null ? mName.hashCode() : 0);
90 return "BluetoothHealthAppConfiguration [mName = " + mName + ",mDataType = " + mDataType
114 return mName;
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
FieldInfo.java 23 private String mName;
35 mName = name;
45 mNameAndType = mName + ":" + TypeUtils.typeToDescriptor(mType);
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
InputSource.h 35 : mName(name),
45 const std::string &getName() const { return mName; }
78 std::string mName; /**< Unique literal Identifier of a policy base element*/
Strategy.h 35 : mName(name),
45 const std::string &getName() const { return mName; }
78 std::string mName; /**< Unique literal Identifier of a policy base element*/
Stream.h 36 : mName(name),
46 const std::string &getName() const { return mName; }
79 std::string mName; /**< Unique literal Identifier of a policy base element*/
Usage.h 35 : mName(name),
45 const std::string &getName() const { return mName; }
78 std::string mName; /**< Unique literal Identifier of a policy base element*/
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanProperties.java 33 private final String mName;
37 mName = name;
43 return mName;
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
InjectedField.java 29 private final String mName;
32 mName = name;
43 return mName;
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
HeaderItem.java 25 private final String mName;
34 mName = name;
55 return mName;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
PriorityThreadFactory.java 31 private final String mName;
34 mName = name;
40 return new Thread(r, mName + '-' + mNumber.getAndIncrement()) {
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
AhatHeap.java 27 private String mName;
34 mName = name;
43 mName = name;
76 return mName;
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Table.java 30 public final String mName;
34 mName = name;
39 return mName;
53 return "CREATE TABLE IF NOT EXISTS " + mName + " " + mEntity.createEntitySql();
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
Item.java 48 private final String mName;
53 mName = name;
59 return mName.hashCode() + mFileName.hashCode();
67 return mName;
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
Item.java 48 private final String mName;
53 mName = name;
59 return mName.hashCode() + mFileName.hashCode();
67 return mName;
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
Item.java 48 private final String mName;
53 mName = name;
59 return mName.hashCode() + mFileName.hashCode();
67 return mName;
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockTask.java 25 private final String mName;
30 mName = name;
35 return mName;
55 return mName + mId;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
MailObservable.java 28 private final String mName;
31 mName = name;
39 mName, observer, count, mObservers.size());
47 mName, observer, count, mObservers.size());
  /system/libvintf/
HalInterface.cpp 26 if (lft.mName != rgt.mName) return false;
34 if (!func(mName, instance, false /* isRegex */)) {
39 if (!func(mName, instance, true /* isRegex */)) {
  /system/libvintf/include/vintf/
HalInterface.h 33 : mName(std::move(name)), mInstances(std::move(instances)) {}
35 : mName(name), mInstances(instances) {}
48 const std::string& name() const { return mName; }
54 std::string mName;
  /packages/apps/TV/src/com/android/tv/util/
RecurringRunner.java 44 private final String mName;
53 mName = runnable.getClass().getCanonicalName();
54 if (DEBUG) Log.i(TAG, " Delaying " + mName + " " + (intervalMs / 1000.0) + " seconds");
59 SoftPreconditions.checkState(!mRunning, TAG, mName + " start is called twice.");
98 if (DEBUG) Log.i(TAG, "Next run of " + mName + " at " + new Date(next));
106 if (DEBUG) Log.i(TAG, "Starting " + mName);
109 Log.w(TAG, "Error running " + mName, e);
116 Log.w(TAG, "Scheduling a future run of " + mName + " at " + new Date(next) + "failed");
118 if (DEBUG) Log.i(TAG, "Actual delay of " + mName + " is " + (delay / 1000.0) + " seconds.");
130 long next = getSharedPreferences().getLong(mName, System.currentTimeMillis())
    [all...]

Completed in 624 milliseconds

12 3 4 5 6 7 8 91011>>