/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
H A D | p4-neg.cpp | 11 template<template<class T, T Value1, INT> class X> 13 template<template<typename T, T Value1, int> class>
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
H A D | product-weight.h | 65 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...] |
H A D | factor-weight.h | 109 : weight_(w), done_(w.Value1().Size() <= 1) {} 116 StringFactor<L, S> iter(weight_.Value1()); 122 void Reset() { done_ = weight_.Value1().Size() <= 1; }
|
H A D | determinize.h | 92 return Weight(label_common_divisor_(w1.Value1(), w2.Value1()),
|
H A D | map.h | 731 SW w1 = arc.weight.Value1(); 785 SW w1 = arc.weight.Value1();
|
/external/openfst/src/include/fst/ |
H A D | lexicographic-weight.h | 42 using PairWeight<W1, W2>::Value1; 97 if (!Value1().Member() || !Value2().Member()) return false; 99 if (Value1() == W1::Zero() && Value2() == W2::Zero()) return true; 100 if (Value1() != W1::Zero() && Value2() != W2::Zero()) return true; 127 if (less1(w.Value1(), v.Value1())) return w; 128 if (less1(v.Value1(), w.Value1())) return v; 137 return LexicographicWeight<W1, W2>(Times(w.Value1(), v.Value1()), [all...] |
H A D | signed-log-weight.h | 37 using PairWeight<X1, X2>::Value1; 96 if (Value2() == X2::Zero() || Value1().Value() > 0.0) 112 bool s1 = w1.Value1().Value() > 0.0; 113 bool s2 = w2.Value1().Value() > 0.0; 122 return SignedLogWeightTpl<T>(w1.Value1(), (f2 - log(2.0F))); 128 w1.Value1(), (f2 - log(1.0F + exp(f2 - f1)))); 131 w2.Value1(), (f2 - log(1.0F - exp(f2 - f1)))); 136 w2.Value1(), (f1 - log(1.0F + exp(f1 - f2)))); 139 w1.Value1(), (f1 - log(1.0F - exp(f1 - f2)))); 147 SignedLogWeightTpl<T> minus_w2(-w2.Value1() [all...] |
H A D | expectation-weight.h | 51 using PairWeight<X1, X2>::Value1; 119 return ExpectationWeight<X1, X2>(Plus(w.Value1(), v.Value1()), 127 return ExpectationWeight<X1, X2>(Times(w.Value1(), v.Value1()), 128 Plus(Times(w.Value1(), v.Value2()), 129 Times(w.Value2(), v.Value1())));
|
H A D | product-weight.h | 94 return ProductWeight<W1, W2>(Plus(w.Value1(), v.Value1()), 101 return ProductWeight<W1, W2>(Times(w.Value1(), v.Value1()), 109 return ProductWeight<W1, W2>(Divide(w.Value1(), v.Value1(), typ),
|
H A D | pair-weight.h | 82 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...] |
H A D | factor-weight.h | 129 : weight_(w), done_(w.Value1().Size() <= 1) {} 136 StringFactor<L, S> iter(weight_.Value1()); 142 void Reset() { done_ = weight_.Value1().Size() <= 1; }
|
H A D | push.h | 154 ptype & kPushRemoveCommonAffix ? total_weight.Value1()
|
H A D | arc-map.h | 822 SW w1 = arc.weight.Value1(); 894 SW w1 = arc.weight.Value1();
|
H A D | determinize.h | 103 return Weight(label_common_divisor_(w1.Value1(), w2.Value1()),
|
/external/clang/test/Sema/ |
H A D | warn-unreachable.c | 171 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/clang/test/SemaTemplate/ |
H A D | default-arguments.cpp | 66 template<T Value1 = sizeof(T), T Value2 = sizeof(U), 67 T Value3 = Value1 + Value2>
|
/external/clang/test/SemaCXX/ |
H A D | switch-implicit-fallthrough.cpp | 213 Value1, Value2 enumerator in enum:Enum 222 case Value1:
|
/external/llvm/lib/Option/ |
H A D | Arg.cpp | 33 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/llvm/include/llvm/Option/ |
H A D | Arg.h | 67 const char *Value0, const char *Value1, const Arg *BaseArg = nullptr);
|
/external/pdfium/fpdfsdk/include/ |
H A D | fsdk_mgr.h | 555 TYPE Value1 = this->GetAt(nStartPos);
local 558 int iGreate = (*pCompare)(Value1, Value2);
562 this->SetAt(nStopPos, Value1);
|
/external/clang/lib/Analysis/ |
H A D | CFG.cpp | 591 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...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 1919 SDValue Value1, Value2; 1939 if (!Value1.getNode()) { 1940 Value1 = V; 1942 if (V != Value1) 1944 } else if (V != Value1 && V != Value2) { 1949 if (!Value1.getNode()) 2002 ShuffleVec[i] = V == Value1 ? 0 : NumElems; 2006 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
|
/external/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 21042 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl); 21051 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
|