Searched refs:problem (Results 1 - 25 of 172) sorted by path

1234567

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as139 /** Report a recognition problem.
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas737 /// Report a recognition problem.
1371 /// problem occurred and/or what was the expected input. While the parser
1376 /// Better to just say the recognizer had a problem and then let the parser
1397 /// <summary>[Tree parser] Node with the problem.</summary>
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
H A DRuntime.pm53 problem, one or more likely causes, and any suggested remedies.
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm319 problem, one or more likely causes, and any suggested remedies.
/external/antlr/antlr-3.4/runtime/Perl5/tools/
H A Dport.pl191 this primary target language. This brings up the problem to follow the
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtoken.rb375 TokenSchemes exist to handle the problem of defining token types as integer
396 the problem of referencing type values by name. Thus, a token type like
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
H A Den.stg45 problem reading token vocabulary file <arg>: <exception>
/external/apache-http/src/org/apache/http/client/utils/
H A DURLEncodedUtils.java182 } catch (UnsupportedEncodingException problem) {
183 throw new IllegalArgumentException(problem);
191 } catch (UnsupportedEncodingException problem) {
192 throw new IllegalArgumentException(problem);
/external/bison/build-aux/
H A Dtexinfo.tex39 % problem. Patches are, of course, greatly appreciated.
1392 % people have actually reported a problem with.
3585 \errmessage{This command won't work in this context; perhaps the problem is
3906 % we again encounter the problem the 1sp was intended to solve.
3942 % problem manifests itself, so it can be fixed for real --karl.
4904 % index. The easiest way to prevent this problem is to make sure
4966 % @code, which sets - active. This problem was fixed by a kludge---
7213 % \catcode`\\=\other instead. We'll see whether a problem appears
7265 % Concepts from aro-bend problem 15 (see CTAN).
8818 % accented characters problem
[all...]
/external/bison/lib/
H A Dargmatch.c131 argmatch_invalid (const char *context, const char *value, ptrdiff_t problem)
133 char const *format = (problem == -1
130 argmatch_invalid(const char *context, const char *value, ptrdiff_t problem) argument
H A Dargmatch.h57 ptrdiff_t problem);
/external/bison/tests/
H A Dtestsuite2440 You may investigate any problem if you feel able to do so, in which
15132 # avoids that problem.
15306 # avoids that problem.
15480 # avoids that problem.
15654 # avoids that problem.
23542 Despite not being LALR(1), Menhir version 20070322 suffers from this problem
23954 Despite not being LALR(1), Menhir version 20070322 suffers from this problem
24366 Despite not being LALR(1), Menhir version 20070322 suffers from this problem
24786 Despite not being LALR(1), Menhir version 20070322 suffers from this problem
[all...]
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex198 \emph{This is the primary problem with any IO replay mechanism -- how
210 course, this would probably then run into the problem of excessive
/external/blktrace/doc/
H A Dblktrace.tex572 smaller pieces for service. This may indicate a performance problem due
/external/bouncycastle/
H A Dimport_bouncycastle.sh248 problem=0
252 problem=1
255 if [ $problem = 1 ]; then
/external/ceres-solver/
H A DAndroid.mk167 $(CERES_SRC_PATH)/problem.cc \
/external/ceres-solver/examples/
H A Dbundle_adjuster.cc31 // An example of solving a dynamically sized problem with various
39 // The problem being solved here is known as a Bundle Adjustment
40 // problem in computer vision. Given a set of 3d points X_1, ..., X_n,
50 // The problem used here comes from a collection of bundle adjustment
250 void BuildProblem(BALProblem* bal_problem, Problem* problem) { argument
289 problem->AddResidualBlock(cost_function,
295 problem->AddResidualBlock(cost_function, loss_function, camera, point);
303 problem->SetParameterization(cameras + camera_block_size * i,
311 Problem problem; local
319 BuildProblem(&bal_problem, &problem);
[all...]
H A Dcircle_fit.cc47 // There are closed form solutions [1] to this problem which you may want to
128 Problem problem; local
143 problem.AddResidualBlock(cost, loss, &x, &y, &m);
149 // Build and solve the problem.
154 Solve(options, &problem, &summary);
H A Dcurve_fitting.c160 ceres_problem_t* problem; local
165 problem = ceres_create_problem();
170 problem,
181 ceres_solve(problem);
182 ceres_free_problem(problem);
H A Dcurve_fitting.cc143 Problem problem; local
145 problem.AddResidualBlock(
158 Solve(options, &problem, &summary);
H A Ddenoising.cc88 // Creates a Fields of Experts MAP inference problem.
91 Problem* problem,
100 problem->AddResidualBlock(cost_function,
129 problem->AddResidualBlock(cost_function[alpha_index],
137 // Solves the FoE problem using Ceres and post-processes it to make sure the
139 void SolveProblem(Problem* problem, PGMImage<double>* solution) { argument
157 ceres::Solve(options, problem, &summary);
209 ceres::Problem problem; local
210 CreateProblem(foe, image, &problem, &solution);
212 SolveProblem(&problem,
89 CreateProblem(const FieldsOfExperts& foe, const PGMImage<double>& image, Problem* problem, PGMImage<double>* solution) argument
[all...]
H A Dellipse_approximation.cc360 ceres::Problem* problem,
365 ceres::Solve(options, problem, &summary);
410 ceres::Problem problem; local
421 problem.AddResidualBlock(
429 problem.AddResidualBlock(
443 CHECK(SolveWithFullReport(options, &problem, true));
448 CHECK(SolveWithFullReport(options, &problem, false));
359 SolveWithFullReport(ceres::Solver::Options options, ceres::Problem* problem, bool dynamic_sparsity) argument
H A Dhelloworld.cc64 // Build the problem.
65 Problem problem; local
71 problem.AddResidualBlock(cost_function, NULL, &x);
77 Solve(options, &problem, &summary);
H A Dhelloworld_analytic_diff.cc69 // For this simple problem it is overkill to check if jacobians[0]
89 // Build the problem.
90 Problem problem; local
94 problem.AddResidualBlock(cost_function, NULL, &x);
100 Solve(options, &problem, &summary);
H A Dhelloworld_numeric_diff.cc60 // Build the problem.
61 Problem problem; local
67 problem.AddResidualBlock(cost_function, NULL, &x);
73 Solve(options, &problem, &summary);

Completed in 6206 milliseconds

1234567