HomeSort by: relevance | last modified time | path
    Searched defs:Exception (Results 1 - 18 of 18) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgomp/
openacc_lib.h 22 ! permissions described in the GCC Runtime Library Exception, version
26 ! a copy of the GCC Runtime Library Exception along with this program;
  /src/external/gpl3/gcc.old/dist/libgomp/
openacc_lib.h 22 ! permissions described in the GCC Runtime Library Exception, version
26 ! a copy of the GCC Runtime Library Exception along with this program;
  /src/sys/external/bsd/acpica/dist/utilities/
utexcep.c 3 * Module Name: utexcep - Exception code support
61 * RETURN: A string containing the exception text. A valid pointer is
64 * DESCRIPTION: This function translates an ACPI exception into an ASCII
73 const ACPI_EXCEPTION_INFO *Exception;
79 Exception = AcpiUtValidateException (Status);
80 if (!Exception)
82 /* Exception code was not recognized */
85 "Unknown exception code: 0x%8.8X", Status));
90 return (Exception->Name);
102 * RETURN: A string containing the exception text. NULL if exception i
    [all...]
  /src/external/public-domain/sqlite/dist/
Replace.cs 75 /// An exception was caught in <see cref="Main" />. Generally, this
78 Exception = 4
211 catch (Exception e)
214 // NOTE: An exception was caught. Report it via the console
218 return (int)ExitCode.Exception;
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aeexception.c 3 * Module Name: aeexception - Exception and signal handlers
65 * PARAMETERS: Standard exception handler parameters
69 * DESCRIPTION: System exception handler for AcpiExec utility. Called from
70 * the core ACPICA code after any exception during method
88 const char *Exception;
92 Exception = AcpiFormatException (AmlStatus);
97 "Exception %s during execution\n", Exception);
143 Arg[1].String.Pointer = ACPI_CAST_PTR (char, Exception);
144 Arg[1].String.Length = strlen (Exception);
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/avr/libf7/
f7-wraps.h 16 ;; permissions described in the GCC Runtime Library Exception, version
20 ;; a copy of the GCC Runtime Library Exception along with this program;
  /src/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
f7-wraps.h 16 ;; permissions described in the GCC Runtime Library Exception, version
20 ;; a copy of the GCC Runtime Library Exception along with this program;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
RawConstants.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88 Exception,
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
MinidumpYAML.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
29 Exception,
113 : Stream(StreamKind::Exception, minidump::StreamType::Exception),
118 : Stream(StreamKind::Exception, minidump::StreamType::Exception),
122 return S->Kind == StreamKind::Exception;
262 LLVM_YAML_DECLARE_MAPPING_TRAITS(llvm::minidump::Exception)
  /src/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
375 // exception.
501 // Close the application if this exception will not be handled by the
506 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception;
507 if (Exception.dwFirstChance > 0) {
510 errs() << "First chance exception at "
511 << Exception.ExceptionRecord.ExceptionAddress
512 << ", exception code: "
514 Exception.ExceptionRecord.ExceptionCode
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 1 //===--- SemaExceptionSpec.cpp - C++ Exception Specifications ---*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 // This file provides Sema routines for C++ exception specification testing.
40 /// exception specification of that function. This function detects whether
41 /// we're in such a case and turns off delay-parsing of exception
111 /// exception specification. Incomplete types, or pointers to incomplete types
114 /// \param[in,out] T The exception type. This will be decayed to a pointer type
119 // in an exception-specification is adjusted to type T, "pointer to T", or
144 // A type denoted in an exception-specification shall not denote [...]
153 // A type denoted in an exception-specification shall not denote a
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Minidump.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
230 struct Exception {
241 static_assert(sizeof(Exception) == 152, "");
246 Exception ExceptionRecord;
  /src/sys/arch/hppa/spmath/
float.h 403 /* Declare exception registers equivalent to FPUs architecture
419 #define Set_exceptiontype_and_instr_field(exception,instruction,object) \
420 object = ((exception) << 26) | (instruction)
488 #define Exception(cond) Exceptionbit(cond)
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
50 // {Type: Exception, Number: 0} (ExceptionSectionID)
56 Exception, // Special section type for exception handling blocks
63 // Special unique sections for cold and exception blocks.
74 // This is only used to construct the special cold and exception sections.
140 /// Indicate that this basic block is entered via an exception handler.
525 /// entered via an exception handler.
529 /// via an exception handler.
  /src/external/gpl3/gdb/dist/sim/arm/
armdefs.h 84 ARMword Spsr[7]; /* the exception psr's */
97 unsigned VectorCatch; /* caught exception mask */
133 unsigned Exception; /* enable the next four values */
  /src/external/gpl3/gdb.old/dist/sim/arm/
armdefs.h 84 ARMword Spsr[7]; /* the exception psr's */
97 unsigned VectorCatch; /* caught exception mask */
133 unsigned Exception; /* enable the next four values */
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
394 /// Function called when exiting from a catch block. Used to do exception
3934 // EH support isn't a veneer over C++ EH. Instead, exception
3942 // exception handler.
3953 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr);
3954 ExceptionAsObject = Exception;
CGObjCMac.cpp 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3498 /// Has the exception attribute.
4518 Objective-C setjmp-longjmp (sjlj) Exception Handling
4522 - a pointer to the exception that was caught
4523 - a pointer to the previous exception data buffer
4532 thrown exception into the appropriate field, and longjmps
4535 objc_exception_extract just reads the exception pointer out of the
4541 want to implement correct ObjC/C++ exception interactions for the
4563 // exception path
4568 ... match exception and execute catch blocks ..
    [all...]

Completed in 51 milliseconds