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

1 2

  /external/clang/include/clang/AST/
ASTDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
CommentDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /external/clang/include/clang/Analysis/
AnalysisDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /external/clang/include/clang/Driver/
DriverDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /external/clang/include/clang/Frontend/
FrontendDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /external/clang/include/clang/Lex/
LexDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /external/clang/include/clang/Parse/
ParseDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /external/clang/include/clang/Sema/
SemaDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /external/clang/include/clang/Serialization/
SerializationDiagnostic.h 16 namespace diag { namespace in namespace:clang
18 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
22 #undef DIAG
25 } // end namespace diag
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticInfos.h 16 namespace diag { namespace in namespace:mcld
18 #define DIAG(ENUM, CLASS, ADDRMSG, LINEMSG) ENUM,
28 #undef DIAG
31 } // namespace diag
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 18 #define DIAG_NAME_INDEX(ENUM) { #ENUM, diag::ENUM, STR_SIZE(#ENUM, uint8_t) },
31 #define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
33 { #ENUM, diag::ENUM, STR_SIZE(#ENUM, uint8_t) },
44 #undef DIAG
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 61 diag::Flavor getFlavor() const {
62 return Class == CLASS_REMARK ? diag::Flavor::Remark
63 : diag::Flavor::WarningOrError;
74 #define DIAG(ENUM, CLASS, DEFAULT_SEVERITY, DESC, GROUP, SFINAE, NOWERROR, \
77 diag::ENUM, DEFAULT_SEVERITY, CLASS, DiagnosticIDs::SFINAE, NOWERROR, \
91 #undef DIAG
105 "Diag ID conflict, the enums at the start of clang::diag (in "
111 // Out of bounds diag. Can't be in the table.
112 using namespace diag;
    [all...]
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 43 #define DIAG(ENUM, CLASS, ADDRDESC, LOCDESC) \
44 { diag::ENUM, CLASS, STR_SIZE(ADDRDESC, uint16_t), ADDRDESC } \
55 #undef DIAG
62 #define DIAG(ENUM, CLASS, ADDRDESC, LOCDESC) \
63 { diag::ENUM, CLASS, STR_SIZE(LOCDESC, uint16_t), LOCDESC } \
74 #undef DIAG
123 case diag::multiple_definitions: {
129 case diag::undefined_reference:
130 case diag::undefined_reference_text: {
153 case diag::debug_print_gc_sections:
    [all...]
  /external/eigen/blas/
common.h 54 #define DIAG(X) ( ((X)=='N' || (X)=='n') ? NUNIT \
  /external/eigen/blas/fortran/
dtbmv.f 1 SUBROUTINE DTBMV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX)
4 CHARACTER DIAG,TRANS,UPLO
45 * DIAG - CHARACTER*1.
46 * On entry, DIAG specifies whether or not A is unit
49 * DIAG = 'U' or 'u' A is assumed to be unit triangular.
51 * DIAG = 'N' or 'n' A is not assumed to be unit
106 * Note that when DIAG = 'U' or 'u' the elements of the array A
169 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN
189 NOUNIT = LSAME(DIAG,'N'
    [all...]
stbmv.f 1 SUBROUTINE STBMV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX)
4 CHARACTER DIAG,TRANS,UPLO
45 * DIAG - CHARACTER*1.
46 * On entry, DIAG specifies whether or not A is unit
49 * DIAG = 'U' or 'u' A is assumed to be unit triangular.
51 * DIAG = 'N' or 'n' A is not assumed to be unit
106 * Note that when DIAG = 'U' or 'u' the elements of the array A
169 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN
189 NOUNIT = LSAME(DIAG,'N'
    [all...]
ctbmv.f 1 SUBROUTINE CTBMV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX)
4 CHARACTER DIAG,TRANS,UPLO
45 * DIAG - CHARACTER*1.
46 * On entry, DIAG specifies whether or not A is unit
49 * DIAG = 'U' or 'u' A is assumed to be unit triangular.
51 * DIAG = 'N' or 'n' A is not assumed to be unit
106 * Note that when DIAG = 'U' or 'u' the elements of the array A
169 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN
190 NOUNIT = LSAME(DIAG,'N'
    [all...]
ztbmv.f 1 SUBROUTINE ZTBMV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX)
4 CHARACTER DIAG,TRANS,UPLO
45 * DIAG - CHARACTER*1.
46 * On entry, DIAG specifies whether or not A is unit
49 * DIAG = 'U' or 'u' A is assumed to be unit triangular.
51 * DIAG = 'N' or 'n' A is not assumed to be unit
106 * Note that when DIAG = 'U' or 'u' the elements of the array A
169 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN
190 NOUNIT = LSAME(DIAG,'N'
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 27 namespace diag { namespace in namespace:clang
50 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
55 #undef DIAG
89 static DiagnosticMapping Make(diag::Severity Severity, bool IsUser,
100 diag::Severity getSeverity() const { return (diag::Severity)Severity; }
101 void setSeverity(diag::Severity Value) { Severity = (unsigned)Value; }
125 diag::CustomDiagInfo *CustomDiagInfo;
240 bool getDiagnosticsInGroup(diag::Flavor Flavor, StringRef Group,
241 SmallVectorImpl<diag::kind> &Diags) const
    [all...]
  /external/cblas/testing/
c_cblat2.f     [all...]
c_cblat3.f     [all...]
c_dblat2.f     [all...]
c_dblat3.f     [all...]
c_sblat2.f     [all...]
c_sblat3.f     [all...]

Completed in 1213 milliseconds

1 2