Searched defs:Condition (Results 1 - 25 of 80) sorted by relevance

1234

/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
H A DCondition.java27 public interface Condition { interface
/external/clang/lib/StaticAnalyzer/Checkers/
H A DTraversalChecker.cpp31 void checkBranchCondition(const Stmt *Condition, CheckerContext &C) const;
37 void TraversalDumper::checkBranchCondition(const Stmt *Condition, argument
41 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition);
44 Parent = Parents.getParent(Condition);
H A DUndefBranchChecker.cpp55 void checkBranchCondition(const Stmt *Condition, CheckerContext &Ctx) const;
60 void UndefBranchChecker::checkBranchCondition(const Stmt *Condition, argument
62 SVal X = Ctx.getState()->getSVal(Condition, Ctx.getLocationContext());
87 const Expr *Ex = cast<Expr>(Condition);
H A DCheckerDocumentation.cpp126 void checkBranchCondition(const Stmt *Condition, CheckerContext &Ctx) const {} argument
H A DTestAfterDivZeroChecker.cpp87 void checkBranchCondition(const Stmt *Condition, CheckerContext &C) const;
215 void TestAfterDivZeroChecker::checkBranchCondition(const Stmt *Condition, argument
217 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(Condition)) {
233 } else if (const UnaryOperator *U = dyn_cast<UnaryOperator>(Condition)) {
249 dyn_cast<ImplicitCastExpr>(Condition)) {
255 SVal Val = C.getSVal(Condition);
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
H A DCondition.java4 * A Condition implements part of a multi-step match. We sometimes need to write matchers
13 public abstract class Condition<T> { class
17 Condition<O> apply(I value, Description mismatch);
20 private Condition() { } method in class:Condition
23 public abstract <U> Condition<U> and(Step<? super T, U> mapping);
26 public final <U> Condition<U> then(Step<? super T, U> mapping) { return and(mapping); }
29 public static <T> Condition<T> notMatched() {
30 return (Condition<T>) NOT_MATCHED;
33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) {
37 private static final class Matched<T> extends Condition<
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
H A DCsmConditional.java33 private final Condition condition;
38 public Condition getCondition() {
57 public enum Condition { enum in class:CsmConditional
82 public CsmConditional(ObservableProperty property, Condition condition, CsmElement thenElement, CsmElement elseElement) {
89 public CsmConditional(List<ObservableProperty> properties, Condition condition, CsmElement thenElement, CsmElement elseElement) {
99 public CsmConditional(ObservableProperty property, Condition condition, CsmElement thenElement) {
/external/google-benchmark/src/
H A Dmutex.h69 typedef std::condition_variable Condition; typedef in namespace:benchmark
122 Condition phase_condition_;
/external/libcxx/utils/google-benchmark/src/
H A Dmutex.h69 typedef std::condition_variable Condition; typedef in namespace:benchmark
122 Condition phase_condition_;
/external/python/cpython2/Lib/multiprocessing/
H A D__init__.py50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
185 def Condition(lock=None): function
189 from multiprocessing.synchronize import Condition namespace
190 return Condition(lock)
H A Dsynchronize.py36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object): class in inherits:object
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
302 self._cond = Condition(Lock())
H A Dqueues.py48 from .synchronize import Lock, BoundedSemaphore, Semaphore, Condition namespace
88 self._notempty = threading.Condition(threading.Lock())
302 self._cond = Condition()
/external/python/cpython2/Lib/multiprocessing/dummy/
H A D__init__.py37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
88 class Condition(threading._Condition): class in inherits:threading._Condition
/external/python/cpython3/Lib/asyncio/
H A Dlocks.py3 __all__ = ['Lock', 'Event', 'Condition', 'Semaphore', 'BoundedSemaphore']
270 class Condition(_ContextManagerMixin): class in inherits:_ContextManagerMixin
271 """Asynchronous equivalent to threading.Condition.
/external/python/cpython3/Lib/multiprocessing/dummy/
H A D__init__.py12 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
27 from threading import Event, Condition, Barrier namespace
/external/clang/unittests/ASTMatchers/
H A DASTMatchersNodeTest.cpp774 StatementMatcher Condition = local
777 EXPECT_TRUE(matches("void x() { if (true) {} }", Condition));
778 EXPECT_TRUE(notMatches("void x() { if (false) {} }", Condition));
779 EXPECT_TRUE(notMatches("void x() { bool a = true; if (a) {} }", Condition));
780 EXPECT_TRUE(notMatches("void x() { if (true || false) {} }", Condition));
781 EXPECT_TRUE(notMatches("void x() { if (1) {} }", Condition));
/external/llvm/include/llvm/Support/
H A DARMWinEH.h260 /// Condition : 4-bit field providing the condition under which the epilogue is
302 uint8_t Condition() const { function in struct:llvm::ARM::WinEH::EpilogueScope
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp112 Value *Condition = SI->getCondition(); local
113 if (!Condition->getType()->isVectorTy()) {
115 Condition, P->getIncomingBlock(i), BB, P)) {
/external/python/cpython3/Lib/multiprocessing/
H A Dsynchronize.py11 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
208 # Condition variable
211 class Condition(object): class in inherits:object
336 self._cond = ctx.Condition(ctx.Lock())
378 cond = ctx.Condition()
H A Dcontext.py51 The managers methods such as `Lock()`, `Condition()` and `Queue()`
74 def Condition(self, lock=None): member in class:BaseContext
76 from .synchronize import Condition namespace
77 return Condition(lock, ctx=self.get_context())
/external/clang/test/SemaCXX/
H A Dmember-pointer.cpp184 typedef bool( base::Process::*Condition )(); typedef in namespace:PR7176
187 { (void)(Condition) &base::Continuous::cond; }
/external/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h272 static void _checkBranchCondition(void *checker, const Stmt *Condition, argument
274 ((const CHECKER *)checker)->checkBranchCondition(Condition, C);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h497 const Expr *Condition; member in class:clang::ento::SwitchNodeBuilder
503 : Eng(*eng), Src(src), Condition(condition), Pred(pred) {}
538 const Expr *getCondition() const { return Condition; }
/external/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp372 // Condition code is after the operand before SR.
449 // 3: Condition code.
568 SmallVectorImpl<MachineOperand> &Condition,
604 Condition.clear();
627 if (Condition.empty()) {
634 Condition.push_back(MachineOperand::CreateImm(BranchCond));
650 SmallVectorImpl<llvm::MachineOperand> &Condition) const {
651 assert((Condition.size() == 1) &&
655 static_cast<LPCC::CondCode>(Condition[0].getImm());
656 Condition[
565 analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TrueBlock, MachineBasicBlock *&FalseBlock, SmallVectorImpl<MachineOperand> &Condition, bool AllowModify) const argument
663 InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TrueBlock, MachineBasicBlock *FalseBlock, ArrayRef<MachineOperand> Condition, const DebugLoc &DL) const argument
[all...]
/external/python/cpython2/Lib/msilib/
H A Dschema.py22 AdminExecuteSequence.add_field(2,'Condition',7679)
25 Condition = Table('Condition') variable
26 Condition.add_field(1,'Feature_',11558)
27 Condition.add_field(2,'Level',9474)
28 Condition.add_field(3,'Condition',7679)
32 AdminUISequence.add_field(2,'Condition',7679)
37 AdvtExecuteSequence.add_field(2,'Condition',7679)
42 AdvtUISequence.add_field(2,'Condition',767
[all...]

Completed in 621 milliseconds

1234