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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
libstdcxx_pair_swap_hack.cpp 7 // The same problem afflicts a bunch of other class templates. Those
30 template<typename A, typename B> struct CLASS {
32 void swap(CLASS &other) noexcept(noexcept(do_swap(member, other.member)));
36 void swap(CLASS &other) noexcept(noexcept(swap(member, other.member)));
53 using PX = std::CLASS<X, X>;
54 using PI = std::CLASS<int, int>;
65 template<typename A, typename B> struct CLASS {
66 void swap(CLASS &other) noexcept(noexcept(swap(*this, other))); // expected-error {{too many arguments}} expected-note {{declared here}}
69 CLASS<int, int> pi;
  /libcore/ojluni/src/main/java/java/lang/annotation/
RetentionPolicy.java 44 * Annotations are to be recorded in the class file by the compiler
48 CLASS,
51 * Annotations are to be recorded in the class file by the compiler and
  /cts/hostsidetests/inputmethodservice/common/src/android/inputmethodservice/cts/common/
EditTextAppConstants.java 18 public class EditTextAppConstants {
19 // This is constants holding class, can't instantiate.
23 public static final String CLASS = PACKAGE + ".MainActivity";
Ime1Constants.java 19 public final class Ime1Constants {
21 // This is constants holding class, can't instantiate.
25 public static final String CLASS = "android.inputmethodservice.cts.ime1.CtsInputMethod1";
28 public static final String IME_ID = ComponentNameUtils.buildComponentName(PACKAGE, CLASS);
Ime2Constants.java 19 public final class Ime2Constants {
21 // This is constants holding class, can't instantiate.
25 public static final String CLASS = "android.inputmethodservice.cts.ime2.CtsInputMethod2";
28 public static final String IME_ID = ComponentNameUtils.buildComponentName(PACKAGE, CLASS);
EventProviderConstants.java 22 public final class EventProviderConstants {
24 // This is constants holding class, can't instantiate.
30 /** Class name of IME event provider. */
31 public static final String CLASS =
56 public static final class EventTableConstants {
58 // This is constants holding class, can't instantiate.
  /external/turbine/java/com/google/turbine/model/
TurbineTyKind.java 21 CLASS,
  /external/conscrypt/common/src/main/java/org/conscrypt/
EmptyArray.java 21 final class EmptyArray {
30 static final Class<?>[] CLASS = new Class<?>[ 0 ];
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/issue113/com/foo/
Widget.java 19 public class Widget extends com.foo.base.Widget {
22 private static final String CLASS = JAVA_ROOT + "/com/foo/Widget.java";
30 CompilationUnit compilationUnit = JavaParser.parse(new File(CLASS));
33 MethodDeclaration methodDeclaration = compilationUnit.getNodesByType(MethodDeclaration.class).stream()
35 methodDeclaration.getNodesByType(MethodCallExpr.class).forEach(parserFacade::solve);
  /external/turbine/java/com/google/turbine/binder/sym/
Symbol.java 26 CLASS,
  /test/suite_harness/common/util/tests/src/com/android/compatibility/common/util/
TestResultTest.java 24 public class TestResultTest extends TestCase {
26 private static final String CLASS = "android.test.FoorBar";
28 private static final String TEST_1 = String.format("%s#%s", CLASS, METHOD_1);
34 mCase = new CaseResult(CLASS);
CaseResultTest.java 24 public class CaseResultTest extends TestCase {
26 private static final String CLASS = "android.test.FoorBar";
37 mResult = new CaseResult(CLASS);
46 assertEquals("Incorrect case name", CLASS, mResult.getName());
85 CaseResult otherResult = new CaseResult(CLASS);
100 CaseResult otherResult = new CaseResult(CLASS);
114 CaseResult otherResult = new CaseResult(CLASS + "foo");
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostJUnit4Test.java 41 @RunWith(DeviceJUnit4ClassRunner.class)
42 public class SampleHostJUnit4Test implements IDeviceTest {
50 * The class name of the main activity in the APK.
52 private static final String CLASS = "SampleDeviceActivity";
58 "am start -W -a android.intent.action.MAIN -n %s/%s.%s", PACKAGE, PACKAGE, CLASS);
98 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S");
104 if(line.startsWith("I/"+CLASS)) {
SampleHostTest.java 31 public class SampleHostTest extends DeviceTestCase {
39 * The class name of the main activity in the APK.
41 private static final String CLASS = "SampleDeviceActivity";
47 "am start -W -a android.intent.action.MAIN -n %s/%s.%s", PACKAGE, PACKAGE, CLASS);
73 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S");
79 if(line.startsWith("I/"+CLASS)) {
  /cts/tests/jank/src/android/jank/cts/ui/
CtsDeviceJankUi.java 30 public class CtsDeviceJankUi extends CtsJankTestBase {
35 private final static String CLASS = PACKAGE + ".ScrollingActivity";
42 intent.setComponent(new ComponentName(PACKAGE, CLASS));
58 getUiDevice().findObject(By.clazz(ListView.class)).fling(Direction.DOWN);
  /external/elfutils/lib/
fixedsizehash.h 46 CLASS can be defined to `static' to avoid exporting the functions
65 #ifndef CLASS
66 # define CLASS
93 CLASS struct CONCAT(PREFIX,fshash) *
124 CLASS void
168 CLASS int
194 CLASS int
218 CLASS int
240 CLASS const TYPE *
263 #undef CLASS
    [all...]
  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 19 public final class EmptyArray {
30 public static final Class<?>[] CLASS = new Class[0];
  /cts/hostsidetests/abioverride/src/android/abioverride/cts/
AbiOverrideTest.java 36 public class AbiOverrideTest extends DeviceTestCase implements IBuildReceiver {
44 * The class name of the main activity in the APK.
46 private static final String CLASS = "AbiOverrideActivity";
49 * The class name of the main activity in the APK.
57 "am start -W -a android.intent.action.MAIN -n %s/%s.%s", PACKAGE, PACKAGE, CLASS);
93 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S");
99 if(line.startsWith("I/"+CLASS)) {
  /cts/hostsidetests/trustedvoice/src/android/trustedvoice/cts/
TrustedVoiceHostTest.java 33 public class TrustedVoiceHostTest extends DeviceTestCase {
56 * The class name of the main activity in the APK.
58 private static final String CLASS = "TrustedVoiceActivity";
64 "am start -W -a android.intent.action.MAIN -n %s/%s.%s", PACKAGE, PACKAGE, CLASS);
107 "logcat", "-v", "brief", "-d", CLASS + ":I", "*:S");
  /external/droiddriver/src/io/appium/droiddriver/finders/
Attribute.java 22 CLASS("class"),
  /external/elfutils/libelf/
nlist.c 52 #define CLASS static
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
ICoverageNode.java 28 /** Class */
29 CLASS,
66 CLASS
  /build/make/core/
dpi_specific_apk.mk 69 ALL_MODULES.$(dpi_apk_name).CLASS := APPS
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
StorageHostTest.java 40 @RunWith(DeviceJUnit4ClassRunner.class)
41 public class StorageHostTest extends BaseHostJUnit4Test {
49 private static final String CLASS = "com.android.cts.storageapp.StorageTest";
86 runDeviceTests(PKG_A, CLASS, "testAllocate", user);
96 runDeviceTests(PKG_A, CLASS, "testVerifySpaceManual", user);
97 runDeviceTests(PKG_A, CLASS, "testVerifySpaceApi", user);
105 runDeviceTests(PKG_A, CLASS, "testVerifyQuotaApi", user);
113 runDeviceTests(PKG_A, CLASS, "testVerifyAllocateApi", user);
137 runDeviceTests(PKG_A, CLASS, "testAllocate", user);
138 runDeviceTests(PKG_A, CLASS, "testAllocate", user)
    [all...]
  /cts/tests/leanbackjank/src/android/leanbackjank/cts/
CtsDeviceLeanback.java 29 public class CtsDeviceLeanback extends CtsJankTestBase {
42 private final static String CLASS = JAVA_PACKAGE + ".MainActivity";
69 intent.setComponent(new ComponentName(APP_PACKAGE, CLASS));

Completed in 472 milliseconds

1 2 3 4 5 6 7 8 91011>>