/external/llvm-project/compiler-rt/lib/sanitizer_common/scripts/ |
D | cpplint.py | 804 Match(r'^\s*#\s*include\b', clean_lines.elided[linenum - 1])): 1436 self.elided = [] 1444 elided = self._CollapseStrings(self.lines_without_raw_strings[linenum]) 1445 self.elided.append(CleanseComments(elided)) 1452 def _CollapseStrings(elided): argument 1463 if _RE_PATTERN_INCLUDE.match(elided): 1464 return elided 1469 elided = _RE_PATTERN_CLEANSE_LINE_ESCAPES.sub('', elided) 1477 match = Match(r'^([^\'"]*)([\'"])(.*)$', elided) 1479 collapsed += elided [all …]
|
/external/google-styleguide/cpplint/ |
D | cpplint.py | 804 Match(r'^\s*#\s*include\b', clean_lines.elided[linenum - 1])): 1436 self.elided = [] 1444 elided = self._CollapseStrings(self.lines_without_raw_strings[linenum]) 1445 self.elided.append(CleanseComments(elided)) 1452 def _CollapseStrings(elided): argument 1463 if _RE_PATTERN_INCLUDE.match(elided): 1464 return elided 1469 elided = _RE_PATTERN_CLEANSE_LINE_ESCAPES.sub('', elided) 1477 match = Match(r'^([^\'"]*)([\'"])(.*)$', elided) 1479 collapsed += elided [all …]
|
/external/tensorflow/tensorflow/python/keras/layers/ |
D | einsum_dense.py | 249 elided = len(input_shape) - len(input_spec) 258 if elided > 0 and left_elided: 259 for i in range(1, elided): 263 elif elided > 0 and not left_elided: 264 for i in range(len(input_shape) - elided, len(input_shape)): 271 dim: (i + elided) - len(input_shape) for i, dim in enumerate(input_spec) 275 output_dim_map = {dim: (i + elided) for i, dim in enumerate(output_spec)} 312 num_left_elided = elided if left_elided else 0 332 for _ in range(elided):
|
/external/libvpx/libvpx/tools/ |
D | cpplint.py | 618 not Match(r'^\s*$', clean_lines.elided[linenum - 1])): 1182 self.elided = [] 1190 elided = self._CollapseStrings(self.lines_without_raw_strings[linenum]) 1191 self.elided.append(CleanseComments(elided)) 1198 def _CollapseStrings(elided): argument 1209 if not _RE_PATTERN_INCLUDE.match(elided): 1213 elided = _RE_PATTERN_CLEANSE_LINE_ESCAPES.sub('', elided) 1214 elided = _RE_PATTERN_CLEANSE_LINE_SINGLE_QUOTES.sub("''", elided) 1215 elided = _RE_PATTERN_CLEANSE_LINE_DOUBLE_QUOTES.sub('""', elided) 1216 return elided [all …]
|
/external/libaom/libaom/tools/ |
D | cpplint.py | 618 not Match(r'^\s*$', clean_lines.elided[linenum - 1])): 1182 self.elided = [] 1190 elided = self._CollapseStrings(self.lines_without_raw_strings[linenum]) 1191 self.elided.append(CleanseComments(elided)) 1198 def _CollapseStrings(elided): argument 1209 if not _RE_PATTERN_INCLUDE.match(elided): 1213 elided = _RE_PATTERN_CLEANSE_LINE_ESCAPES.sub('', elided) 1214 elided = _RE_PATTERN_CLEANSE_LINE_SINGLE_QUOTES.sub("''", elided) 1215 elided = _RE_PATTERN_CLEANSE_LINE_DOUBLE_QUOTES.sub('""', elided) 1216 return elided [all …]
|
/external/rust/crates/async-trait/src/ |
D | lifetime.rs | 6 pub elided: Vec<Lifetime>, field 15 elided: Vec::new(), in new() 38 let name = format!("{}{}", self.name, self.elided.len()); in next_lifetime() 41 self.elided.push(life.clone()); in next_lifetime()
|
D | expand.rs | 92 let elided = lifetimes.elided; in expand() localVariable 93 input.generics.params = parse_quote!(#(#elided,)* #params); in expand() 217 for elided in lifetimes.elided { in transform_sig() 218 sig.generics.params.push(parse_quote!(#elided)); in transform_sig() 221 .push(parse_quote_spanned!(elided.span()=> #elided: 'async_trait)); in transform_sig()
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
D | cpplint.py | 996 self.elided = [] 1002 elided = self._CollapseStrings(lines[linenum]) 1003 self.elided.append(CleanseComments(elided)) 1010 def _CollapseStrings(elided): argument 1021 if not _RE_PATTERN_INCLUDE.match(elided): 1025 elided = _RE_PATTERN_CLEANSE_LINE_ESCAPES.sub('', elided) 1026 elided = _RE_PATTERN_CLEANSE_LINE_SINGLE_QUOTES.sub("''", elided) 1027 elided = _RE_PATTERN_CLEANSE_LINE_DOUBLE_QUOTES.sub('""', elided) 1028 return elided 1072 line = clean_lines.elided[linenum] [all …]
|
/external/llvm-project/mlir/test/IR/ |
D | pretty-attributes.mlir | 2 // Ensure that the elided version is still parseable, although depending on 3 // what has been elided, it may not be semantically meaningful. 4 // In the typical case where what is being elided is a very large constant
|
/external/llvm/test/Transforms/InstCombine/ |
D | compare-unescaped.ll | 30 ; The comparison should fold to false irrespective of whether the call to malloc can be elided or n… 96 ; call to malloc and the bitcast instructions are elided after that since there are no uses of the … 108 ; The malloc call for %m cannot be elided since it is used in the call to function f. 150 ; The malloc call for %m cannot be elided since it is used in the call to function f.
|
/external/llvm-project/mlir/lib/IR/ |
D | FunctionImplementation.cpp | 291 ArrayRef<StringRef> elided) { in printFunctionAttributes() argument 295 ignoredAttrs.append(elided.begin(), elided.end()); in printFunctionAttributes()
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | compare-unescaped.ll | 33 ; The comparison should fold to false irrespective of whether the call to malloc can be elided or n… 123 ; call to malloc and the bitcast instructions are elided after that since there are no uses of the … 136 ; The malloc call for %m cannot be elided since it is used in the call to function f. 191 ; The malloc call for %m cannot be elided since it is used in the call to function f.
|
/external/llvm-project/llvm/test/FileCheck/ |
D | dump-input-context.txt | 108 ; Now build an alternate set of checks where input lines that might be elided by 277 ; Check how annotations on input lines that might be elided by ellipses affect 278 ; whether they are actually elided. 282 ; elided input lines are considered. 289 ; elided input lines are considered.
|
/external/rust/cxx/tests/ui/ |
D | unsupported_elided.stderr | 1 error[E0726]: implicit elided lifetime not allowed here
|
/external/libwebsockets/include/libwebsockets/ |
D | lws-fts.h | 63 char elided; /* children skipped in interest of antecedent children */ member
|
/external/tensorflow/tensorflow/lite/g3doc/guide/ |
D | ops_compatibility.md | 5 Converter, those operations may be elided or fused, before the supported 80 corresponding model will not be convertible if they can't be elided or fused.
|
/external/llvm-project/llvm/test/Transforms/Inline/ML/ |
D | ml-test-release-mode.ll | 3 ; a smaller result (part of it is that adder gets elided).
|
D | ml-test-development-mode.ll | 3 ; a smaller result (part of it is that adder gets elided).
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | FunctionImplementation.h | 104 ArrayRef<StringRef> elided = {});
|
/external/libwebsockets/lib/core-net/ |
D | network.c | 738 char c, elided = 0, soe = 0, zb = -1, n, ipv4 = 0; in lws_write_numeric_address() local 762 if (!elided && !soe && !v) { in lws_write_numeric_address() 763 elided = soe = 1; in lws_write_numeric_address()
|
/external/rust/crates/async-trait/ |
D | README.md | 157 error[E0726]: implicit elided lifetime not allowed here 170 async fn test<'e>(elided: Elided<'e>) {} 172 async fn test(elided: Elided<'_>) {}
|
/external/rust/crates/async-trait/tests/ui/ |
D | lifetime-span.stderr | 1 error[E0726]: implicit elided lifetime not allowed here
|
/external/llvm-project/clang/test/Analysis/ |
D | lifetime-extension.mm | 59 // 0. Construct the return value of -make (copy/move elided) and
|
/external/openscreen/ |
D | PRESUBMIT.py | 85 line = clean_lines.elided[linenum]
|
/external/llvm/test/CodeGen/ARM/ |
D | copy-cpsr.ll | 16 ; elided).
|