Home
last modified time | relevance | path

Searched refs:problems (Results 1 – 25 of 1048) sorted by relevance

12345678910>>...42

/external/libmtp/logs/
Dmtp-detect-iriver-t60.txt7 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
8 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
9 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
10 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
11 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
12 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
13 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
14 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
15 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
16 ptp2/ptp_usb_getdata: read 1 bytes too much, expect problems!
[all …]
/external/syslinux/gpxe/src/util/
Dsymcheck.pl107 my $problems = {};
122 $problems->{$_}->{nonexistent}->{$symbol} = 1 foreach @requires;
133 $problems->{$provide}->{unused}->{$symbol} = 1;
140 $problems->{$_}->{shared}->{$symbol} = 1 foreach @provides;
145 $problems->{$_}->{multiples}->{$symbol} = 1 foreach @provides;
158 $problems->{$object}->{large}->{$symbol} = 1;
167 foreach my $object ( sort keys %$problems ) {
168 my @nonexistent = sort keys %{$problems->{$object}->{nonexistent}};
169 my @multiples = sort keys %{$problems->{$object}->{multiples}};
170 my @unused = sort keys %{$problems->{$object}->{unused}};
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DParseProblemException.java37 private final List<Problem> problems; field in ParseProblemException
39 public ParseProblemException(List<Problem> problems) { in ParseProblemException() argument
40 super(createMessage(assertNotNull(problems))); in ParseProblemException()
41 this.problems = problems; in ParseProblemException()
48 private static String createMessage(List<Problem> problems) { in createMessage() argument
50 for (Problem problem : problems) { in createMessage()
57 return problems; in getProblems()
DParseResult.java38 private final List<Problem> problems; field in ParseResult
49 …public ParseResult(T result, List<Problem> problems, List<JavaToken> tokens, CommentsCollection co… in ParseResult() argument
52 this.problems = problems; in ParseResult()
60 return problems.isEmpty() && result != null; in isSuccessful()
76 return problems; in getProblems()
116 for (Problem problem : problems) { in toString()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
DParseProblemException.java18 private final List<Problem> problems; field in ParseProblemException
20 ParseProblemException(List<Problem> problems) { in ParseProblemException() argument
21 super(createMessage(assertNotNull(problems))); in ParseProblemException()
22 this.problems = problems; in ParseProblemException()
29 private static String createMessage(List<Problem> problems) { in createMessage() argument
31 for(Problem problem: problems){ in createMessage()
38 return problems; in getProblems()
DParseResult.java18 private final List<Problem> problems; field in ParseResult
28 …ParseResult(Optional<T> result, List<Problem> problems, Optional<List<Token>> tokens, Optional<Com… in ParseResult() argument
31 this.problems = assertNotNull(problems); in ParseResult()
46 return problems.isEmpty() && result.isPresent(); in isSuccessful()
53 return problems; in getProblems()
83 for (Problem problem : problems) { in toString()
/external/google-breakpad/src/client/windows/crash_generation/
DReadMe.txt18 | For any unexpected problems, go into ERROR state.
24 | For any unexpected problems, go into DISCONNECTING state.
29 | For any unexpected problems, go into DISCONNECTING state.
33 | For any unexpected problems, go into DISCONNECTING state.
39 | For any unexpected problems, go into DISCONNECTING state.
43 | For any unexpected problems, go into DISCONNECTING state.
48 | For any unexpected problems, go into DISCONNECTING state.
/external/v8/
DPRESUBMIT.py161 problems = []
166 problems.append(
169 if problems:
170 return [output_api.PresubmitPromptOrNotify(include_warning, problems)]
202 problems = []
209 problems.append(
212 if problems:
213 return [output_api.PresubmitPromptOrNotify(_TEST_ONLY_WARNING, problems)]
D.landmines14 Clober to fix windows build problems.
15 Clober again to fix windows build problems.
/external/python/cpython2/Lib/lib2to3/tests/
Dpytree_idempotency.py35 problems = []
50 problems.append(fn)
70 problems.append(fn)
73 if not problems:
77 for fn in problems:
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/
DJava7ValidatorTest.java85 List<Problem> problems = new ArrayList<>(); in multiCatchWithoutElements() local
86 new Java7Validator().accept(unionType, new ProblemReporter(problems::add)); in multiCatchWithoutElements()
88 assertProblems(problems, "UnionType.elements can not be empty."); in multiCatchWithoutElements()
96 List<Problem> problems = new ArrayList<>(); in multiCatchWithOneElement() local
97 new Java7Validator().accept(unionType, new ProblemReporter(problems::add)); in multiCatchWithOneElement()
99 assertProblems(problems, "Union type (multi catch) must have at least two elements."); in multiCatchWithOneElement()
DJava1_0ValidatorTest.java94 List<Problem> problems= new ArrayList<>(); in nonEmptyList() local
95 new Java1_0Validator().accept(expr, new ProblemReporter(problems::add)); in nonEmptyList()
96 assertEquals("ArrayCreationExpr.levels can not be empty.", problems.get(0).getMessage()); in nonEmptyList()
/external/python/cpython3/Lib/lib2to3/tests/
Dpytree_idempotency.py37 problems = []
52 problems.append(fn)
72 problems.append(fn)
75 if not problems:
79 for fn in problems:
/external/gptfdisk/
Dgpt.cc173 int problems = 0, alignProbs = 0; in Verify() local
179 problems++; in Verify()
186 problems++; in Verify()
193 problems++; in Verify()
200 problems++; in Verify()
208 problems++; in Verify()
215 problems++; in Verify()
224 problems++; in Verify()
230 problems++; in Verify()
237 problems++; in Verify()
[all …]
/external/python/cpython2/Misc/
Dvalgrind-python.supp189 ### that Python uses. The problems to not appear to be related to Python's
194 Generic ubuntu ld problems
203 Generic gentoo ld problems
212 DBM problems, see test_dbm
224 DBM problems, see test_dbm
236 DBM problems, see test_dbm
246 DBM problems, see test_dbm
258 GDBM problems, see test_gdbm
267 ZLIB problems, see test_gzip
275 Avoid problems w/readline doing a putenv and leaking on exit
[all …]
/external/python/cpython3/Misc/
Dvalgrind-python.supp189 ### that Python uses. The problems to not appear to be related to Python's
194 Generic ubuntu ld problems
203 Generic gentoo ld problems
212 DBM problems, see test_dbm
224 DBM problems, see test_dbm
236 DBM problems, see test_dbm
246 DBM problems, see test_dbm
258 GDBM problems, see test_gdbm
267 ZLIB problems, see test_gzip
275 Avoid problems w/readline doing a putenv and leaking on exit
[all …]
/external/syslinux/txt/
Dcom-rpt.txt4 I would appreciate hearing of any problems you have with Syslinux. I
8 If you are reporting problems, please include all possible information
9 about your system and your BIOS; the vast majority of all problems
11 information as possible in order to diagnose the problems.
/external/curl/docs/
DBUGS14 1.5 libcurl problems
15 1.6 Who will fix the problems
105 1.5 libcurl problems
119 Lots of problems that appear to be libcurl problems are actually just abuses
122 valgrind or similar before you post memory-related or "crashing" problems to
125 1.6 Who will fix the problems
127 If the problems or bugs you describe are considered to be bugs, we want to
128 have the problems fixed.
181 maintain several branches or to spend much time on hunting down problems in
202 versions by a lot. We keeping discovering and reporting security problems
[all …]
/external/eigen/Eigen/
DIterativeLinearSolvers19 …* This module currently provides iterative methods to solve problems of the form \c A \c x = \c b,…
22 * - LeastSquaresConjugateGradient for rectangular least-square problems,
30 …* Such problems can also be solved using the direct sparse decomposition modules: SparseCholesky, …
/external/python/cpython2/Doc/library/
Dtabnanny.rst5 :synopsis: Tool for detecting white space related problems in Python source files in a
31 checked for whitespace related problems. The diagnostic messages are written to
44 whitespace related problems. This is set to true by the ``-q`` option if called
/external/python/cpython3/Doc/library/
Dtabnanny.rst5 :synopsis: Tool for detecting white space related problems in Python
32 is checked for whitespace related problems. The diagnostic messages are
45 whitespace related problems. This is set to true by the ``-q`` option if called
/external/tensorflow/tensorflow/contrib/tensor_forest/
DREADME.md41 turned into predictions. For classification problems, the statistics are
42 class counts, and for regression problems they are the vector sum of the
50 the quality of the split. For classification problems, that's usually
53 of the split, while for regression problems it's the mean-squared error.
85 * `regression`. True for regression problems, False for classification tasks.
87 For regression problems, TensorForests's output are the predicted regression
/external/curl/tests/data/
DDISABLED13 # test 1801 causes problems on Mac OS X and github
16 # test 1510 causes problems on the CI on github
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/
Dcom_github_javaparser_ParseProblemException.txt1 …Line 21) createMessage(assertNotNull(problems)) ==> com.github.javaparser.ParseProblemException.cr…
2 Line 21) assertNotNull(problems) ==> com.github.javaparser.utils.Utils.assertNotNull(T)
/external/valgrind/memcheck/tests/
Dleak-autofreepool-5.stderr.exp26 identifying problems in your program, there's a good chance
27 that fixing those problems will prevent Valgrind aborting or

12345678910>>...42