/third_party/pcre2/pcre2/src/ |
H A D | pcre2_convert.c | 801 BOOL with_escape, is_start, after_separator; in convert_glob() local 828 is_start = TRUE; in convert_glob() 833 is_start = FALSE; in convert_glob() 836 is_start = FALSE; in convert_glob() 839 if (is_start) in convert_glob() 852 is_start = pattern == pattern_start + 1; in convert_glob() 862 after_separator = is_start || (pattern[-2] == separator); in convert_glob() 879 if (is_start) in convert_glob() 944 if (is_start) continue; in convert_glob() 947 if (!is_start) in convert_glob() [all...] |
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-write.h | 238 * \param is_start: nonzero if this is the first fragment of the message 245 lws_write_ws_flags(int initial, int is_start, int is_end) in lws_write_ws_flags() argument 249 if (is_start) in lws_write_ws_flags()
|
/third_party/ffmpeg/libavformat/ |
H A D | rtpdec_qt.c | 102 int data_len, pos, is_start, is_finish; in qt_rtp_parse_packet() local 110 is_start = get_bits1(&gb); in qt_rtp_parse_packet() 112 if (!is_start || !is_finish) { in qt_rtp_parse_packet()
|
H A D | mpegtsenc.c | 1493 int val, is_start, len, header_len, write_pcr, flags; in mpegts_write_pes() local 1515 is_start = 1; in mpegts_write_pes() 1565 if (pcr - ts_st->last_pcr >= ts_st->pcr_period && is_start) { in mpegts_write_pes() 1577 if (is_start) in mpegts_write_pes() 1588 if (key && is_start && pts != AV_NOPTS_VALUE && in mpegts_write_pes() 1605 if (is_start) { in mpegts_write_pes() 1730 is_start = 0; in mpegts_write_pes()
|
H A D | mpegts.c | 115 int is_start, int64_t pos); 1014 const uint8_t *buf, int buf_size, int is_start) in write_section_data() 1020 if (is_start) { in write_section_data() 1736 const uint8_t *buf, int buf_size, int is_start, in mpegts_push_data() 1747 if (is_start) { in mpegts_push_data() 3403 int len, pid, cc, expected_cc, cc_ok, afc, is_start, is_discontinuity, in handle_packet() local 3408 is_start = packet[1] & 0x40; in handle_packet() 3410 if (ts->auto_guess && !tss && is_start) { in handle_packet() 3416 if (is_start) in handle_packet() 3478 if (is_start) { in handle_packet() 1013 write_section_data(MpegTSContext *ts, MpegTSFilter *tss1, const uint8_t *buf, int buf_size, int is_start) write_section_data() argument 1735 mpegts_push_data(MpegTSFilter *filter, const uint8_t *buf, int buf_size, int is_start, int64_t pos) mpegts_push_data() argument [all...] |
/third_party/rust/crates/regex/src/ |
H A D | input.rs | 22 pub fn is_start(&self) -> bool { in is_start() functions 294 if c1.is_none() && !at.is_start() { in is_empty_match() 308 if c1.is_none() && !at.is_start() { in is_empty_match()
|
H A D | backtrack.rs | 139 return if !at.is_start() { false } else { self.backtrack(at) }; in exec_()
|
H A D | pikevm.rs | 142 || (!at.is_start() && self.prog.is_anchored_start) in exec_()
|
/third_party/node/deps/v8/src/debug/ |
H A D | liveedit.cc | 537 SourcePositionEvent(FunctionLiteral* literal, bool is_start) in SourcePositionEvent() 538 : position(is_start ? literal->start_position() in SourcePositionEvent() 540 type(is_start ? LITERAL_STARTS : LITERAL_ENDS), in SourcePositionEvent() 542 SourcePositionEvent(const SourceChangeRange& change, bool is_start) in SourcePositionEvent() 543 : position(is_start ? change.start_position : change.end_position), in SourcePositionEvent() 544 type(is_start ? DIFF_STARTS : DIFF_ENDS), in SourcePositionEvent()
|
/third_party/node/deps/v8/src/strings/ |
H A D | unicode.cc | 81 bool is_start = IsStart(field); in LookupPredicate() local 82 return (entry == value) || (entry < value && is_start); in LookupPredicate() 135 bool is_start = IsStart(field); in LookupMapping() local 136 bool found = (entry == key) || (entry < key && is_start); in LookupMapping()
|
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 3462 my $is_start = 0; 3473 $is_start = 1; 3494 if ($is_start && $is_end && $length < $min_conf_desc_length) { 3498 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
|