HomeSort by relevance Sort by last modified time
    Searched refs:SYSTEM (Results 1 - 25 of 279) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
incpath.h 34 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
AnnotationVisibility.java 39 public static final int SYSTEM = 2;
41 private static String[] NAMES = new String[] {"build", "runtime", "system"};
58 if (visibility.equals("system")) {
59 return SYSTEM;
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /packages/apps/TV/src/com/android/tv/util/
Clock.java 21 * An interface through which system clocks can be read. The {@link #SYSTEM} implementation
27 * See {@link System#currentTimeMillis()}.
49 Clock SYSTEM = new Clock() {
52 return System.currentTimeMillis();
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLDocument.java 30 private static final String SYSTEM = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";
48 super(ROOT, PUBID, SYSTEM, encoding, false, writer);
64 super(ROOT, PUBID, SYSTEM, encoding, false, output);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppsQueryHelperTests.java 40 List<String> apps = mAppsQueryHelper.queryApps(0, true, UserHandle.SYSTEM);
43 apps = mAppsQueryHelper.queryApps(0, false, UserHandle.SYSTEM);
49 true, UserHandle.SYSTEM);
53 false, UserHandle.SYSTEM);
59 AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM, true, UserHandle.SYSTEM);
63 AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM, false, UserHandle.SYSTEM);
71 true, UserHandle.SYSTEM);
77 false, UserHandle.SYSTEM);
82 // Test query system IMEs
94 // Test query only system apps required for system use
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOCase.java 41 * The constant for case sensitive regardless of operating system.
46 * The constant for case insensitive regardless of operating system.
51 * The constant for case sensitivity determined by the current operating system.
57 public static final IOCase SYSTEM = new IOCase("System", !FilenameUtils.isSystemWindows());
83 if (IOCase.SYSTEM.name.equals(name)){
84 return IOCase.SYSTEM;
103 * This ensures that the correct flag is set for SYSTEM.
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 31 ( 'SYSTEM' WS sys1=VALUE
32 {say("SYSTEM: " + $sys1.text)}
36 {say("SYSTEM: " + $sys2.text)}
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastBackupAgent.java 52 sendBroadcastAsUser(intent, UserHandle.SYSTEM);
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationUtils.java 19 import static com.android.dx.rop.annotation.AnnotationVisibility.SYSTEM;
92 Annotation result = new Annotation(ANNOTATION_DEFAULT_TYPE, SYSTEM);
106 Annotation result = new Annotation(ENCLOSING_CLASS_TYPE, SYSTEM);
120 Annotation result = new Annotation(ENCLOSING_METHOD_TYPE, SYSTEM);
136 Annotation result = new Annotation(INNER_CLASS_TYPE, SYSTEM);
154 Annotation result = new Annotation(MEMBER_CLASSES_TYPE, SYSTEM);
167 Annotation result = new Annotation(SIGNATURE_TYPE, SYSTEM);
230 Annotation result = new Annotation(THROWS_TYPE, SYSTEM);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationUtils.java 92 Annotation result = new Annotation(ANNOTATION_DEFAULT_TYPE, SYSTEM);
106 Annotation result = new Annotation(ENCLOSING_CLASS_TYPE, SYSTEM);
120 Annotation result = new Annotation(ENCLOSING_METHOD_TYPE, SYSTEM);
136 Annotation result = new Annotation(INNER_CLASS_TYPE, SYSTEM);
155 Annotation result = new Annotation(MEMBER_CLASSES_TYPE, SYSTEM);
168 Annotation result = new Annotation(SIGNATURE_TYPE, SYSTEM);
231 Annotation result = new Annotation(THROWS_TYPE, SYSTEM);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationUtils.java 91 Annotation result = new Annotation(ANNOTATION_DEFAULT_TYPE, SYSTEM);
105 Annotation result = new Annotation(ENCLOSING_CLASS_TYPE, SYSTEM);
119 Annotation result = new Annotation(ENCLOSING_METHOD_TYPE, SYSTEM);
135 Annotation result = new Annotation(INNER_CLASS_TYPE, SYSTEM);
153 Annotation result = new Annotation(MEMBER_CLASSES_TYPE, SYSTEM);
166 Annotation result = new Annotation(SIGNATURE_TYPE, SYSTEM);
229 Annotation result = new Annotation(THROWS_TYPE, SYSTEM);
  /packages/services/Car/service/src/com/android/car/
BootReceiver.java 30 * When system boots up, start car service.
41 context.startServiceAsUser(carServiceintent, UserHandle.SYSTEM);
  /ndk/build/tools/
make-standalone-toolchain.sh 169 SYSTEM=$HOST_TAG
171 SYSTEM=$HOST_TAG32
175 TOOLCHAIN_PATH="$NDK_DIR/toolchains/$TOOLCHAIN_NAME/prebuilt/$SYSTEM"
228 LLVM_TOOLCHAIN_PATH="$NDK_DIR/toolchains/llvm/prebuilt/$SYSTEM"
255 copy_directory "$NDK_DIR/prebuilt/$SYSTEM/include/$PYTHON_xdotx" "$TMPDIR/include/$PYTHON_xdotx"
256 copy_directory "$NDK_DIR/prebuilt/$SYSTEM/lib/$PYTHON_xdotx" "$TMPDIR/lib/$PYTHON_xdotx"
257 copy_file_list "$NDK_DIR/prebuilt/$SYSTEM/bin" "$TMPDIR/bin" "$PYTHON$HOST_EXE" "$PYTHON_x$HOST_EXE" "$PYTHON_xdotx$HOST_EXE"
259 copy_file_list "$NDK_DIR/prebuilt/$SYSTEM/bin" "$TMPDIR/bin" lib$PYTHON_xdotx.dll
264 copy_file_list "$NDK_DIR/prebuilt/$SYSTEM/bin" "$TMPDIR/bin" "yasm$HOST_EXE"
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/
XMLFormatter.java 37 private static final String SYSTEM = "report.dtd";
62 final XMLElement root = new XMLDocument("report", PUBID, SYSTEM,
  /frameworks/base/services/core/java/com/android/server/firewall/
SenderFilter.java 36 private static final String VAL_SYSTEM = "system";
37 private static final String VAL_SYSTEM_OR_SIGNATURE = "system|signature";
67 return SYSTEM;
88 private static final Filter SYSTEM = new Filter() {
109 // This checks whether the caller is either the system process, or has the same user id
  /packages/apps/Settings/src/com/android/settings/
RemoteBugreportActivity.java 89 UserHandle.SYSTEM, android.Manifest.permission.DUMP);
100 UserHandle.SYSTEM, android.Manifest.permission.DUMP);
  /external/libbrillo/brillo/dbus/
dbus_connection.cc 38 options.bus_type = dbus::Bus::SYSTEM;
47 LOG(WARNING) << "Failed to get system bus.";
53 LOG(ERROR) << "Failed to get system bus after " << timeout.InSeconds()
  /external/libpng/contrib/gregbook/
makevms.com 40 $ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").eqs.""
43 $ if f$search("SYS$SYSTEM:VAXC.EXE").eqs.""
  /external/libpng/contrib/pngminus/
makevms.com 15 $ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").eqs.""
18 $ if f$search("SYS$SYSTEM:VAXC.EXE").eqs.""
  /frameworks/base/packages/Shell/src/com/android/shell/
RemoteBugreportReceiver.java 64 context.sendBroadcastAsUser(newIntent, UserHandle.SYSTEM,
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/
ExtensionFileComparator.java 32 * system dependant case sensitive way. A number of singleton instances
69 /** System sensitive extension comparator instance (see {@link IOCase#SYSTEM}) */
70 public static final Comparator<File> EXTENSION_SYSTEM_COMPARATOR = new ExtensionFileComparator(IOCase.SYSTEM);
72 /** Reverse system sensitive path comparator instance (see {@link IOCase#SYSTEM}) */
NameFileComparator.java 30 * system dependant case sensitive way. A number of singleton instances
66 /** System sensitive name comparator instance (see {@link IOCase#SYSTEM}) */
67 public static final Comparator<File> NAME_SYSTEM_COMPARATOR = new NameFileComparator(IOCase.SYSTEM);
69 /** Reverse system sensitive name comparator instance (see {@link IOCase#SYSTEM}) */

Completed in 702 milliseconds

1 2 3 4 5 6 7 8 91011>>