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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/
pth_blockedsig.stdout.exp 1 thread CHILD sending SIGUSR1 to thread MAIN
  /external/elfutils/libcpu/
i386_lex.l 55 %x MAIN
69 "%%" { BEGIN (MAIN); return kPERCPERC; }
72 <MAIN>"0" { return '0'; }
73 <MAIN>"1" { return '1'; }
75 <INITIAL,MAIN>"{"{ID2}"}" { i386_lval.str = xstrndup (yytext + 1,
79 <MAIN>"INVALID" { i386_lval.str = (void *) -1l;
82 <MAIN>{ID} { i386_lval.str = xstrndup (yytext, yyleng);
85 <MAIN>"," { return ','; }
87 <MAIN>":" { return ':'; }
89 <INITIAL,MAIN>^"\n" { /* IGNORE */
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
attr-merge-10b-dsp.s 1 .arch armv8-m.main
3 @ Tag_CPU_arch & Tag_CPU_arch_profile = v8-M.MAIN
attr-merge-10b.s 1 .arch armv8-m.main
3 @ Tag_CPU_arch & Tag_CPU_arch_profile = v8-M.MAIN
  /external/vogar/src/vogar/
RunnerType.java 24 * Runs both JUnit classes and classes with a main(String[] args) method.
39 * Runs only classes with a main(String[] args) method.
41 MAIN(false, false, true);
  /external/valgrind/memcheck/tests/solaris/
thr_daemon_exit_libc.stdout.exp 12 MAIN thread exiting
  /external/compiler-rt/test/asan/TestCases/Linux/
coverage-missing.cc 3 // First case: coverage from executable. main() is called on every code path.
9 // RUN: %sancov print *.sancov > main.txt
11 // RUN: [ $(cat main.txt | wc -l) == 1 ]
21 // RUN: sort main.txt foo-missing.txt -o foo-missing-with-main.txt
25 // RUN: ( diff bar.txt foo-missing-with-main.txt || true ) | not grep "^<"
66 #if defined(MAIN)
67 int main(int argc, char **argv) { function
  /external/mesa3d/src/mesa/x86/
mmx_blendtmp.h 44 MAIN ( EDI, ESI )
66 /* main loop */
69 MAIN ( EDI, ESI )
94 MAIN ( EDI, ESI )
114 #undef MAIN
mmx_blend.S 273 #define MAIN( rgba, dest ) \
294 #define MAIN( rgba, dest ) \
324 #define MAIN( rgba, dest ) \
356 #define MAIN( rgba, dest ) \
389 #define MAIN( rgba, dest ) \
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidDefs.h 32 MAIN,
  /development/tools/logblame/
app_switch_test 45 adb shell am start -a android.intent.action.MAIN $intent
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsContainerView.java 110 mAH[AdapterHolder.MAIN] = new AdapterHolder(false /* isWork */);
218 return mAH[AdapterHolder.MAIN].recyclerView;
326 mAllAppsStore.unregisterIconContainer(mAH[AdapterHolder.MAIN].recyclerView);
330 mAH[AdapterHolder.MAIN].setup(mViewPager.getChildAt(0), mPersonalMatcher);
334 mAH[AdapterHolder.MAIN].setup(findViewById(R.id.apps_list_view), null);
339 mAllAppsStore.registerIconContainer(mAH[AdapterHolder.MAIN].recyclerView);
375 .setOnClickListener((View view) -> mViewPager.snapToPage(AdapterHolder.MAIN));
386 return mAH[AdapterHolder.MAIN].appsList;
450 mAH[AdapterHolder.MAIN].recyclerView.addOnScrollListener(scrollListener);
494 public static final int MAIN = 0
    [all...]
  /external/compiler-rt/test/esan/TestCases/
struct-simple.cpp 3 // RUN: %clang_esan_frag -O0 %s -DMAIN -c -o %t-main.o 2>&1
4 // RUN: %clang_esan_frag -O0 %t-part1.o %t-part2.o %t-main.o -o %t 2>&1
18 //===-- compilation unit part1 without main function ----------------------===//
36 // Same struct in both main and part1.
42 // Different structs with the same name in main and part1.
75 //===-- compilation unit part2 without main function ----------------------===//
84 //===-- compilation unit with main function -------------------------------===//
86 #ifdef MAIN
100 // Same struct in both main and part1.
106 // Different structs with the same name in main and part1
113 int main(int argc, char **argv) { function
    [all...]
  /external/vogar/test/vogar/target/main/
TestRunnerMainTest.java 17 package vogar.target.main;
29 * Tests for using TestRunner to run classes that provide a main method.
34 @TestRunnerProperties(testClass = Main.class, runnerType = RunnerType.MAIN)
41 .success("main", "Args: \n")
45 @TestRunnerProperties(testClass = Main.class)
52 .success("main", "Args: \n")
56 @TestRunnerProperties(testClass = Main.class)
63 .success("main", "Args: arg1, arg2\n")
67 public static class Main {
68 public static void main(String[] args) { method in class:TestRunnerMainTest.Main
85 public static void main(String[] args) throws InterruptedException { method in class:TestRunnerMainTest.MainLong
    [all...]
  /system/core/init/
log.cpp 84 android::base::KernelLogger(android::base::MAIN, severity, "selinux", nullptr, 0, buf);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 68 * Definition of the contract for the main table of our provider.
78 public static final String TABLE_NAME = "main";
83 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
90 = Uri.parse("content://" + AUTHORITY + "/main/");
173 // The incoming URI matches the main table URI pattern
174 private static final int MAIN = 1;
175 // The incoming URI matches the main table row ID URI pattern
187 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN);
219 case MAIN:
220 // If the incoming URI is for main table
    [all...]
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
LoaderThrottleSupport.java 71 * Definition of the contract for the main table of our provider.
81 public static final String TABLE_NAME = "main";
86 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
93 = Uri.parse("content://" + AUTHORITY + "/main/");
176 // The incoming URI matches the main table URI pattern
177 private static final int MAIN = 1;
178 // The incoming URI matches the main table row ID URI pattern
190 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN);
222 case MAIN:
223 // If the incoming URI is for main table
    [all...]
  /external/google-breakpad/src/common/android/include/
stab.h 50 _STAB_CODE_DEF(MAIN,0x2a) \
  /external/syslinux/com32/cmenu/
complex.c 51 unsigned char TESTING, RESCUE, MAIN, PREPMENU, NETMENU, LONGMENU, SECRETMENU;
251 int main(void) function
381 MAIN = add_menu(" Main Menu ", 8);
415 curr = showmenus(MAIN);
  /build/make/tools/droiddoc/test/stubs/
func.sh 49 -hdf page.build MAIN-eng.joeo.20080710.121320 -hdf page.now "10 Jul 2008 12:13" \
  /toolchain/binutils/binutils-2.27/libiberty/
concat.c 197 #ifdef MAIN
205 main (void) function
  /external/chromium-trace/catapult/devil/devil/android/
apk_helper_test.py 38 A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
225 unittest.main(verbosity=2)
  /hardware/interfaces/contexthub/1.0/
types.hal 162 MAIN = 0, // Main memory
  /art/test/etc/
run-test-jar 40 MAIN=""
397 MAIN="Main"
399 MAIN="$1"
540 cmdline="${JAVA} ${DEBUGGER_OPTS} ${JVM_VERIFY_ARG} -Xmx256m -classpath classes:classes2 ${FLAGS} $MAIN $@ ${ARGS}"
795 -cp $DEX_LOCATION/$TEST_NAME.jar$SECONDARY_DEX $MAIN $ARGS"
    [all...]
  /external/tcpdump/
print-ascii.c 192 #ifdef MAIN
194 main(int argc, char *argv[]) function
209 #endif /* MAIN */

Completed in 1008 milliseconds

1 2 3 4 5 6 7 8 91011>>