/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...] |
/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/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 ) \
|
/development/tools/logblame/ |
app_switch_test | 45 adb shell am start -a android.intent.action.MAIN $intent
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/ipc/xt-shmem/ |
xf-main.c | 24 * xf-main.c 26 * DSP processing framework main file 30 #define MODULE_TAG MAIN 147 int main(void) function
|
/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...] |
/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...] |
/external/google-breakpad/src/common/android/include/ |
stab.h | 50 _STAB_CODE_DEF(MAIN,0x2a) \
|
/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" \
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
Main.java | 12 * Implement a 'main' for the CLDR jar. 14 @CLDRTool(alias = "main", description = "The 'main' class invoked when java -jar or doubleclicking the jar.", hidden = "Hidden so as not to list itself", 15 url = Main.TOOLSURL) 16 class Main { 18 private static final String MAIN = "main"; 21 public static void main(String args[]) throws Throwable { method in class:Main 25 System.out.println(" (java -jar cldr.jar ) -l -- prints a list of ALL tool/util/test classes with a 'main()' function."); 53 if (c == Main.class) 57 final java.lang.reflect.Method main = getStaticMain(c); local [all...] |
/art/test/etc/ |
run-test-jar | 51 MAIN="" 450 MAIN="Main" 452 MAIN="$1" 593 cmdline="${JAVA} ${DEBUGGER_OPTS} ${JVM_VERIFY_ARG} -Xmx256m -classpath classes:classes2 ${FLAGS} $MAIN $@ ${ARGS}" 930 -cp $DEX_LOCATION/$TEST_NAME.jar$SECONDARY_DEX $MAIN $ARGS" [all...] |
/external/openssh/openbsd-compat/ |
fmt_scaled.c | 106 /* Main loop: Scan digits, find decimal point, if present. 238 /* if the result would be >= 10, round main number */ 265 #ifdef MAIN 271 main(int argc, char **argv) function
|
/external/tcpdump/ |
print-ascii.c | 192 #ifdef MAIN 194 main(int argc, char *argv[]) function 209 #endif /* MAIN */
|
/external/chromium-trace/catapult/devil/devil/android/ |
apk_helper_test.py | 40 A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN") 251 unittest.main(verbosity=2)
|
/build/make/tools/droiddoc/templates-pdk/ |
docpage.cs | 20 <?cs # THIS IS THE MAIN DOC CONTENT ?>
|
/external/vulkan-validation-layers/build-android/ |
test_APK.sh | 168 adb $serialFlag shell am start -a android.intent.action.MAIN -c android-intent.category.LAUNCH -n com.example.VulkanLayerValidationTests/android.app.NativeActivity --es args --gtest_filter="${filter}"
|
/build/make/tools/droiddoc/templates-ndk/ |
sample.cs | 44 <?cs # THIS IS THE MAIN DOC CONTENT ?>
|
docpage.cs | 132 <?cs # THIS IS THE MAIN DOC CONTENT ?>
|
/external/doclava/res/assets/templates-sdk/ |
sample.cs | 39 <?cs # THIS IS THE MAIN DOC CONTENT ?>
|
docpage.cs | 180 # THIS IS THE MAIN DOC CONTENT ?><?cs
|
/external/eigen/cmake/ |
FindBLAS.cmake | 530 # Find the main file (32-bit or 64-bit) 557 foreach (MAIN ${BLAS_SEARCH_LIBS_WIN_MAIN}) 560 "${MAIN} ${THREAD} mkl_core${BLAS_mkl_DLL_SUFFIX}") 602 # Find the main file (32-bit or 64-bit) 629 foreach (MAIN ${BLAS_SEARCH_LIBS_WIN_MAIN}) 632 "${MAIN} ${THREAD} mkl_core${BLAS_mkl_DLL_SUFFIX}") [all...] |
/external/harfbuzz_ng/src/ |
hb-ot-tag.cc | 504 #ifdef MAIN 521 main () function
|