HomeSort by relevance Sort by last modified time
    Searched defs:diag (Results 1 - 25 of 29) 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
  /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 31 namespace diag { namespace in namespace:clang
47 /// diag::kind - All of the diagnostics that can be emitted by the frontend.
52 #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; }
121 diag::CustomDiagInfo *CustomDiagInfo;
231 llvm::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
  /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);
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 69 #define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
72 { diag::ENUM, DEFAULT_MAPPING, CLASS, SFINAE, ACCESS, \
84 #undef DIAG
100 "Diag ID conflict, the enums at the start of clang::diag (in "
104 "Improperly sorted diag info");
125 diag::MAP_FATAL, /*IsUser=*/false, /*IsPragma=*/false);
128 Info.setMapping((diag::Mapping) StaticInfo->Mapping);
131 assert(Info.getMapping() == diag::MAP_WARNING &&
137 assert(Info.getMapping() == diag::MAP_WARNING &
238 namespace diag { namespace in namespace:clang
    [all...]
  /external/jdiff/src/jdiff/
DiffMyers.java 109 private int diag (int xoff, int xlim, int yoff, int ylim) method in class:DiffMyers
309 int d = diag (xoff, xlim, yoff, ylim);
318 and that case was handled above without calling `diag'.
  /external/libvpx/vp8/encoder/
mcomp.c 207 unsigned int left, right, up, down, diag; local
226 // TODO: Each subsequent iteration checks at least one point in common with the last iteration could be 2 ( if diag selected)
240 CHECK_BETTER(diag, tr - 2, tc - 2);
243 CHECK_BETTER(diag, tr - 2, tc + 2);
246 CHECK_BETTER(diag, tr + 2, tc - 2);
249 CHECK_BETTER(diag, tr + 2, tc + 2);
261 // TODO: Each subsequent iteration checks at least one point in common with the last iteration could be 2 ( if diag selected)
275 CHECK_BETTER(diag, tr - 1, tc - 1);
278 CHECK_BETTER(diag, tr - 1, tc + 1);
281 CHECK_BETTER(diag, tr + 1, tc - 1)
320 int left, right, up, down, diag; local
606 int left, right, up, down, diag; local
    [all...]
  /external/opencv/ml/src/
mlem.cpp 798 CvMat whdr, iwhdr, diag, *w, *iw; local
821 cvTranspose( cvGetDiag(*covs, &diag), inv_eigen_values );
875 cvTranspose( cvGetDiag( covs[k], &diag ), w );
    [all...]
  /external/skia/src/core/
SkConcaveToTriangles.cpp 395 Vertex *diag = NULL; local
400 diag = fTrap0.bottom();
407 diag = fTrap1.bottom();
411 return diag;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 96 S.Diag(property->getLocation(),
97 diag::err_arc_inconsistent_property_ownership)
230 Diag(AtLoc, diag::err_duplicate_property);
231 Diag(prevDecl->getLocation(), diag::note_property_declare);
257 Diag(CDecl->getLocation(), diag::err_continuation_class);
299 Diag(AtLoc,
300 diag::err_type_mismatch_continuation_class) << PDecl->getType()
356 unsigned diag = local
    [all...]
SemaDeclAttr.cpp 202 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
215 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
251 S.Diag(Attr.getLoc(), diag::warn_pointer_attribute_wrong_type)
254 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
281 S.Diag(Attr.getLoc(), diag::warn_attribute_argument_not_class
4086 DelayedDiagnostic &diag = DD.Stack[i]; local
    [all...]
SemaType.cpp 63 diagID = diag::warn_pointer_attribute_wrong_type;
68 diagID = diag::warn_objc_object_attribute_wrong_type;
74 diagID = diag::warn_function_attribute_wrong_type;
90 S.Diag(loc, diagID) << name << type;
612 S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
618 S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
664 S.Diag(DeclLoc, diag::ext_missing_declspec
4137 unsigned diag = PD.getDiagID(); local
    [all...]
  /bionic/libc/kernel/arch-mips/asm/ip32/
mace.h 120 volatile unsigned long diag; member in struct:mace_ethernet
  /development/ndk/platforms/android-9/arch-mips/include/asm/ip32/
mace.h 120 volatile unsigned long diag; member in struct:mace_ethernet
  /external/kernel-headers/original/asm-mips/ip32/
mace.h 109 volatile unsigned long diag; member in struct:mace_ethernet
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/ip32/
mace.h 120 volatile unsigned long diag; member in struct:mace_ethernet
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/ip32/
mace.h 120 volatile unsigned long diag; member in struct:mace_ethernet

Completed in 3498 milliseconds

1 2