/third_party/python/Lib/test/ |
H A D | test_rlcompleter.py | 20 self.stdcompleter.complete('', 0) 101 self.assertEqual(completer.complete('f.b', 0), 'f.bar') 116 self.assertEqual(completer.complete('f.b', 0), 'f.bar') 126 self.assertEqual(completer.complete('f.', 0), 'f.bar') 131 self.assertEqual(completer.complete('', 0), '\t') 132 self.assertEqual(completer.complete('a', 0), 'and ') 133 self.assertEqual(completer.complete('a', 1), 'as ') 134 self.assertEqual(completer.complete('as', 2), 'assert ') 135 self.assertEqual(completer.complete('an', 0), 'and ') 136 self.assertEqual(completer.complete('p [all...] |
/third_party/node/test/parallel/ |
H A D | test-repl-tab-complete.js | 71 testMe.complete('inner.o', getNoResultsFunction()); 73 testMe.complete('console.lo', common.mustCall(function(error, data) { 77 testMe.complete('console?.lo', common.mustCall((error, data) => { 81 testMe.complete('console?.zzz', common.mustCall((error, data) => { 85 testMe.complete('console?.', common.mustCall((error, data) => { 92 testMe.complete('inner.o', common.mustCall(function(error, data) { 104 testMe.complete('inner.o', getNoResultsFunction()); 113 testMe.complete('inner.o', getNoResultsFunction()); 115 // When you close the function scope tab complete will not return the 118 testMe.complete('inne [all...] |
H A D | test-fs-sir-writes-alot.js | 39 let complete = 0; 46 complete++; 47 if (complete === N) {
|
H A D | test-repl-tab-complete-crash.js | 17 testMe.complete('arguments.', common.mustCall((err, completions) => { 25 testMe.complete('undef.', common.mustCall((err, completions) => {
|
/third_party/rust/crates/regex/src/literal/ |
H A D | imp.rs | 14 complete: bool, 58 let complete = lits.all_complete(); in new() 60 complete, in new() 71 /// is comprised of a single complete literal `a`, but the regular 73 pub fn complete(&self) -> bool { in complete() functions 74 self.complete && !self.is_empty() in complete() 195 if sset.complete { in new() 280 complete: bool, 289 complete: true, in new() 297 sset.complete in prefixes() [all...] |
/third_party/rust/crates/nom/tests/ |
H A D | issues.rs | 26 combinator::{complete, map, opt}, 38 let (i, _) = opt(complete(space))(input)?; in spaces_or_int() 39 let (i, res) = map(complete(digit), |x| { in spaces_or_int() 104 use nom::bytes::complete::{is_not, tag}; in issue_717() 112 use nom::combinator::complete; 127 separated_list0(complete(tag(",")), complete(be_f64))(input) in list() 164 use nom::{character::complete::char, error::context, multi::many0_count}; in issue_942() 172 use nom::character::complete::char; in issue_many_m_n_with_zeros() 180 use nom::character::complete in issue_1027_convert_error_panic_nonempty() [all...] |
H A D | escaped.rs | 1 use nom::bytes::complete::escaped; 2 use nom::character::complete::digit1; 3 use nom::character::complete::one_of; 12 use nom::bytes::complete::{escaped_transform, tag}; in esc_trans()
|
H A D | arithmetic.rs | 3 bytes::complete::tag, 4 character::complete::char, 5 character::complete::{digit1 as digit, space0 as space},
|
H A D | reborrow_fold.rs | 6 use nom::bytes::complete::is_not; 7 use nom::character::complete::char;
|
/third_party/node/deps/v8/tools/ |
H A D | bash-completion.sh | 77 complete -F _d8_flag -f d8 v8 v8-debug 78 complete -F _test_flag -f cctest unittests 96 _ORIGINAL_GDB_COMPLETIONS="$(complete -p gdb 2>/dev/null \ 117 complete -F _gdb_v8_flag -f gdb 138 complete -F _gm_flag gm.py gm
|
/third_party/f2fs-tools/fsck/ |
H A D | dict.c | 1065 dnode_t *complete = 0; in dict_load_end() local 1080 if (complete == NULL && botrowcount-- == 0) { in dict_load_end() 1084 complete = tree[0]; in dict_load_end() 1086 if (complete != 0) { in dict_load_end() 1088 complete->right = dictnil; in dict_load_end() 1090 tree[level]->right = complete; in dict_load_end() 1091 complete->parent = tree[level]; in dict_load_end() 1092 complete = tree[level]; in dict_load_end() 1098 if (complete == NULL) { in dict_load_end() 1102 complete in dict_load_end() [all...] |
/third_party/curl/docs/examples/ |
H A D | crawler.c | 188 int complete = 0; in main() local 210 printf("[%d] HTTP 200 (%s): %s\n", complete, ctype, url); in main() 212 if(pending < max_requests && (complete + pending) < max_total) { in main() 219 printf("[%d] HTTP %d: %s\n", complete, (int) res_status, url); in main() 223 printf("[%d] Connection failure: %s\n", complete, url); in main() 229 complete++; in main()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_fence.cpp | 167 bool complete = fence->cmdqueue_fence->GetCompletedValue() >= fence->value; in d3d12_fence_finish() 168 if (!complete && timeout_ns) in d3d12_fence_finish() 169 complete = wait_event(fence->event, fence->event_fd, timeout_ns); in d3d12_fence_finish() 171 fence->signaled = complete; in d3d12_fence_finish() 172 return complete; in d3d12_fence_finish()
|
/third_party/rust/crates/nom/examples/ |
H A D | json.rs | 5 bytes::complete::{escaped, tag, take_while}, 6 character::complete::{alphanumeric1 as alphanumeric, char, one_of}, 10 number::complete::double,
|
/third_party/rust/crates/clap/clap_complete/tests/ |
H A D | dynamic.rs | 20 let completions = clap_complete::dynamic::bash::complete( in suggest_subcommand_subset() 66 let completions = clap_complete::dynamic::bash::complete( in suggest_long_flag_subset() 101 let completions = clap_complete::dynamic::bash::complete( in suggest_possible_value_subset() 147 let completions = clap_complete::dynamic::bash::complete( in suggest_additional_short_flags()
|
/third_party/rust/crates/rust-cexpr/src/ |
H A D | literal.rs | 43 use nom::bytes::complete::is_not; 44 use nom::bytes::complete::tag; 45 use nom::character::complete::{char, one_of}; 46 use nom::combinator::{complete, map, map_opt, opt, recognize}; 259 map_opt(preceded(tag("0x"), many1(complete(hexadecimal))), |v| { in c_int() 262 map_opt(preceded(tag("0X"), many1(complete(hexadecimal))), |v| { in c_int() 265 map_opt(preceded(tag("0b"), many1(complete(binary))), |v| { in c_int() 268 map_opt(preceded(tag("0B"), many1(complete(binary))), |v| { in c_int() 271 map_opt(preceded(char('0'), many1(complete(octal))), |v| { in c_int() 274 map_opt(many1(complete(decima in c_int() [all...] |
H A D | expr.rs | 33 use nom::combinator::{complete, map, map_opt}; 308 pair(complete(one_of_punctuation(&["*", "/", "%"][..])), |i| { in mul_div_rem() 327 pair(complete(one_of_punctuation(&["+", "-"][..])), |i| { in add_sub() 345 pair(complete(one_of_punctuation(&["<<", ">>"][..])), |i| { in shl_shr() 363 preceded(complete(p("&")), |i| self.shl_shr(i)), in and() 375 preceded(complete(p("^")), |i| self.and(i)), in xor() 387 preceded(complete(p("|")), |i| self.xor(i)), in or() 461 pair(|i| self.string(i), many0(complete(|i| self.string(i)))), in concat_str()
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | SymbolTable.cpp | 198 void TVariable::dump(TInfoSink& infoSink, bool complete) const in dump() 200 if (complete) { in dump() 214 void TFunction::dump(TInfoSink& infoSink, bool complete) const in dump() 216 if (complete) { in dump() 244 void TSymbolTableLevel::dump(TInfoSink& infoSink, bool complete) const in dump() 248 (*it).second->dump(infoSink, complete); in dump() 251 void TSymbolTable::dump(TInfoSink& infoSink, bool complete) const in dump() 255 table[level]->dump(infoSink, complete); in dump()
|
/third_party/rust/crates/clap/clap_complete/tests/snapshots/ |
H A D | register_minimal.bash | 13 COMPREPLY=( $("my-app" complete --index ${COMP_CWORD} --type ${COMP_TYPE} ${SPACE_ARG} --ifs="$IFS" -- "${COMP_WORDS[@]}") ) 20 complete -o nospace -o bashdefault -F _clap_complete_my_app my-app
|
/third_party/rust/crates/nom/benchmarks/benches/ |
H A D | number.rs | 8 use nom::number::complete; 11 complete::be_u64(i) in parser()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LineEditor/ |
H A D | LineEditor.h | 81 /// which takes arguments of type StringRef (the string to complete) and 90 /// StringRef (the string to complete) and size_t (the zero-based cursor 101 /// \param Buffer The string to complete 118 virtual CompletionAction complete(StringRef Buffer, size_t Pos) const = 0; 123 CompletionAction complete(StringRef Buffer, size_t Pos) const override; 132 CompletionAction complete(StringRef Buffer, size_t Pos) const override {
|
/third_party/rust/crates/nom/fuzz/fuzz_targets/ |
H A D | fuzz_arithmetic.rs | 9 bytes::complete::tag, 10 character::complete::char, 11 character::complete::{digit1 as digit, space0 as space},
|
/third_party/python/Lib/idlelib/ |
H A D | autocomplete.py | 78 self.autocompletewindow.complete() 104 If complete is True, then if there's nothing to complete and no 108 evalfuncs, complete, wantwin, mode = args 151 if complete and not comp_what and not comp_start: 159 complete, mode, wantwin)
|
/third_party/curl/src/ |
H A D | tool_cb_wrt.c | 232 /* attempt to complete an incomplete UTF-8 sequence from previous call. in tool_write_cb() 235 bool complete = false; in tool_write_cb() local 240 complete = true; in tool_write_cb() 251 complete = true; in tool_write_cb() 267 complete = true; in tool_write_cb() 271 if(complete) { in tool_write_cb()
|
/third_party/rust/crates/nom/src/combinator/ |
H A D | tests.rs | 2 use crate::bytes::complete::take; 9 use crate::number::complete::u8; 163 use crate::bytes::complete::take; in test_verify_ref() 181 use crate::bytes::complete::take; in test_verify_alloc() 196 use crate::bytes::complete::take; in test_into()
|