Searched defs:Condition (Results 51 - 75 of 80) sorted by relevance

1234

/external/v8/src/s390/
H A Dconstants-s390.h49 enum Condition { enum in namespace:v8::internal
100 inline Condition NegateCondition(Condition cond) {
128 inline Condition CommuteCondition(Condition cond) {
2178 inline Condition M1Value() const {
2179 return static_cast<Condition>(Bits<TwoByteInstr, int>(7, 4));
/external/clang/include/clang/AST/
H A DOpenMPClause.h201 /// \brief Condition of the 'if' clause.
202 Stmt *Condition; member in class:clang::OMPIfClause
212 void setCondition(Expr *Cond) { Condition = Cond; }
227 /// \param Cond Condition of the clause.
239 Condition(Cond), ColonLoc(ColonLoc), NameModifier(NameModifier),
246 Condition(nullptr), ColonLoc(), NameModifier(OMPD_unknown),
258 Expr *getCondition() const { return cast_or_null<Expr>(Condition); }
269 child_range children() { return child_range(&Condition, &Condition + 1); }
284 /// \brief Condition o
285 Stmt *Condition; member in class:clang::OMPFinalClause
[all...]
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1725 ISD::CondCode Condition; member in class:CondCodeSDNode
1729 Condition(Cond) {
1733 ISD::CondCode get() const { return Condition; }
/external/python/cpython3/Lib/test/
H A D_test_multiprocessing.py858 cond = self.Condition()
901 cond = self.Condition()
966 cond = self.Condition()
986 cond = self.Condition()
1023 cond = self.Condition()
1058 c = self.Condition()
3893 Condition = staticmethod(multiprocessing.Condition) variable in class:ProcessesMixin
3911 Condition = property(operator.attrgetter('manager.Condition')) variable in class:ManagerMixin
3963 Condition = staticmethod(multiprocessing.dummy.Condition) variable in class:ThreadsMixin
[all...]
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVModule.cpp1050 SPIRVModuleImpl::addBranchConditionalInst(SPIRVValue *Condition, argument
1052 return addInstruction(new SPIRVBranchConditional(Condition, TrueLabel,
1079 SPIRVModuleImpl::addSelectInst(SPIRVValue *Condition, SPIRVValue *Op1, argument
1081 return addInstruction(new SPIRVSelect(getId(), Condition->getId(),
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3080 Value *Condition = Select->getCondition();
3099 return SimplifyTerminatorOnSelect(SI, Condition, TrueBB, FalseBB, TrueWeight,
4356 Constant *DefaultResult, Value *Condition,
4371 Builder.CreateICmpEQ(Condition, SecondCase, "switch.selectcmp");
4376 Builder.CreateICmpEQ(Condition, FirstCase, "switch.selectcmp");
4355 ConvertTwoCaseSwitch(const SwitchCaseResultVectorTy &ResultVector, Constant *DefaultResult, Value *Condition, IRBuilder<> &Builder) argument
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1334 ISD::CondCode Condition; local
1336 Condition = getICmpCondCode(IC->getPredicate());
1338 Condition = getFCmpCondCode(FC->getPredicate());
1340 Condition = ISD::SETEQ; // silence warning.
1344 CaseBlock CB(Condition, BOp->getOperand(0),
2628 ISD::CondCode Condition = getFCmpCondCode(predicate); local
2630 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
/external/swiftshader/third_party/subzero/src/
H A DIceTargetLoweringMIPS32.cpp4171 InstIcmp::ICond Condition = Instr->getCondition(); local
4178 switch (Condition) {
/external/clang/include/clang/Sema/
H A DSema.h2336 CCEK_ConstexprIf ///< Condition in a constexpr if statement.
8256 Expr *Condition, SourceLocation StartLoc,
8262 OMPClause *ActOnOpenMPFinalClause(Expr *Condition, SourceLocation StartLoc,
8973 FullExprArg Condition; member in class:clang::Sema::ConditionResult
8979 ConditionResult(Sema &S, Decl *ConditionVar, FullExprArg Condition, argument
8981 : ConditionVar(ConditionVar), Condition(Condition), Invalid(false),
8982 HasKnownValue(IsConstexpr && Condition.get() &&
8983 !Condition.get()->isValueDependent()),
8985 !!Condition
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1319 SDValue Condition = DAG.getConstant(Predicate, DL, MVT_CC); local
1323 return DAG.getNode(Opcode, DL, MVT_CC, LHS, RHS, NZCVOp, Condition, CCOp);
/external/v8/src/arm64/
H A Dconstants-arm64.h169 V_(Condition, 15, 12, Bits) \
239 // Condition codes.
240 enum Condition { enum in namespace:v8::internal
259 inline Condition NegateCondition(Condition cond) {
263 return static_cast<Condition>(cond ^ 1);
267 inline Condition CommuteCondition(Condition cond) {
/external/clang/lib/Sema/
H A DSemaExpr.cpp6977 Expr *Condition,
6983 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
6992 << Condition->getSourceRange()
6998 SourceRange(Condition->getLocStart(), Condition->getLocEnd()));
6975 DiagnoseConditionalPrecedence(Sema &Self, SourceLocation OpLoc, Expr *Condition, Expr *LHSExpr, Expr *RHSExpr) argument
H A DTreeTransform.h1399 Expr *Condition, SourceLocation StartLoc,
1404 return getSema().ActOnOpenMPIfClause(NameModifier, Condition, StartLoc,
1413 OMPClause *RebuildOMPFinalClause(Expr *Condition, SourceLocation StartLoc, argument
1416 return getSema().ActOnOpenMPFinalClause(Condition, StartLoc, LParenLoc,
1398 RebuildOMPIfClause(OpenMPDirectiveKind NameModifier, Expr *Condition, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation NameModifierLoc, SourceLocation ColonLoc, SourceLocation EndLoc) argument
/external/vixl/src/aarch64/
H A Dconstants-aarch64.h99 V_(Condition, 15, 12, ExtractBits) \
207 // Condition codes.
208 enum Condition { enum in namespace:vixl::aarch64
231 inline Condition InvertCondition(Condition cond) {
235 return static_cast<Condition>(cond ^ 1);
/external/robolectric/v1/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.osgi_3.10.100.v20150529-1857.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/junit-params/lib/
H A Dassertj-core-1.7.1.jarMETA-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org.assertj/ META- ...
/external/guice/extensions/struts2/lib/
H A Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/annotation-tools/asmx/test/lib/
H A Djd.xslt-1.5.5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sarvega/ javax/ javax/xml/ javax/xml/parsers/ javax/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 762 milliseconds

1234