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

1 2 3

  /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/Basic/
DiagnosticCategories.h 14 namespace diag { namespace in namespace:clang
23 } // end namespace diag
DiagnosticIDs.h 28 namespace diag { namespace in namespace:clang
51 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
56 #undef DIAG
82 static DiagnosticMappingInfo Make(diag::Mapping Mapping, bool IsUser,
94 diag::Mapping getMapping() const { return diag::Mapping(Mapping); }
95 void setMapping(diag::Mapping Value) { Mapping = Value; }
122 diag::CustomDiagInfo *CustomDiagInfo;
233 SmallVectorImpl<diag::kind> &Diags) const;
236 void getAllDiagnostics(SmallVectorImpl<diag::kind> &Diags) const
    [all...]
  /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
  /external/eigen/doc/snippets/
Tridiagonalization_diagonal.cpp 10 VectorXd diag = triOfA.diagonal(); variable
11 cout << "The diagonal is:" << endl << diag << endl;
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticInfos.h 18 namespace diag { namespace in namespace:mcld
20 #define DIAG(ENUM, CLASS, ADDRMSG, LINEMSG) ENUM,
27 #undef DIAG
30 } // namespace of diag
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test2DetailFragment.java 54 AlertDialog diag = builder.create(); local
55 diag.show();
75 AlertDialog diag = builder.create();
76 diag.show();
87 AlertDialog diag = builder.create();
88 diag.show();
100 AlertDialog diag = builder.create();
101 diag.show();
112 AlertDialog diag = builder.create();
113 diag.show()
    [all...]
Test3DetailFragment.java 66 AlertDialog diag = builder.create(); local
67 diag.show();
112 AlertDialog diag = builder.create();
113 diag.show();
Test5DetailFragment.java 110 AlertDialog diag = builder.create(); local
111 diag.show();
TestGenericDetailFragment.java 118 AlertDialog diag = builder.create(); local
119 diag.show();
  /frameworks/uiautomator/tests/CtsUiAutomatorTest/testapp/src/com/android/uiautomator/tests/cts/testapp/
Test3DetailFragment.java 66 AlertDialog diag = builder.create(); local
67 diag.show();
112 AlertDialog diag = builder.create();
113 diag.show();
Test5DetailFragment.java 110 AlertDialog diag = builder.create(); local
111 diag.show();
TestGenericDetailFragment.java 118 AlertDialog diag = builder.create(); local
119 diag.show();
Test2DetailFragment.java 54 AlertDialog diag = builder.create(); local
55 diag.show();
75 AlertDialog diag = builder.create();
76 diag.show();
87 AlertDialog diag = builder.create();
88 diag.show();
100 AlertDialog diag = builder.create();
101 diag.show();
112 AlertDialog diag = builder.create();
113 diag.show()
    [all...]
  /frameworks/native/include/ui/
TMatHelpers.h 152 typename MATRIX::col_type PURE diag(const MATRIX& m) { function in namespace:android::matrix
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 168 //update diag -> contiguous
197 const double diag = m_lu.coeffDiag(col); local
230 m_lu.coeffRefLower(row, col) = newCoeff / diag;
268 //Diag matrix update
  /external/eigen/unsupported/test/
matrix_function.cpp 31 MatrixType diag = MatrixType::Zero(size, size); local
33 diag(i, i) = Scalar(RealScalar(internal::random<int>(0,2)))
38 return QRofA.householderQ().inverse() * diag * QRofA.householderQ();
56 MatrixType diag = MatrixType::Zero(size, size); local
61 diag(i, i) = internal::random<Scalar>() * Scalar(0.01);
65 diag(i, i+1) = alpha;
66 diag(i+1, i) = -alpha;
72 return QRofA.householderQ().inverse() * diag * QRofA.householderQ();
86 MatrixType diag = MatrixType::Zero(size, size); local
88 diag(i, i) = Scalar(RealScalar(internal::random<Index>(-1, 1))) * imagUni
    [all...]
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 193 int diag = -1; local
216 diag = 0;
218 diag = 1;
221 if (col != -1 || row != -1 || diag != -1) {
222 setFinished(player, col, row, diag);

Completed in 405 milliseconds

1 2 3