Searched refs:Plus (Results 1 - 25 of 88) sorted by relevance

1234

/external/markdown/MarkdownTest/Tests_2004/
H A DOrdered and unordered lists.text22 + Plus 1
23 + Plus 2
24 + Plus 3
29 + Plus 1
31 + Plus 2
33 + Plus 3
/external/markdown/MarkdownTest/Tests_2007/
H A DOrdered and unordered lists.text22 + Plus 1
23 + Plus 2
24 + Plus 3
29 + Plus 1
31 + Plus 2
33 + Plus 3
/external/markdown/tests/markdown-test/
H A Dordered-and-unordered-list.txt22 + Plus 1
23 + Plus 2
24 + Plus 3
29 + Plus 1
31 + Plus 2
33 + Plus 3
/external/openfst/src/test/
H A Dweight-tester.h65 // Tests (Plus, Times, Zero, One) defines a commutative semiring.
68 CHECK(Plus(w1, w2).Member());
72 CHECK(ApproxEqual(Plus(w1, Plus(w2, w3)), Plus(Plus(w1, w2), w3)));
76 CHECK(Plus(w1, Weight::Zero()) == w1);
77 CHECK(Plus(Weight::Zero(), w1) == w1);
83 CHECK(!Plus(w1, Weight::NoWeight()).Member());
84 CHECK(!Plus(Weigh
[all...]
/external/stlport/src/
H A Dnum_put.cpp32 Char separator, Char Plus, Char Minus,
41 if (*first == Plus || *first == Minus) {
76 Char separator, Char Plus, Char Minus,
86 if (__first == Plus || __first == Minus) {
136 char separator, char Plus, char Minus, int basechars) {
138 separator, Plus, Minus, basechars);
143 char separator, char Plus, char Minus, int basechars) {
144 __insert_grouping_aux(str, group_pos, grouping, separator, Plus, Minus, basechars);
150 wchar_t separator, wchar_t Plus, wchar_t Minus,
153 Plus, Minu
31 __insert_grouping_aux(Char* first, Char* last, const string& grouping, Char separator, Char Plus, Char Minus, int basechars) argument
74 __insert_grouping_aux( Str& iostr, size_t __group_pos, const string& grouping, Char separator, Char Plus, Char Minus, int basechars) argument
135 __insert_grouping(char * first, char * last, const string& grouping, char separator, char Plus, char Minus, int basechars) argument
142 __insert_grouping(__iostring &str, size_t group_pos, const string& grouping, char separator, char Plus, char Minus, int basechars) argument
149 __insert_grouping(wchar_t* first, wchar_t* last, const string& grouping, wchar_t separator, wchar_t Plus, wchar_t Minus, int basechars) argument
157 __insert_grouping(__iowstring &str, size_t group_pos, const string& grouping, wchar_t separator, wchar_t Plus, wchar_t Minus, int basechars) argument
[all...]
/external/ceres-solver/include/ceres/
H A Dlocal_parameterization.h68 // x_plus_delta = Plus(x, delta),
71 // less than or equal to x. The function Plus, generalizes the
74 // Plus(x, 0) = x, for all x.
76 // A trivial version of Plus is when delta is of the same size as x
79 // Plus(x, delta) = x + delta
83 // scalar and Plus is defined as
85 // Plus(x, delta) = x + [0] * delta
92 // dimensional vector and define Plus to be
94 // Plus(x, delta) = [cos(|delta|), sin(|delta|) delta / |delta|] * x
101 // min f(Plus(
[all...]
H A Dautodiff_local_parameterization.h49 // x_plus_delta = Plus(x, delta);
118 virtual bool Plus(const double* x, function in class:ceres::AutoDiffLocalParameterization
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DPlus.java19 * $Id: Plus.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Plus extends Operation class in inherits:Operation
/external/ceres-solver/internal/ceres/
H A Dparameter_block_test.cc86 parameter_block.Plus(x, delta, x_plus_delta);
95 virtual bool Plus(const double* x, function in struct:ceres::internal::TestParameterization
129 parameter_block.Plus(x, delta, x_plus_delta);
142 virtual bool Plus(const double* x, function in class:ceres::internal::BadLocalParameterization
207 parameter_block.Plus(x, delta, x_plus_delta);
H A Dlocal_parameterization.cc44 bool IdentityParameterization::Plus(const double* x, function in class:ceres::IdentityParameterization
86 bool SubsetParameterization::Plus(const double* x, function in class:ceres::SubsetParameterization
111 bool QuaternionParameterization::Plus(const double* x, function in class:ceres::QuaternionParameterization
H A Dautodiff_local_parameterization_test.cc58 parameterization.Plus(x, delta, x_plus_delta);
99 parameterization.Plus(x, delta, x_plus_delta);
153 ref_parameterization.Plus(x, delta, x_plus_delta_ref);
159 parameterization.Plus(x, delta, x_plus_delta);
H A Devaluator.h172 // like quaternions. This is the same as the "Plus()" operation in
175 virtual bool Plus(const double* state,
H A Dprogram.h86 bool Plus(const double* state,
H A Dlocal_parameterization_test.cc50 parameterization.Plus(x, delta, x_plus_delta);
96 parameterization.Plus(x, delta, x_plus_delta);
125 // Functor needed to implement automatically differentiated Plus for
166 param.Plus(x, delta, x_plus_delta);
/external/openfst/src/include/fst/
H A Dexpectation-weight.h23 // Plus: <a1, b1> + <a2, b2> = < (a1 + a2) , (b1 + b2) >
117 inline ExpectationWeight<X1, X2> Plus(const ExpectationWeight<X1, X2> &w, function in namespace:fst
119 return ExpectationWeight<X1, X2>(Plus(w.Value1(), v.Value1()),
120 Plus(w.Value2(), v.Value2()));
128 Plus(Times(w.Value1(), v.Value2()),
H A Dfloat-weight.h242 inline TropicalWeightTpl<T> Plus(const TropicalWeightTpl<T> &w1, function in namespace:fst
249 inline TropicalWeightTpl<float> Plus(const TropicalWeightTpl<float> &w1, function in namespace:fst
251 return Plus<float>(w1, w2);
254 inline TropicalWeightTpl<double> Plus(const TropicalWeightTpl<double> &w1, function in namespace:fst
256 return Plus<double>(w1, w2);
371 inline LogWeightTpl<T> Plus(const LogWeightTpl<T> &w1, function in namespace:fst
384 inline LogWeightTpl<float> Plus(const LogWeightTpl<float> &w1, function in namespace:fst
386 return Plus<float>(w1, w2);
389 inline LogWeightTpl<double> Plus(const LogWeightTpl<double> &w1, function in namespace:fst
391 return Plus<doubl
503 inline MinMaxWeightTpl<T> Plus( function in namespace:fst
510 inline MinMaxWeightTpl<float> Plus( function in namespace:fst
515 inline MinMaxWeightTpl<double> Plus( function in namespace:fst
[all...]
H A Dproduct-weight.h92 inline ProductWeight<W1, W2> Plus(const ProductWeight<W1, W2> &w, function in namespace:fst
94 return ProductWeight<W1, W2>(Plus(w.Value1(), v.Value1()),
95 Plus(w.Value2(), v.Value2()));
H A Dweight.h21 // A semiring is specified by two binary operations Plus and Times and
23 // Plus: associative, commutative, and has Zero as its identity.
24 // Times: associative and has identity One, distributes w.r.t. Plus, and
31 // A Weight class must have binary functions =Plus= and =Times= and
59 // --> Reverse(Plus(a, b)) = Plus(Reverse(a), Reverse(b))
68 // Idempotent: for all a: Plus(a, a) == a.
69 // Path: for all a, b: Plus(a, b) == a or Plus(a, b) == b.
94 // For all a,b,c: Times(c, Plus(
[all...]
H A Dshortest-distance.h202 if (!ApproxEqual(nd, Plus(nd, w), delta_)) {
203 nd = Plus(nd, w);
204 nr = Plus(nr, w);
333 sum = Plus(sum, Times(distance[s], fst.Final(s)));
H A Dpower-weight.h99 inline PowerWeight<W, n> Plus(const PowerWeight<W, n> &w1, function in namespace:fst
103 w.SetValue(i, Plus(w1.Value(i), w2.Value(i)));
152 w = Plus(w, Times(w1.Value(i), w2.Value(i)));
H A Dsparse-power-weight.h39 return Plus(v1, v2);
150 inline SparsePowerWeight<W, K> Plus(const SparsePowerWeight<W, K> &w1, function in namespace:fst
186 ret = Plus(ret, it.Value().second);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dweight.h19 // A semiring is specified by two binary operations Plus and Times and
21 // Plus: associative, commutative, and has Zero as its identity.
22 // Times: associative and has identity One, distributes w.r.t. Plus, and
52 // --> Reverse(Plus(a, b)) = Plus(Reverse(a), Reverse(b))
61 // Idempotent: for all a: Plus(a, a) == a.
62 // Path Property: for all a, b: Plus(a, b) == a or Plus(a, b) == b.
86 // For all a,b,c: Times(c, Plus(a,b)) = Plus(Time
[all...]
H A Darcsum.h55 // weights using Weight:::Plus().
84 current_arc.weight = Plus(current_arc.weight, arcs[i].weight);
H A Dproduct-weight.h171 inline ProductWeight<W1, W2> Plus(const ProductWeight<W1, W2> &w, function in namespace:fst
173 return ProductWeight<W1, W2>(Plus(w.Value1(), v.Value1()),
174 Plus(w.Value2(), v.Value2()));
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java34 import org.apache.xpath.operations.Plus;
104 (pred instanceof Plus) ||

Completed in 8865 milliseconds

1234