HomeSort by relevance Sort by last modified time
    Searched refs:Constants (Results 51 - 75 of 804) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/samples/browseable/Geofencing/Wearable/src/com.example.android.wearable.geofencing/
Constants.java 19 /** Constants used in wearable app. */
20 public final class Constants {
22 private Constants() {
  /development/samples/browseable/SynchronizedNotifications/Shared/src/com.example.android.wearable.synchronizednotifications.common/
Constants.java 19 * Constants that are used in both the Application and the Wearable modules.
21 public final class Constants {
23 private Constants() {};
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/util/
Constants.java 21 /** Used to hold constants. */
22 public final class Constants {
40 private Constants() {
  /frameworks/base/core/java/android/os/health/
PackageHealthStats.java 48 public static final HealthKeys.Constants CONSTANTS
49 = new HealthKeys.Constants(PackageHealthStats.class);
ServiceHealthStats.java 49 public static final HealthKeys.Constants CONSTANTS
50 = new HealthKeys.Constants(ServiceHealthStats.class);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
BroadcastNotifier.java 53 localIntent.setAction(Constants.BROADCAST_ACTION);
56 localIntent.putExtra(Constants.EXTENDED_DATA_STATUS, status);
75 localIntent.setAction(Constants.BROADCAST_ACTION);
77 localIntent.putExtra(Constants.EXTENDED_DATA_STATUS, -1);
80 localIntent.putExtra(Constants.EXTENDED_STATUS_LOG, logData);
DisplayActivity.java 147 outState.putBoolean(Constants.EXTENDED_FULLSCREEN, mFullScreen);
179 Constants.BROADCAST_ACTION);
198 Constants.ACTION_VIEW_IMAGE);
209 displayerIntentFilter = new IntentFilter(Constants.ACTION_ZOOM_IMAGE);
247 new PhotoThumbnailFragment(), Constants.THUMBNAIL_FRAGMENT_TAG);
256 mFullScreen = stateBundle.getBoolean(Constants.EXTENDED_FULLSCREEN);
324 switch (intent.getIntExtra(Constants.EXTENDED_DATA_STATUS,
325 Constants.STATE_ACTION_COMPLETE)) {
328 case Constants.STATE_ACTION_STARTED:
329 if (Constants.LOGD)
    [all...]
  /frameworks/base/packages/Osu/src/com/android/anqp/
I18Name.java 9 import static com.android.anqp.Constants.BYTE_MASK;
21 if (payload.remaining() < Constants.LANG_CODE_LENGTH + 1) {
25 if (nameLength < Constants.LANG_CODE_LENGTH) {
28 mLanguage = Constants.getTrimmedString(payload,
29 Constants.LANG_CODE_LENGTH, StandardCharsets.US_ASCII);
31 mText = Constants.getString(payload, nameLength -
32 Constants.LANG_CODE_LENGTH, StandardCharsets.UTF_8);
36 if (compoundString.length() < Constants.LANG_CODE_LENGTH) {
39 mLanguage = compoundString.substring(0, Constants.LANG_CODE_LENGTH);
40 mText = compoundString.substring(Constants.LANG_CODE_LENGTH)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
I18Name.java 3 import static com.android.server.wifi.anqp.Constants.BYTE_MASK;
21 if (payload.remaining() < Constants.LANG_CODE_LENGTH + 1) {
25 if (nameLength < Constants.LANG_CODE_LENGTH) {
28 mLanguage = Constants.getTrimmedString(payload,
29 Constants.LANG_CODE_LENGTH, StandardCharsets.US_ASCII);
31 mText = Constants.getString(payload, nameLength -
32 Constants.LANG_CODE_LENGTH, StandardCharsets.UTF_8);
36 if (compoundString.length() < Constants.LANG_CODE_LENGTH) {
39 mLanguage = compoundString.substring(0, Constants.LANG_CODE_LENGTH);
40 mText = compoundString.substring(Constants.LANG_CODE_LENGTH)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemText.java 102 * Constants class.
103 * @see org.apache.xalan.templates.Constants
107 return Constants.ELEMNAME_TEXT;
117 return Constants.ELEMNAME_TEXT_STRING;
136 case Constants.ELEMNAME_TEXTLITERALRESULT :
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_remove_constants.c 69 struct rc_constant *constants = c->Program.Constants.Constants; local
73 if (!c->Program.Constants.Count) {
78 const_used = malloc(c->Program.Constants.Count);
79 memset(const_used, 0, c->Program.Constants.Count);
84 /* Pass 1: Mark used constants. */
93 for (unsigned i = 0; i < c->Program.Constants.Count; i++)
94 if (constants[i].Type == RC_CONSTANT_EXTERNAL)
98 /* Pass 3: Make the remapping table and remap constants
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
TypeUtils.java 48 return (Constants.ACC_FINAL & access) != 0;
52 return (Constants.ACC_STATIC & access) != 0;
56 return (Constants.ACC_PROTECTED & access) != 0;
60 return (Constants.ACC_PUBLIC & access) != 0;
64 return (Constants.ACC_ABSTRACT & access) != 0;
68 return (Constants.ACC_INTERFACE & access) != 0;
72 return (Constants.ACC_PRIVATE & access) != 0;
76 return (Constants.ACC_SYNTHETIC & access) != 0;
201 return new Signature(Constants.CONSTRUCTOR_NAME, sb.toString());
246 return Constants.TYPE_CHARACTER
    [all...]
CodeEmitter.java 44 public static final int ADD = Constants.IADD;
45 public static final int MUL = Constants.IMUL;
46 public static final int XOR = Constants.IXOR;
47 public static final int USHR = Constants.IUSHR;
48 public static final int SUB = Constants.ISUB;
49 public static final int DIV = Constants.IDIV;
50 public static final int NEG = Constants.INEG;
51 public static final int REM = Constants.IREM;
52 public static final int AND = Constants.IAND;
53 public static final int OR = Constants.IOR
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsDictionaryUtils.java 19 import com.android.inputmethod.latin.common.Constants;
37 if (cp != Constants.CODE_DASH && cp != Constants.CODE_SINGLE_QUOTE
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Constants.cs 40 /// Global constants
42 internal sealed class Constants
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
ProgramGuideTest.java 25 import com.android.tv.testing.uihelper.Constants;
37 Until.hasObject(Constants.PROGRAM_GUIDE));
39 assertWaitForCondition(mDevice, Until.gone(Constants.PROGRAM_GUIDE));
40 assertHas(mDevice, Constants.MENU, false);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/customizer/
DevanagariCustomizer.java 20 import com.android.inputmethod.latin.common.Constants;
40 "\u0915\u0916\u0917", Constants.CODE_SWITCH_ALPHA_SYMBOL);
46 Constants.CODE_SWITCH_ALPHA_SYMBOL);
48 Constants.CODE_SHIFT);
  /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/build/prebuilts/gradle/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() {
  /developers/build/prebuilts/gradle/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() {
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Constants.java 19 public final class Constants {
20 private Constants() {
  /developers/build/prebuilts/gradle/RuntimePermissionsWear/Shared/src/main/java/com/example/android/wearable/runtimepermissions/common/
Constants.java 22 * A collection of constants that is shared between the wearable and handset apps.
24 public class Constants {
50 private Constants() {}
  /developers/samples/android/wearable/wear/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() {
  /developers/samples/android/wearable/wear/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() {
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Constants.java 19 public final class Constants {
20 private Constants() {

Completed in 635 milliseconds

1 23 4 5 6 7 8 91011>>