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

  /external/selinux/libselinux/src/
exception.sh 1 function except() { function
23 for i in `awk '/<stdin>.*extern int/ { print $6 }' temp.aux`; do except $i ; done
  /external/selinux/libsemanage/src/
exception.sh 1 function except() { function
17 for i in `awk '/extern int/ { print $6 }' temp.aux`; do except $i ; done
  /external/clang/test/CodeGenCXX/
windows-itanium-exceptions.cpp 5 void except() { function
10 try { except(); } catch (...) { }
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
CatchClause.java 39 private MultiTypeParameter except; field in class:CatchClause
46 public CatchClause(final MultiTypeParameter except, final BlockStmt catchBlock) {
47 setExcept(except);
76 return except;
84 public void setExcept(final MultiTypeParameter except) {
85 this.except = except;
86 setAsParentNodeOf(this.except);
  /external/libxml2/include/
win32config.h 31 * Windows platforms may define except
33 #undef except macro
  /external/libxml2/win32/VC10/
config.h 30 * Windows platforms may define except
32 #undef except macro
  /external/skia/tools/skqp/src/
skqp_main.cpp 107 std::string except; local
109 std::tie(outcome, except) = skqp.evaluateGM(backend, gmFactory);
110 if (!except.empty()) {
111 out << "ERROR: " << testName << " (" << except << ")\n"; local
jni_skqp.cpp 141 std::string except; local
148 std::tie(outcome, except) = gSkQP.evaluateGM(backend, gm);
151 if (!except.empty()) {
152 (void)env->ThrowNew(env->FindClass("org/skia/skqp/SkQPException"), except.c_str());
  /external/skqp/tools/skqp/src/
skqp_main.cpp 107 std::string except; local
109 std::tie(outcome, except) = skqp.evaluateGM(backend, gmFactory);
110 if (!except.empty()) {
111 out << "ERROR: " << testName << " (" << except << ")\n"; local
jni_skqp.cpp 141 std::string except; local
148 std::tie(outcome, except) = gSkQP.evaluateGM(backend, gm);
151 if (!except.empty()) {
152 (void)env->ThrowNew(env->FindClass("org/skia/skqp/SkQPException"), except.c_str());
  /external/desugar/java/com/google/devtools/build/android/desugar/io/
CoreLibraryRewriter.java 4 // you may not use this file except in compliance with the License.
56 return (typeName.startsWith("java/") || typeName.startsWith("sun/")) && !except(typeName);
59 private static boolean except(String typeName) { method in class:CoreLibraryRewriter
  /external/ltp/testcases/kernel/mem/mtest06/
shmat1.c 115 unsigned long except; /* exception type. */ local
127 except = scp->trapno;
131 switch (except) {
134 "Exception - invalid TSS, exception #[%ld]\n", except);
139 except);
144 except);
149 except);
153 "Exception - page fault, exception #[%ld]\n", except);
159 except);
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
COFFAsmParser.cpp 121 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
259 return TokError("you must specify one or both of @unwind or @except");
261 bool unwind = false, except = false; local
262 if (ParseAtUnwindOrAtExcept(unwind, except))
266 if (ParseAtUnwindOrAtExcept(unwind, except))
275 getStreamer().EmitWin64EHHandler(handler, unwind, except);
418 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) {
425 return Error(startLoc, "expected @unwind or @except");
428 else if (identifier == "except")
429 except = true
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
CloneVisitor.java 1141 MultiTypeParameter except = cloneNodes(_n.getExcept(), _arg); local
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 140 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
574 return TokError("you must specify one or both of @unwind or @except");
576 bool unwind = false, except = false; local
577 if (ParseAtUnwindOrAtExcept(unwind, except))
581 if (ParseAtUnwindOrAtExcept(unwind, except))
590 getStreamer().EmitWinEHHandler(handler, unwind, except);
733 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) {
740 return Error(startLoc, "expected @unwind or @except");
743 else if (identifier == "except")
744 except = true
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 155 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
660 return TokError("you must specify one or both of @unwind or @except");
662 bool unwind = false, except = false; local
663 if (ParseAtUnwindOrAtExcept(unwind, except))
667 if (ParseAtUnwindOrAtExcept(unwind, except))
676 getStreamer().EmitWinEHHandler(handler, unwind, except, Loc);
803 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) {
810 return Error(startLoc, "expected @unwind or @except");
813 else if (identifier == "except")
814 except = true
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 82 A frame block is used to handle loops, try/except, and try/finally.
87 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END };
670 - before the "except" clause
1859 basicblock *body, *orelse, *except, *end; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c 82 A frame block is used to handle loops, try/except, and try/finally.
87 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END };
647 - before the "except" clause
1837 basicblock *body, *orelse, *except, *end; local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 307 jclass except = (*env)->FindClass(env, "SQLite/Exception"); local
310 if (except) {
311 (*env)->ThrowNew(env, except, msg);
318 jclass except = (*env)->FindClass(env, "java/lang/OutOfMemoryError"); local
321 if (except) {
322 (*env)->ThrowNew(env, except, msg);
336 jclass except = (*env)->FindClass(env, "java/io/IOException"); local
339 if (except) {
340 (*env)->ThrowNew(env, except, msg);
    [all...]
  /external/python/cpython2/Python/
compile.c 82 A frame block is used to handle loops, try/except, and try/finally.
87 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END };
670 - before the "except" clause
1826 basicblock *body, *orelse, *except, *end; local
    [all...]
  /external/python/cpython3/Python/
compile.c 79 A frame block is used to handle loops, try/except, and try/finally.
84 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END };
849 - before the "except" clause
2367 basicblock *try, *except, *end, *after_try, *try_cleanup, local
2631 basicblock *body, *orelse, *except, *end; local
3914 *after_try, *except, *try_cleanup; local
    [all...]
  /external/libxml2/
relaxng.c 125 XML_RELAXNG_EXCEPT, /* except present in nameclass defs */
3631 xmlRelaxNGDefinePtr def = NULL, except; local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ASTParser.java 4500 Parameter except; local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
javaparser-core-2.1.0.jar 
  /external/guice/lib/build/
guava-testlib-19.0.jar 

Completed in 1262 milliseconds