Home
last modified time | relevance | path

Searched refs:breaks (Results 1 - 25 of 29) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
H A DsilentNeverPropagation.js20 const breaks = convert(
24 breaks.state.a
25 breaks.state.z
26 breaks.foo()
32 var breaks = convert(createModule({ a: 12 }, { foo: function () { return true; } })); variable
33 breaks.state.a;
34 breaks.state.z;
35 breaks.foo();
50 declare const breaks: ModuleWithState<{
/third_party/python/Lib/
H A Dbdb.py33 self.breaks = {}
224 if filename not in self.breaks:
227 if lineno not in self.breaks[filename]:
231 if lineno not in self.breaks[filename]:
254 return self.canonic(frame.f_code.co_filename) in self.breaks
345 if not self.breaks:
371 """Add breakpoint to breaks, if not already there."""
372 bp_linenos = self.breaks.setdefault(filename, [])
395 Populates this instance's breaks list from the Breakpoint class's
412 self.breaks[filenam
[all...]
H A Dpdb.py676 Without argument, list all breaks.
690 if self.breaks: # There's at least one
945 those breakpoints. Without argument, clear all breaks (but
947 clear all breaks at that line in that file.
951 reply = input('Clear all breaks? ')
1375 def _print_lines(self, lines, start, breaks=(), frame=None):
1386 if lineno in breaks:
1649 # module-level frame which breaks our code print line number
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDataDrivenNumberFormatTestUtility.java141 * Checks the data file for no unknown IDs in "breaks" columns.
204 // "breaks" column must be last! in run()
205 if (columnNames.contains("breaks") in run()
206 && columnNames.indexOf("breaks") != columnNames.size() - 1) { in run()
207 showError("'breaks' column must be last!"); in run()
225 String actualIDs = tuple.breaks; in run()
241 } else if (runMode == RunMode.INCLUDE_KNOWN_FAILURES || !breaks(codeUnderTestId)) { in run()
245 ? !breaks(codeUnderTestId) in run()
246 : breaks(codeUnderTestId); in run()
287 private boolean breaks(cha method in DataDrivenNumberFormatTestUtility
[all...]
H A DDataDrivenNumberFormatTestData.java132 public String breaks = null; field in DataDrivenNumberFormatTestData
195 "breaks",
296 breaks = value; in setBreaks()
439 // in the next i.e the breaks field.
442 breaks = null; in clearBreaks()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDataDrivenNumberFormatTestUtility.java144 * Checks the data file for no unknown IDs in "breaks" columns.
207 // "breaks" column must be last! in run()
208 if (columnNames.contains("breaks") in run()
209 && columnNames.indexOf("breaks") != columnNames.size() - 1) { in run()
210 showError("'breaks' column must be last!"); in run()
228 String actualIDs = tuple.breaks; in run()
244 } else if (runMode == RunMode.INCLUDE_KNOWN_FAILURES || !breaks(codeUnderTestId)) { in run()
248 ? !breaks(codeUnderTestId) in run()
249 : breaks(codeUnderTestId); in run()
290 private boolean breaks(cha method in DataDrivenNumberFormatTestUtility
[all...]
H A DDataDrivenNumberFormatTestData.java135 public String breaks = null; field in DataDrivenNumberFormatTestData
198 "breaks",
299 breaks = value; in setBreaks()
442 // in the next i.e the breaks field.
445 breaks = null; in clearBreaks()
/third_party/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp267 int breaks = SkDCubic::ComplexBreak(pointsPtr, splitT); in walk() local
268 if (!breaks) { in walk()
272 SkASSERT(breaks <= (int) SK_ARRAY_COUNT(splitT)); in walk()
281 SkTQSort(splitT, splitT + breaks); in walk()
282 for (int index = 0; index <= breaks; ++index) { in walk()
285 split->fT[1] = index < breaks ? splitT[index] : 1; in walk()
295 for (int index = 0; index <= breaks; ++index) { in walk()
309 int breakLimit = std::min(breaks, (int) SK_ARRAY_COUNT(splits) - 1); in walk()
/third_party/PyYAML/lib/yaml/
H A Dscanner.py753 # We ignore spaces, line breaks and comments.
997 breaks, max_indent, end_mark = self.scan_block_scalar_indentation()
1001 breaks, end_mark = self.scan_block_scalar_breaks(indent)
1006 chunks.extend(breaks)
1014 breaks, end_mark = self.scan_block_scalar_breaks(indent)
1023 if not breaks:
1032 # if not breaks:
1046 chunks.extend(breaks)
1242 breaks = self.scan_flow_scalar_breaks(double, start_mark)
1245 elif not breaks
[all...]
H A Demitter.py696 # Check for line breaks, special, and unicode characters.
759 # Spaces followed by breaks, as well as special character are only
765 # Although the plain scalar writer supports breaks, we never emit
857 breaks = False
875 elif breaks:
904 breaks = (ch in '\n\x85\u2028\u2029')
999 breaks = True
1005 if breaks:
1041 breaks = (ch in '\n\x85\u2028\u2029')
1051 breaks
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_pullup.c45 { "sb", "set strict breaks", OFFSET(strict_breaks), AV_OPT_TYPE_BOOL,{.i64=0},-1, 1, FLAGS },
311 if (f->breaks & BREAK_RIGHT || f->next->breaks & BREAK_LEFT) in find_first_break()
333 f2->breaks |= BREAK_RIGHT; in compute_breaks()
338 f1->breaks |= BREAK_LEFT; in compute_breaks()
355 f1->breaks |= BREAK_LEFT; in compute_breaks()
357 f2->breaks |= BREAK_RIGHT; in compute_breaks()
440 && (f0->prev->breaks & BREAK_RIGHT) && (f2->breaks & BREAK_LEFT) in decide_frame_length()
593 f->breaks in pullup_submit_field()
[all...]
H A Dvf_pullup.h33 int breaks; member
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSimpleFilteredSentenceBreakIterator.java312 ICUResourceBundle breaks = rb.findWithFallback("exceptions/SentenceBreak"); in Builder()
314 if (breaks != null) { in Builder()
315 for (int index = 0, size = breaks.getSize(); index < size; ++index) { in Builder()
316 ICUResourceBundle b = (ICUResourceBundle) breaks.get(index); in Builder()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DSimpleFilteredSentenceBreakIterator.java299 ICUResourceBundle breaks = rb.findWithFallback("exceptions/SentenceBreak"); in Builder()
301 if (breaks != null) { in Builder()
302 for (int index = 0, size = breaks.getSize(); index < size; ++index) { in Builder()
303 ICUResourceBundle b = (ICUResourceBundle) breaks.get(index); in Builder()
/third_party/skia/tests/
H A DPathOpsCubicIntersectionTest.cpp650 int breaks = SkDCubic::ComplexBreak(c, loopT); in selfOneOff() local
651 SkASSERT(breaks < 2); in selfOneOff()
652 if (breaks && cubicType == SkCubicType::kLoop) { in selfOneOff()
/third_party/icu/icu4c/source/common/
H A Dfilteredbrk.cpp527 LocalUResourceBundlePointer breaks(ures_getByKeyWithFallback(exceptions.getAlias(), "SentenceBreak", NULL, &subStatus)); in SimpleFilteredBreakIteratorBuilder()
532 fprintf(stderr, "open SentenceBreak %s => %s, %s\n", fromLocale.getBaseName(), ures_getLocale(breaks.getAlias(), &subsub), u_errorName(subStatus)); in SimpleFilteredBreakIteratorBuilder()
547 strs.adoptInstead(ures_getNextResource(breaks.getAlias(), strs.orphan(), &subStatus)); in SimpleFilteredBreakIteratorBuilder()
/third_party/node/deps/icu-small/source/common/
H A Dfilteredbrk.cpp527 LocalUResourceBundlePointer breaks(ures_getByKeyWithFallback(exceptions.getAlias(), "SentenceBreak", nullptr, &subStatus)); in SimpleFilteredBreakIteratorBuilder()
532 fprintf(stderr, "open SentenceBreak %s => %s, %s\n", fromLocale.getBaseName(), ures_getLocale(breaks.getAlias(), &subsub), u_errorName(subStatus)); in SimpleFilteredBreakIteratorBuilder()
547 strs.adoptInstead(ures_getNextResource(breaks.getAlias(), strs.orphan(), &subStatus)); in SimpleFilteredBreakIteratorBuilder()
/third_party/skia/third_party/externals/icu/source/common/
H A Dfilteredbrk.cpp528 LocalUResourceBundlePointer breaks(ures_getByKeyWithFallback(exceptions.getAlias(), "SentenceBreak", NULL, &subStatus)); in SimpleFilteredBreakIteratorBuilder()
533 fprintf(stderr, "open SentenceBreak %s => %s, %s\n", fromLocale.getBaseName(), ures_getLocale(breaks.getAlias(), &subsub), u_errorName(subStatus)); in SimpleFilteredBreakIteratorBuilder()
548 strs.adoptInstead(ures_getNextResource(breaks.getAlias(), strs.orphan(), &subStatus)); in SimpleFilteredBreakIteratorBuilder()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcbiapts.c644 char breaks[] = "** ** * ** *"; /* * the expected break positions */ in TestBreakIteratorRules() local
660 for (i=0; i<(int)sizeof(breaks); i++) { in TestBreakIteratorRules()
661 if (pos == i && breaks[i] != '*') { in TestBreakIteratorRules()
665 if (pos != i && breaks[i] == '*') { in TestBreakIteratorRules()
701 int32_t maxCount = sizeof(breaks); /* fail-safe test limit */ in TestBreakIteratorRules()
1059 log_err("%s:%d too few or many breaks found.\n", __FILE__, __LINE__); in TestBug11665()
1069 log_err("%s:%d Too many breaks.\n", __FILE__, __LINE__); in TestBug11665()
1074 log_err("%s:%d Number of breaks differ between first and second iteration.\n", __FILE__, __LINE__); in TestBug11665()
/third_party/icu/icu4c/source/test/intltest/
H A Dnumberformattesttuple.h99 UnicodeString breaks; member in NumberFormatTestTuple
H A Ddatadrivennumberformattestsuite.cpp122 return (NFTT_GET_FIELD(fTuple, breaks, "").toUpper().indexOf((UChar)0x43) != -1); in breaksC()
H A Dnumberformattesttuple.cpp306 FIELD_INIT(breaks, &gStrOps),
/third_party/python/Lib/idlelib/
H A Dpyshell.py234 # be run. The breaks are saved at that time. If we introduce
235 # a temporary file save feature the save breaks functionality
236 # needs to be re-verified, since the breaks at the time the
237 # temp file is created may differ from the breaks at the last
240 # This is necessary to keep the saved breaks synched with the
247 # breaks stay synched with the subprocess even if one of these
249 breaks = self.breakpoints
262 breaks = self.breakpoints
263 if breaks:
264 new_file.write(filename + '=' + str(breaks)
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/
H A Dhash_test.cc438 // Create a hash view of a buffer to be hashed piecewise, with breaks at the
506 // ways. Arrange for breaks on and near the stride boundaries to look for in TEST()
521 size_t breaks[possible_breaks] = {1, 512, 1023, 1024, 1025, in TEST() local
529 break_locations.insert(breaks[j]); in TEST()
/third_party/mesa3d/src/amd/compiler/
H A Daco_insert_exec_mask.cpp69 loop_info(Block* b, uint16_t num, bool breaks, bool cont, bool discard) in loop_info()
70 : loop_header(b), num_exec_masks(num), has_divergent_break(breaks), in loop_info()
757 /* For normal breaks, this is the exec mask. For discard+break, it's the in add_branch_code()

Completed in 25 milliseconds

12