Home
last modified time | relevance | path

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

12345678910>>...54

/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
47 public ParseResult(T result, List<Problem> problems, CommentsCollection commentsCollection) { in ParseResult() argument
50 this.problems = problems; in ParseResult()
57 return problems.isEmpty() && result != null; in isSuccessful()
73 return problems; in getProblems()
103 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/mockito/src/test/java/org/mockitoutil/async/
DAsyncTesting.java19 private final LinkedList<Exception> problems = new LinkedList<Exception>(); field in AsyncTesting
43 problems.add(e); in runAfter()
69 if (!problems.isEmpty()) { in cleanUp()
70 …throw new RuntimeException("Caught " + problems.size() + " exception(s). First one is included as … in cleanUp()
/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/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/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/fonttools/Lib/fontTools/varLib/
Dinterpolatable.py116 problems = OrderedDict()
119 problems.setdefault(glyphname, []).append(problem)
261 return problems
303 problems = test(glyphsets, glyphs=glyphs, names=names)
307 print(json.dumps(problems))
309 for glyph, glyph_problems in problems.items():
364 if problems:
365 return problems
371 problems = main() variable
372 sys.exit(int(bool(problems)))
/external/javaparser/javaparser-core-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/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/gptfdisk/
Dgpt.cc213 int problems = 0, alignProbs = 0; in Verify() local
219 problems++; in Verify()
226 problems++; in Verify()
233 problems++; in Verify()
240 problems++; in Verify()
248 problems++; in Verify()
255 problems++; in Verify()
264 problems++; in Verify()
270 problems++; in Verify()
277 problems++; in Verify()
[all …]
/external/libwebsockets/READMEs/
DREADME.contributing.md7 For nontrivial problems, it's probably best to discuss on the mailing list,
27 If there are non-functional problems I will clean them out when I apply the
30 If there are functional problems (eg broken error paths etc) if they are
32 larger problems, or consequences to the patch will have to discuss how to
/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
275 ZLIB problems, see test_gzip
283 Avoid problems w/readline doing a putenv and leaking on exit
[all …]
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
DImplementsValidator.java242 Problems problems = new Problems(kind); in verifySdkMethod() local
247 problems.add(problem, sdk.sdkInt); in verifySdkMethod()
251 if (problems.any()) { in verifySdkMethod()
252 problems.recount(messager, methodElement); in verifySdkMethod()
312 private final Map<String, Set<Integer>> problems = new HashMap<>(); field in ImplementsValidator.Problems
319 Set<Integer> sdks = problems.get(problem); in add()
321 problems.put(problem, sdks = new TreeSet<>()); in add()
327 return !problems.isEmpty(); in any()
331 for (Entry<String, Set<Integer>> e : problems.entrySet()) { in recount()
/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/cldr/tools/java/org/unicode/cldr/util/
DVettingViewer.java450 public final Set<Choice> problems; field in VettingViewer.WritingInfo
453 public WritingInfo(PathHeader pretty, EnumSet<Choice> problems, CharSequence htmlMessage) { in WritingInfo() argument
456 this.problems = Collections.unmodifiableSet(problems.clone()); in WritingInfo()
541 EnumSet<Choice> problems = EnumSet.noneOf(Choice.class); field in VettingViewer.FileInfo
579 problems = EnumSet.noneOf(Choice.class); in getFileInfo()
631 problems.clear(); in getFileInfo()
646 problems.add(Choice.changedOldValue); in getFileInfo()
657 problems.add(Choice.missingCoverage); in getFileInfo()
661 problems.add(Choice.englishChanged); in getFileInfo()
667 problems.add(Choice.englishChanged); in getFileInfo()
[all …]
/external/e2fsprogs/scrub/
De2scrub.conf.in7 # e-mail destination used by e2scrub_fail when problems are found with
11 # e-mail sender used by e2scrub_fail when problems are found with
/external/curl/tests/data/
DDISABLED19 # test 1510 causes problems on the CI on github
23 # test 1801 causes problems on Mac OS X and github
/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/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/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/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/google-fruit/extras/packaging/
Ddebian.control15 most injection problems at compile-time.
24 most injection problems at compile-time.
/external/llvm-project/lldb/docs/status/
Dgoals.rst11 works". We aim to solve these long-standing problems where debuggers get
18 the LLVM project, we believe that many of these problems will be defined away,
21 problems.

12345678910>>...54