HomeSort by relevance Sort by last modified time
    Searched defs:CURRENT (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceVersion.java 22 public static final int CURRENT = L_PLATFORM;
  /hardware/google/av/codec2/include/
C2Component.h 39 CURRENT, ///< query currently possible values given dependent settings
53 Current(const C2ParamField &field_) {
54 return C2FieldSupportedValuesQuery(field_, CURRENT);
508 /// queued work and complete the current stream. If new input is received, it shall start
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
OperatorInfo.java 29 CURRENT,
95 } else if (s.equals("current")) {
96 return State.CURRENT;
  /frameworks/compile/slang/
slang_version.h 116 CURRENT = N_STRUCT_EXPLICIT_PADDING
  /hardware/google/av/codec2/hidl/1.0/utils/
Configurable.cpp 147 C2FieldSupportedValuesQuery::CURRENT);
  /tools/loganalysis/tests/src/com/android/loganalysis/util/config/
OptionUpdateRuleTest.java 26 private static final Object CURRENT = "5 current value";
33 assertEquals(CURRENT, OptionUpdateRule.FIRST.update(OPTION_NAME, CURRENT, UPDATE));
38 assertEquals(UPDATE, OptionUpdateRule.LAST.update(OPTION_NAME, CURRENT, UPDATE));
44 assertEquals(CURRENT, OptionUpdateRule.GREATEST.update(OPTION_NAME, CURRENT, SMALL_UPDATE));
46 BIG_UPDATE, OptionUpdateRule.GREATEST.update(OPTION_NAME, CURRENT, BIG_UPDATE));
52 SMALL_UPDATE, OptionUpdateRule.LEAST.update(OPTION_NAME, CURRENT, SMALL_UPDATE));
53 assertEquals(CURRENT, OptionUpdateRule.LEAST.update(OPTION_NAME, CURRENT, BIG_UPDATE))
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/config/
OptionUpdateRuleTest.java 26 private static final Object CURRENT = "5 current value";
33 assertFalse(OptionUpdateRule.FIRST.shouldUpdate(OPTION_NAME, CURRENT, UPDATE));
38 assertTrue(OptionUpdateRule.LAST.shouldUpdate(OPTION_NAME, CURRENT, UPDATE));
43 assertFalse(OptionUpdateRule.GREATEST.shouldUpdate(OPTION_NAME, CURRENT, SMALL_UPDATE));
44 assertTrue(OptionUpdateRule.GREATEST.shouldUpdate(OPTION_NAME, CURRENT, BIG_UPDATE));
49 assertTrue(OptionUpdateRule.LEAST.shouldUpdate(OPTION_NAME, CURRENT, SMALL_UPDATE));
50 assertFalse(OptionUpdateRule.LEAST.shouldUpdate(OPTION_NAME, CURRENT, BIG_UPDATE));
56 OptionUpdateRule.IMMUTABLE.shouldUpdate(OPTION_NAME, CURRENT, UPDATE);
  /external/guava/guava/src/com/google/common/reflect/
Types.java 63 return JavaVersion.CURRENT.typeName(from);
83 return JavaVersion.CURRENT.newArrayType(componentType);
237 this.componentType = JavaVersion.CURRENT.usedInGenericType(componentType);
278 this.argumentsList = JavaVersion.CURRENT.usedInGenericType(typeArguments);
296 builder.append(JavaVersion.CURRENT.typeName(ownerType)).append('.');
464 this.lowerBounds = JavaVersion.CURRENT.usedInGenericType(lowerBounds);
465 this.upperBounds = JavaVersion.CURRENT.usedInGenericType(upperBounds);
492 builder.append(" super ").append(JavaVersion.CURRENT.typeName(lowerBound));
495 builder.append(" extends ").append(JavaVersion.CURRENT.typeName(upperBound));
582 static final JavaVersion CURRENT;
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
ParserConfiguration.java 51 CURRENT(new Java8Validator(), null),
95 private LanguageLevel languageLevel = CURRENT;
  /frameworks/base/core/java/android/os/
UserHandle.java 46 /** @hide A user handle to indicate the current user of the device */
47 public static final UserHandle CURRENT = new UserHandle(USER_CURRENT);
49 /** @hide A user id to indicate that we would like to send to the current
54 /** @hide A user handle to indicate that we would like to send to the current
345 } else if ("current".equals(arg) || "cur".equals(arg)) {
358 * Returns the user id of the current process
359 * @return user id of the current process
  /external/python/cpython2/Lib/lib-tk/
Tkconstants.py 65 CURRENT='current'
  /external/python/cpython3/Lib/tkinter/
constants.py 65 CURRENT='current'
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkconstants.py 65 CURRENT='current'
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 65 CURRENT='current'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 65 CURRENT='current'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 65 CURRENT='current'
  /packages/apps/Messaging/src/com/android/messaging/sms/
BugleApnSettingsLoader.java 142 CURRENT_NULL_VALUE.putNull(Telephony.Carriers.CURRENT);
144 CURRENT_SET_VALUE.put(Telephony.Carriers.CURRENT, "1"); // 1 for auto selected APN
146 private static final String CLEAR_UPDATE_SELECTION = Telephony.Carriers.CURRENT + " =?";
159 * @param current the value of CURRENT column in database
164 final long rowId, final int current) {
177 return new DatabaseApn(apns, base, rowId, current);
186 final int current) {
190 mCurrent = current;
237 * Try to set the APN to be CURRENT in its database tabl
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApnSettingsActivity.java 135 sCurrentNullMap.putNull(Telephony.Carriers.CURRENT);
138 sCurrentSetMap.put(Telephony.Carriers.CURRENT, "2"); // 2 for user-selected APN,
322 // current=2 means user selected APN
323 private static final String UPDATE_SELECTION = Telephony.Carriers.CURRENT + " =?";
332 // null out the previous "current=2" APN
336 // set the new "current" APN (2)
  /external/libxml2/
pattern.c 179 const xmlChar *cur; /* the current char being parsed */
184 xmlNodePtr elem; /* the current node if any */
725 #define CURRENT (*ctxt->cur)
    [all...]
xpointer.c 108 /* cleanup current last error */
854 * CUR_PTR return the current pointer to the xmlChar to be parsed.
855 * CUR returns the current xmlChar value, i.e. a 8 bit value
864 * CURRENT Returns the current char value, with the full decoding of
868 * It returns the pointer to the current xmlChar.
879 #define CURRENT (*ctxt->cur)
887 * Move the current node of the nodeset on the stack to the
    [all...]
xpath.c 709 /* cleanup current last error */
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 137 final int CURRENT = 0;
188 * Set to {@link #EXTRA_GOTO_TODAY} if this is a user request to go to the current time.
279 * the supplied context. It is best to pass in the current Activity.
322 // The current use of this method for VIEW_EVENT is by the day view to show an EventInfo
371 info.viewType = ViewType.CURRENT;
454 } else if (event.viewType == ViewType.CURRENT) {
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 53 * Current Version of the Backup Serializer.
240 public static final int CURRENT = 0;
246 public static final String[] strings = { "current", "disabled", "enabled" };
261 * The current status of this network configuration entry.
297 * operating country code and current radio conditions.
471 * The value is not guaranteed to be set or current (Although it SHOULDNT change once set)
970 * This constant indicates the current configuration has connect choice set
975 * This constant indicates the current configuration does not have connect choice set
    [all...]
  /frameworks/base/telephony/java/android/provider/
Telephony.java 806 * user whether they want to replace the current default
    [all...]
  /external/guice/lib/build/
cglib-3.1.jar 

Completed in 1358 milliseconds

1 2 3 4 5 6 7