Searched defs:Value1 (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Option/
H A DArg.cpp33 const char *Value0, const char *Value1, const Arg *_BaseArg)
37 Values.push_back(Value1);
32 Arg(const Option _Opt, StringRef S, unsigned _Index, const char *Value0, const char *Value1, const Arg *_BaseArg) argument
/external/clang/test/SemaCXX/
H A Dswitch-implicit-fallthrough.cpp213 Value1, Value2 enumerator in enum:Enum
222 case Value1:
/external/clang/test/Sema/
H A Dwarn-unreachable.c171 typedef enum { Value1 = 1 } MyEnum; enumerator in enum:__anon19194
174 case Value1:
207 return Value1; // expected-warning {{'return' will never be executed}}
338 return Value1; // no-warning
/external/openfst/src/include/fst/
H A Dpair-weight.h82 value1_ = w.Value1();
106 const W1& Value1() const { return value1_; } function in class:fst::PairWeight
215 return w.Value1() == v.Value1() && w.Value2() == v.Value2();
221 return w1.Value1() != w2.Value1() || w1.Value2() != w2.Value2();
229 return ApproxEqual(w1.Value1(), w2.Value1(), delta) &&
242 return strm << w.Value1() << separator << w.Value2();
251 return strm << open_paren << w.Value1() << separato
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dproduct-weight.h65 value1_ = w.Value1();
95 W1 Value1() const { return value1_; } function in class:fst::ProductWeight
107 return w.Value1() == v.Value1() && w.Value2() == v.Value2();
113 return w1.Value1() != w2.Value1() || w1.Value2() != w2.Value2();
128 return strm << w.Value1() << separator << w.Value2();
173 return ProductWeight<W1, W2>(Plus(w.Value1(), v.Value1()),
180 return ProductWeight<W1, W2>(Times(w.Value1(),
[all...]
/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h555 TYPE Value1 = this->GetAt(nStartPos); local
558 int iGreate = (*pCompare)(Value1, Value2);
562 this->SetAt(nStopPos, Value1);
/external/clang/lib/Analysis/
H A DCFG.cpp591 const llvm::APSInt &Value1,
593 assert(Value1.isSigned() == Value2.isSigned());
598 return TryResult(Value1 == Value2);
600 return TryResult(Value1 != Value2);
602 return TryResult(Value1 < Value2);
604 return TryResult(Value1 <= Value2);
606 return TryResult(Value1 > Value2);
608 return TryResult(Value1 >= Value2);
687 // Value less than both Value1 and Value2
691 // Value between Value1 an
590 analyzeLogicOperatorCondition(BinaryOperatorKind Relation, const llvm::APSInt &Value1, const llvm::APSInt &Value2) argument
[all...]

Completed in 1411 milliseconds