OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Condition
(Results
1 - 25
of
108
) sorted by relevancy
1
2
3
4
5
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
CodeViewError.cpp
23
std::string message(int
Condition
) const override {
24
switch (static_cast<cv_error_code>(
Condition
)) {
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIAError.cpp
14
std::string message(int
Condition
) const override {
15
switch (static_cast<dia_error_code>(
Condition
)) {
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
GenericError.cpp
23
std::string message(int
Condition
) const override {
24
switch (static_cast<pdb_error_code>(
Condition
)) {
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MSFError.cpp
23
std::string message(int
Condition
) const override {
24
switch (static_cast<msf_error_code>(
Condition
)) {
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
RawError.cpp
15
std::string message(int
Condition
) const override {
16
switch (static_cast<raw_error_code>(
Condition
)) {
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/
cond.h
32
class
Condition
: public ASTNode
38
virtual
Condition
*syntaxCopy() = 0;
58
class DVCondition : public
Condition
90
class StaticIfCondition : public
Condition
permissivevisitor.d
26
override void visit(AST.
Condition
){}
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
GuardUtils.cpp
23
Value *
Condition
, *WidenableCondition;
25
return parseWidenableBranch(U,
Condition
, WidenableCondition, GuardedBB,
30
Value *
Condition
, *WidenableCondition;
32
if (!parseWidenableBranch(U,
Condition
, WidenableCondition, GuardedBB,
44
bool llvm::parseWidenableBranch(const User *U, Value *&
Condition
,
51
Condition
= C->get();
53
Condition
= ConstantInt::getTrue(IfTrueBB->getContext());
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp
10
//
condition
.
56
void checkBranchCondition(const Stmt *
Condition
, CheckerContext &Ctx) const;
61
void UndefBranchChecker::checkBranchCondition(const Stmt *
Condition
,
63
// ObjCForCollection is a loop, but has no actual
condition
.
64
if (isa<ObjCForCollectionStmt>(
Condition
))
66
SVal X = Ctx.getSVal(
Condition
);
74
this, "Branch
condition
evaluates to a garbage value"));
77
//
condition
that is the most likely source of the "uninitialized
78
// branch
condition
." We do a recursive walk of the
condition
'
[
all
...]
TraversalChecker.cpp
30
void checkBranchCondition(const Stmt *
Condition
, CheckerContext &C) const;
36
void TraversalDumper::checkBranchCondition(const Stmt *
Condition
,
39
//
condition
. We just print the collection expression.
40
const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(
Condition
);
43
Parent = Parents.getParent(
Condition
);
TestAfterDivZeroChecker.cpp
85
void checkBranchCondition(const Stmt *
Condition
, CheckerContext &C) const;
212
void TestAfterDivZeroChecker::checkBranchCondition(const Stmt *
Condition
,
214
if (const BinaryOperator *B = dyn_cast<BinaryOperator>(
Condition
)) {
230
} else if (const UnaryOperator *U = dyn_cast<UnaryOperator>(
Condition
)) {
246
dyn_cast<ImplicitCastExpr>(
Condition
)) {
252
SVal Val = C.getSVal(
Condition
);
/src/tests/lib/libobjc/
t_threads.m
46
static objc_condition_t
Condition
;
65
objc_condition_signal(
Condition
);
114
Condition
= objc_condition_allocate();
123
objc_condition_wait(
Condition
, Mutex);
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
PredicateInfo.h
18
/// propagate
condition
based info into the operations that may be affected.
87
// The renamed operand in the
condition
used for this predicate. For nested
91
// The
condition
associated with this predicate.
92
Value *
Condition
;
103
/// Fetch
condition
in the form of PredicateConstraint, if possible.
107
PredicateBase(PredicateType PT, Value *Op, Value *
Condition
)
108
: Type(PT), OriginalOp(Op),
Condition
(
Condition
) {}
117
PredicateAssume(Value *Op, IntrinsicInst *AssumeInst, Value *
Condition
)
118
: PredicateBase(PT_Assume, Op,
Condition
), AssumeInst(AssumeInst) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCPredicates.h
55
// When dealing with individual
condition
-register bits, we have simple set
72
/// Assume the
condition
register is set by MI(a,b), return the predicate if
73
/// we modify the instructions such that
condition
register is set by MI(b,a).
76
/// Return the
condition
without hint bits.
86
/// Return predicate consisting of specified
condition
and hint bits.
87
inline Predicate getPredicate(unsigned
Condition
, unsigned Hint) {
88
return (Predicate)((
Condition
& ~BR_HINT_MASK) |
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sync/
condition.d
2
* The
condition
module provides a primitive for synchronized
condition
16
module core.sync.
condition
;
47
//
Condition
56
* This class represents a
condition
variable as conceived by C.A.R. Hoare. As
61
class
Condition
68
* Initializes a
condition
object which is associated with the supplied
72
* m = The mutex with which this
condition
will be associated.
90
if ((is(Q ==
Condition
) && is(M == Mutex)) ||
91
(is(Q == shared
Condition
) && is(M == shared Mutex))
[
all
...]
barrier.d
20
import core.sync.
condition
;
60
m_cond = new
Condition
( m_lock );
98
Condition
m_cond;
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
GuardUtils.h
36
/// %wc = call i1 @llvm.experimental.widenable.
condition
()
41
/// the parameters (
Condition
, WidenableCondition, IfTrueBB and IfFalseFF)
43
bool parseWidenableBranch(const User *U, Value *&
Condition
,
48
/// modified. Unlike previous version,
Condition
is optional and may be null.
/src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.thread/
tlsgc_sections.d
2
import core.sync.
condition
;
6
__gshared
Condition
g_cond;
51
g_cond = new
Condition
(g_mutex);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstraintElimination.cpp
124
/// Turn a
condition
\p CmpI into a vector of constraints, using indices from \p
213
/// Represents either a
condition
that holds on entry to a block or a basic
222
CmpInst *
Condition
;
228
ConstraintOrBlock(DomTreeNode *DTN, CmpInst *
Condition
, bool Not)
230
Not(Not),
Condition
(
Condition
) {}
236
CmpInst *
Condition
;
239
StackEntry(unsigned NumIn, unsigned NumOut, CmpInst *
Condition
, bool IsNot)
240
: NumIn(NumIn), NumOut(NumOut),
Condition
(
Condition
), IsNot(IsNot) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiInstrInfo.h
89
SmallVectorImpl<MachineOperand> &
Condition
,
112
// When successful, return the controlling
condition
and the operands that
137
SmallVectorImpl<MachineOperand> &
Condition
) const override;
141
ArrayRef<MachineOperand>
Condition
,
/src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
mutex.h
69
typedef std::condition_variable
Condition
;
122
Condition
phase_condition_;
thread_manager.h
58
Condition
end_condition_;
/src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
mutex.h
69
typedef std::condition_variable
Condition
;
122
Condition
phase_condition_;
thread_manager.h
60
Condition
end_condition_;
/src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Error.h
51
void CheckAssert(SMLoc Loc, Init *
Condition
, Init *Message);
Completed in 40 milliseconds
1
2
3
4
5
Indexes created Wed May 06 00:24:28 UTC 2026