HomeSort by relevance Sort by last modified time
    Searched defs:System (Results 801 - 825 of 839) sorted by null

<<31323334

  /dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java 214 assertEquals(System.identityHashCode(instance), method.invoke(instance));
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToStream.java 116 * The system line separator for writing out line breaks.
117 * The default value is from the system property,
125 * True if the the system line separator is to be used.
375 * Output a system-dependent line break.
451 System.out.println(msg);
452 System.out.println(msg2);
455 System.out.println(msg);
456 System.out.println(msg2);
740 System.out.println(
903 * @param systemId The declared system identifier of the entity
    [all...]
  /external/doclava/src/com/google/doclava/
InfoBuilder.java 97 System.out.println(mPackage.name() + "\n");
106 System.out.println(value);
109 System.out.println();
113 System.out.print("Class: " + cl.toString());
117 System.out.println();
119 System.out.println(cl.comment().mText);
122 System.out.println("\nAnnotations:");
127 System.out.print("Superclass: " + cl.superclass().qualifiedName());
129 System.out.println();
133 System.out.println("\nInterfaces Implemented:")
    [all...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 141 //System.out.println ("[state: " + state + "] av = " + av);
718 System.arraycopy (args, start, m_freeArgs, 0, m_freeArgs.length);
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 351 System.arraycopy(p.mSignatures, 0, pi.signatures, 0, N);
403 // We expect to have non-.apk files in the system dir,
507 // If this package comes from the system image, then we
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 783 System.arraycopy(mDistances, j, mDistances, j + nCodes,
785 System.arraycopy(allKeys, j, allKeys, j + nCodes,
    [all...]
  /frameworks/base/core/java/android/view/
MotionEvent.java 36 * For example, when the user first touches the screen, the system delivers a touch
96 * System.out.printf("At time %d:", ev.getHistoricalEventTime(h));
98 * System.out.printf(" pointer %d: (%f,%f)",
102 * System.out.printf("At time %d:", ev.getEventTime());
104 * System.out.printf(" pointer %d: (%f,%f)",
394 * Private flag that indicates when the system has detected that this motion event
    [all...]
View.java     [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 193 // System setting property AIRPLANE_MODE_ON is set in Settings.
194 int airplaneMode = Settings.System.getInt(cr, Settings.System.AIRPLANE_MODE_ON, 0);
198 Settings.System.getUriFor(Settings.System.AUTO_TIME), true,
201 Settings.System.getUriFor(Settings.System.AUTO_TIME_ZONE), true,
544 int systemIsInPrl = 0; //[11] Indicates if current system is in PRL
603 // list of ERIs for home system, mCdmaRoaming is true.
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 210 // system setting property AIRPLANE_MODE_ON is set in Settings.
211 int airplaneMode = Settings.System.getInt(
213 Settings.System.AIRPLANE_MODE_ON, 0);
218 Settings.System.getUriFor(Settings.System.AUTO_TIME), true,
221 Settings.System.getUriFor(Settings.System.AUTO_TIME_ZONE), true,
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 650 String now = Long.toString(System.currentTimeMillis());
    [all...]
  /packages/apps/Camera/src/com/android/camera/panorama/
PanoramaActivity.java 104 private static final String VIDEO_RECORD_SOUND = "/system/media/audio/ui/VideoRecord.ogg";
543 mTimeTaken = System.currentTimeMillis();
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 420 System.out.println("resolver = null");
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java 486 System.arraycopy(CONTENT_AS_BYTES, 0, expectedResult, 0, POSITION);
487 System.arraycopy(CONTENT_AS_BYTES, 0, expectedResult, POSITION,
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 307 long startTime = System.currentTimeMillis();
338 timeToWait = System.currentTimeMillis() - startTime;
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManagerService.java 69 * A system service that provides account, password, and authtoken management for all
176 * This should only be called by system code. One should only call this after the service
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 548 System.arraycopy(a, 0, result, 0, a.length);
549 System.arraycopy(b, 0, result, a.length, b.length);
    [all...]
AbsListView.java 157 * Regular layout - usually an unsolicited layout from the view system
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 755 mWindowAnimationScale = Settings.System.getFloat(context.getContentResolver(),
756 Settings.System.WINDOW_ANIMATION_SCALE, mWindowAnimationScale);
757 mTransitionAnimationScale = Settings.System.getFloat(context.getContentResolver(),
758 Settings.System.TRANSITION_ANIMATION_SCALE, mTransitionAnimationScale);
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java 52 * The Settings provider contains global system-level device preferences.
59 * Activity Action: Show system settings.
435 * Activity Action: Show settings for system update functionality.
588 * @hide - Private call() method on SettingsProvider to read from 'system' table.
755 * System settings, containing miscellaneous system preferences. This
759 public static final class System extends NameValueTable {
811 Log.w(TAG, "Setting " + name + " has moved from android.provider.Settings.System"
831 Log.w(TAG, "Setting " + name + " has moved from android.provider.Settings.System"
846 Log.w(TAG, "Setting " + name + " has moved from android.provider.Settings.System"
    [all...]
  /frameworks/base/services/java/com/android/server/
PowerManagerService.java 60 import static android.provider.Settings.System.DIM_SCREEN;
61 import static android.provider.Settings.System.SCREEN_BRIGHTNESS;
62 import static android.provider.Settings.System.SCREEN_BRIGHTNESS_MODE;
63 import static android.provider.Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC;
64 import static android.provider.Settings.System.SCREEN_OFF_TIMEOUT;
65 import static android.provider.Settings.System.STAY_ON_WHILE_PLUGGED_IN;
66 import static android.provider.Settings.System.WINDOW_ANIMATION_SCALE;
67 import static android.provider.Settings.System.TRANSITION_ANIMATION_SCALE;
420 Settings.System.putInt(mContext.getContentResolver(),
421 Settings.System.STAY_ON_WHILE_PLUGGED_IN, val)
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiService.java     [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 719 long now = System.currentTimeMillis();
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java 246 // This is the object monitoring the system app dir.
249 // This is the object monitoring the system app dir.
354 // Broadcast actions that are only available to the system.
    [all...]
  /frameworks/ex/common/java/com/android/ex/editstyledtext/
EditStyledText.java     [all...]

Completed in 2009 milliseconds

<<31323334