HomeSort by relevance Sort by last modified time
    Searched defs:Constants (Results 26 - 50 of 150) sorted by null

12 3 4 5 6

  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/timer/util/
Constants.java 21 /** Used to hold constants. */
22 public final class Constants {
40 private Constants() {
  /development/samples/wearable/AgendaData/Wearable/src/main/java/com/example/android/wearable/agendadata/
Constants.java 19 /** Constants used in wearable app. */
20 public final class Constants {
22 private Constants() {
  /development/samples/wearable/Geofencing/Wearable/src/main/java/com/example/android/wearable/geofencing/
Constants.java 19 /** Constants used in wearable app. */
20 public final class Constants {
22 private Constants() {
  /development/samples/wearable/SynchronizedNotifications/Common/src/main/java/com/example/android/wearable/synchronizednotifications/common/
Constants.java 20 * Constants that are used in both the Application and the Wearable modules.
22 public final class Constants {
24 private Constants() {};
  /development/samples/wearable/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
Constants.java 21 /** Used to hold constants. */
22 public final class Constants {
40 private Constants() {
  /external/smack/src/org/apache/qpid/management/common/sasl/
Constants.java 24 public class Constants
  /developers/samples/android/wearable/wear/AgendaData/Application/src/main/java/com/example/android/agendadata/
Constants.java 19 /** Constants used in companion app. */
20 public final class Constants {
21 private Constants() {
  /developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/quiz/
Constants.java 19 /** Constants used in the companion app. */
20 public final class Constants {
21 private Constants() {
  /developers/samples/android/wearable/wear/Quiz/Wearable/src/main/java/com/example/android/quiz/
Constants.java 19 /** Constants used in the wearable app. */
20 public final class Constants {
21 private Constants() {
  /development/samples/wearable/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
Constants.java 19 /** Constants used in companion app. */
20 public final class Constants {
21 private Constants() {
  /development/samples/wearable/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
Constants.java 19 /** Constants used in the companion app. */
20 public final class Constants {
21 private Constants() {
  /development/samples/wearable/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
Constants.java 19 /** Constants used in the wearable app. */
20 public final class Constants {
21 private Constants() {
  /packages/services/Telephony/src/com/android/phone/
Constants.java 20 * App-wide constants and enums for the phone app.
22 * Any constants that need to be shared between two or more classes within
23 * the com.android.phone package should be defined here. (Constants that
26 public class Constants {
128 // TODO: Move all the various EXTRA_* and intent action constants here too.
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/recipeassistant/
Constants.java 19 public final class Constants {
20 private Constants() {
  /development/samples/training/threadsample/src/com/example/android/threadsample/
Constants.java 23 * Constants used by multiple classes in this package
25 public final class Constants {
  /development/samples/wearable/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Constants.java 19 public final class Constants {
20 private Constants() {
  /external/apache-xml/src/main/java/org/apache/xml/utils/
Constants.java 19 * $Id: Constants.java 468655 2006-10-28 07:12:06Z minchau $
24 * Primary constants used by the XSLT Processor
27 public class Constants
  /external/chromium_org/chrome/browser/resources/net_internals/
main.js 6 * Dictionary of constants (Initialized soon after loading by data from browser,
26 * Dictionary of all constants, used for saving log files.
28 var Constants = null;
61 // This must be the first constants observer, so other constants observers
63 // the constants themselves.
291 * Loads all constants from |constants|. On failure, global dictionaries are
293 * @param {Object} receivedConstants The map of received constants.
299 Constants = receivedConstants
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 12 /// constant pool to keep track of constants referenced by a function.
124 /// The MachineConstantPool class keeps track of constants referenced by a
125 /// function which must be spilled to memory. This is used for constants which
127 /// include floating point and large integer constants.
129 /// Instructions reference the address of these constant pool constants through
137 std::vector<MachineConstantPoolEntry> Constants; ///< The pool of constants.
158 /// isEmpty - Return true if this constant pool contains no constants.
159 bool isEmpty() const { return Constants.empty(); }
162 return Constants;
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerDyn.h 60 class Constants { // stores the filter constants.
62 Constants() :
110 void createKaiserFir(Constants &c, double stopBandAtten,
122 Constants mConstants; // current set of coefficient parameters
AudioResamplerSinc.h 80 struct Constants {
90 static Constants highQualityConstants;
91 static Constants veryHighQualityConstants;
92 const Constants *mConstants; // points to appropriate set of coefficient parameters
  /developers/build/prebuilts/gradle/SynchronizedNotifications/Application/src/main/java/com/example/android/synchronizednotifications/
SynchronizedNotificationsFragment.java 34 import com.example.android.synchronizednotifications.common.Constants;
83 Constants.PHONE_ONLY_ID, false);
87 Constants.WATCH_ONLY_PATH);
111 Intent dismissIntent = new Intent(Constants.ACTION_DISMISS);
112 dismissIntent.putExtra(Constants.KEY_NOTIFICATION_ID, Constants.BOTH_ID);
127 putDataMapRequest.getDataMap().putString(Constants.KEY_CONTENT, content);
128 putDataMapRequest.getDataMap().putString(Constants.KEY_TITLE, title);
158 buildWearableOnlyNotification(watchTitle, content, Constants.BOTH_PATH);
161 buildLocalOnlyNotification(phoneTitle, content, Constants.BOTH_ID, true)
    [all...]
  /developers/samples/android/wearable/wear/SynchronizedNotifications/Application/src/main/java/com/example/android/synchronizednotifications/
SynchronizedNotificationsFragment.java 34 import com.example.android.synchronizednotifications.common.Constants;
83 Constants.PHONE_ONLY_ID, false);
87 Constants.WATCH_ONLY_PATH);
111 Intent dismissIntent = new Intent(Constants.ACTION_DISMISS);
112 dismissIntent.putExtra(Constants.KEY_NOTIFICATION_ID, Constants.BOTH_ID);
127 putDataMapRequest.getDataMap().putString(Constants.KEY_CONTENT, content);
128 putDataMapRequest.getDataMap().putString(Constants.KEY_TITLE, title);
158 buildWearableOnlyNotification(watchTitle, content, Constants.BOTH_PATH);
161 buildLocalOnlyNotification(phoneTitle, content, Constants.BOTH_ID, true)
    [all...]
  /development/samples/wearable/SynchronizedNotifications/Application/src/main/java/com/example/android/wearable/synchronizednotifications/
PhoneActivity.java 28 import com.example.android.wearable.synchronizednotifications.common.Constants;
86 Intent dismissIntent = new Intent(Constants.ACTION_DISMISS);
87 dismissIntent.putExtra(Constants.KEY_NOTIFICATION_ID, Constants.BOTH_ID);
102 putDataMapRequest.getDataMap().putString(Constants.KEY_CONTENT, content);
103 putDataMapRequest.getDataMap().putString(Constants.KEY_TITLE, title);
133 buildWearableOnlyNotification(watchTitle, content, Constants.BOTH_PATH);
136 buildLocalOnlyNotification(phoneTitle, content, Constants.BOTH_ID, true);
181 Constants.PHONE_ONLY_ID, false);
185 Constants.WATCH_ONLY_PATH)
    [all...]
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/geofencing/
Constants.java 23 /** Constants used in companion app. */
24 public final class Constants {
26 private Constants() {
53 // The constants below are less interesting than those above.

Completed in 1092 milliseconds

12 3 4 5 6