/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CheckPlacementNew.cpp | 25 void checkPreStmt(const CXXNewExpr *NE, CheckerContext &C) const; 28 bool checkPlaceCapacityIsSufficient(const CXXNewExpr *NE, 31 bool checkPlaceIsAlignedProperly(const CXXNewExpr *NE, 36 SVal getExtentSizeOfNewTarget(const CXXNewExpr *NE, CheckerContext &C, 40 SVal getExtentSizeOfPlace(const CXXNewExpr *NE, CheckerContext &C) const; 64 SVal PlacementNewChecker::getExtentSizeOfPlace(const CXXNewExpr *NE, in getExtentSizeOfPlace() argument 66 const Expr *Place = NE->getPlacementArg(0); in getExtentSizeOfPlace() 70 SVal PlacementNewChecker::getExtentSizeOfNewTarget(const CXXNewExpr *NE, in getExtentSizeOfNewTarget() argument 75 QualType ElementType = NE->getAllocatedType(); in getExtentSizeOfNewTarget() 79 if (NE->isArray()) { in getExtentSizeOfNewTarget() [all …]
|
H A D | AnalysisOrderChecker.cpp | 85 void checkPreStmt(const CXXNewExpr *NE, CheckerContext &C) const { in checkPreStmt() argument 90 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const { in checkPostStmt() argument 95 void checkPreStmt(const CXXDeleteExpr *NE, CheckerContext &C) const { in checkPreStmt() argument 100 void checkPostStmt(const CXXDeleteExpr *NE, CheckerContext &C) const { in checkPostStmt() argument 105 void checkPreStmt(const CXXConstructExpr *NE, CheckerContext &C) const { in checkPreStmt() argument 110 void checkPostStmt(const CXXConstructExpr *NE, CheckerContext &C) const { in checkPostStmt() argument
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | AnyCall.h | 82 AnyCall(const CXXNewExpr *NE) in AnyCall() argument 83 : E(NE), D(NE->getOperatorNew()), K(Allocator) {} in AnyCall() 85 AnyCall(const CXXDeleteExpr *NE) in AnyCall() argument 86 : E(NE), D(NE->getOperatorDelete()), K(Deallocator) {} in AnyCall() 88 AnyCall(const CXXConstructExpr *NE) in AnyCall() argument 89 : E(NE), D(NE->getConstructor()), K(Constructor) {} in AnyCall()
|
H A D | ConstructionContext.h | 93 ConstructionContextItem(const CXXNewExpr *NE) in ConstructionContextItem() argument 94 : Data(NE), Kind(NewAllocatorKind) {} in ConstructionContextItem() 464 const CXXNewExpr *NE; variable 468 explicit NewAllocatedObjectConstructionContext(const CXXNewExpr *NE) in NewAllocatedObjectConstructionContext() argument 470 NE(NE) { in NewAllocatedObjectConstructionContext() 471 assert(NE); in NewAllocatedObjectConstructionContext() 475 const CXXNewExpr *getCXXNewExpr() const { return NE; } in getCXXNewExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ |
H A D | ARMBaseInfo.h | 32 NE, // Not equal Not equal, or unordered enumerator 51 case EQ: return NE; in getOppositeCondition() 52 case NE: return EQ; in getOppositeCondition() 75 case ARMCC::NE: return ARMCC::NE; in getSwappedCondition() 149 case ARMCC::NE: return "ne"; in ARMCondCodeToString() 170 .Case("ne", ARMCC::NE) in ARMCondCodeFromString()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/ |
H A D | Graph.h | 218 EdgeEntry &NE = getEdge(EId); in addConstructedEdge() local 221 NE.connect(*this, EId); in addConstructedEdge() 320 AdjEdgeIdSet(const NodeEntry &NE) : NE(NE) {} in AdjEdgeIdSet() argument 323 return NE.getAdjEdgeIds().begin(); in begin() 327 return NE.getAdjEdgeIds().end(); in end() 330 bool empty() const { return NE.getAdjEdgeIds().empty(); } in empty() 333 return NE.getAdjEdgeIds().size(); in size() 337 const NodeEntry ≠
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/ |
H A D | AtomicChange.cpp | 243 NormalizedAtomicChange NE; in convertFromYAML() local 245 YAML >> NE; in convertFromYAML() 246 AtomicChange E(NE.Key, NE.FilePath, NE.Error, NE.InsertedHeaders, in convertFromYAML() 247 NE.RemovedHeaders, tooling::Replacements()); in convertFromYAML() 248 for (const auto &R : NE.Replaces) { in convertFromYAML()
|
/freebsd/usr.bin/m4/ |
H A D | parser.y | 33 %left EQ NE 70 | expr NE expr { $$ = $1 != $3; }
|
H A D | tokenizer.l | 60 "!=" { return(NE); }
|
/freebsd/sys/dev/sound/pcm/ |
H A D | feeder_volume.c | 86 FEEDVOLUME_DECLARE(S, 8, NE) 89 FEEDVOLUME_DECLARE(U, 8, NE) 125 FEEDVOLUME_ENTRY(S, 8, NE), 128 FEEDVOLUME_ENTRY(U, 8, NE),
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Descriptor.cpp | 47 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in ctorArrayTy() local 59 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in dtorArrayTy() local 77 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in moveArrayTy() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.h | 30 NE, enumerator 156 NE, enumerator
|
/freebsd/contrib/one-true-awk/ |
H A D | awkgram.y | 54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN 82 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|' 234 | pattern NE pattern { $$ = op2($2, $1, $3); } 498 case LE: case LT: case EQ: case NE: case GT: case GE: 502 return op2(NE, n, nullnode);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ |
H A D | ARCInfo.h | 27 NE = 0x2, enumerator
|
/freebsd/share/msgdef/ |
H A D | sl_SI.ISO8859-2.src | 8 ne:n:NE:N:no:n:NO:N
|
H A D | cs_CZ.ISO8859-2.src | 16 ne:n:NE:N:no:n:NO:N
|
H A D | lt_LT.ISO8859-13.src | 16 ne:n:NE:N:no:n:NO:N
|
/freebsd/share/msgdef_unicode/ |
H A D | sr_RS.UTF-8@latin.src | 16 ne:n:NE:N:no:n:NO:N
|
H A D | cs_CZ.UTF-8.src | 16 ne:n:NE:N:no:n:NO:N
|
H A D | lt_LT.UTF-8.src | 16 ne:n:NE:N:no:n:NO:N
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ConstructionContext.cpp | 184 const auto *NE = cast<CXXNewExpr>(TopItem.getStmt()); in createFromLayers() local 185 return create<NewAllocatedObjectConstructionContext>(C, NE); in createFromLayers()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | DominanceFrontierImpl.h | 194 NE = currentNode->end(); in calculate() 195 NI != NE; ++NI) { in calculate() local
|
/freebsd/bin/expr/ |
H A D | expr.y | 85 %left <val> '=' '>' '<' GE LE NE 106 | expr NE expr { $$ = op_ne($1, $3); } 248 case '!': return (NE); in yylex()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.h | 257 NE = 0x1, // Not equal Not equal, or unordered enumerator 276 ANY_ACTIVE = NE, // (!Z) 286 case NE: return "ne"; in getCondCodeName() 320 case NE: return 0; // Z == 0 in getNZCVToSatisfyCondCode()
|
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/ |
H A D | ExtractAPIConsumer.cpp | 82 for (auto NI = path::begin(File), NE = path::end(File), in getRelativeIncludeName() local 86 while (NI != NE && *NI == ".") in getRelativeIncludeName() 88 if (NI == NE) in getRelativeIncludeName()
|