/external/google-breakpad/src/tools/windows/converter/ |
D | ms_symbol_server_converter.cc | 396 MSSymbolServerConverter::LocatePEFile(const MissingSymbolInfo &missing, in LocatePEFile() argument 398 return LocateFile(missing.code_file, missing.code_identifier, in LocatePEFile() 399 missing.version, pe_file); in LocatePEFile() 403 MSSymbolServerConverter::LocateSymbolFile(const MissingSymbolInfo &missing, in LocateSymbolFile() argument 405 return LocateFile(missing.debug_file, missing.debug_identifier, in LocateSymbolFile() 406 missing.version, symbol_file); in LocateSymbolFile() 489 const MissingSymbolInfo &missing, argument 502 LocateResult result = LocateSymbolFile(missing, &pdb_file); 505 missing.debug_file.c_str()); 506 return LocateAndConvertPEFile(missing, keep_pe_file, converted_symbol_file, [all …]
|
/external/python/cpython2/Lib/email/ |
D | message.py | 321 missing = object() 322 return self.get(name, missing) is not missing 445 missing = object() 446 value = self.get('content-type', missing) 447 if value is missing: 495 missing = object() 496 value = self.get(header, missing) 497 if value is missing: 526 missing = object() 527 params = self._get_params_preserve(missing, header) [all …]
|
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/ |
D | util.py | 39 missing = [] 46 missing.append(e) 65 missing.extend(expected[i:]) 68 return missing, unexpected 78 missing = [] 85 missing.append(item) 102 return missing, unexpected 105 return missing, actual
|
/external/libxml2/python/ |
D | setup.py.in | 22 def missing(file): function 68 if not missing(dir + "/libxml2/libxml/tree.h"): 78 if not missing(dir + "/iconv.h"): 99 if missing("libxml2-py.c") or missing("libxml2.py"): 125 if missing("libxslt-py.c") or missing("libxslt.py"): 126 if missing("xsltgenerator.py") or missing("libxslt-api.xml"): 155 if not missing(dir + "/libxslt/xsltconfig.h"): 204 if missing("MANIFEST"):
|
/external/rust/cxx/tests/ui/ |
D | deny_missing_docs.stderr | 1 error: missing documentation for a struct 13 error: missing documentation for a struct field 19 error: missing documentation for a struct 25 error: missing documentation for an associated constant 31 error: missing documentation for a struct 37 error: missing documentation for a type alias 43 error: missing documentation for a function
|
/external/llvm-project/clang/test/SemaObjC/ |
D | warn-missing-super.m | 44 // CHECK: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call 48 // CHECK-GC: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call 49 // CHECK-GC: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] call 53 // CHECK-GC-ONLY: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] ca… 57 // CHECK-ARC: warn-missing-super.m:36:10: error: ARC forbids explicit message send of 'dealloc'
|
D | super-dealloc-attribute.m | 41 } // expected-warning {{method possibly missing a [super XXX] call}} 44 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc… 47 + (void)registerClass:(id)name {} // expected-warning {{method possibly missing a [super registerCl… 54 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] cal… 55 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc… 56 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}} 65 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] cal… 66 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc… 67 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}} 68 - (void) AnnotMyDeallocMethCAT{}; // expected-warning {{method possibly missing a [super AnnotMyDea… [all …]
|
/external/clang/test/SemaObjC/ |
D | warn-missing-super.m | 44 // CHECK: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call 48 // CHECK-GC: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call 49 // CHECK-GC: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] call 53 // CHECK-GC-ONLY: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] ca… 57 // CHECK-ARC: warn-missing-super.m:36:10: error: ARC forbids explicit message send of 'dealloc'
|
D | super-dealloc-attribute.m | 41 } // expected-warning {{method possibly missing a [super XXX] call}} 44 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc… 47 + (void)registerClass:(id)name {} // expected-warning {{method possibly missing a [super registerCl… 54 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] cal… 55 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc… 56 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}} 65 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] cal… 66 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc… 67 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}} 68 - (void) AnnotMyDeallocMethCAT{}; // expected-warning {{method possibly missing a [super AnnotMyDea… [all …]
|
/external/tcpdump/ |
D | Makefile.in | 287 pcap-missing.h \ 344 missing/dlnames.c \ 345 missing/datalinks.c \ 346 missing/getopt_long.c \ 347 missing/snprintf.c \ 348 missing/strdup.c \ 349 missing/strlcat.c \ 350 missing/strlcpy.c \ 351 missing/strsep.c \ 382 datalinks.o: $(srcdir)/missing/datalinks.c [all …]
|
/external/python/parse_type/parse_type/ |
D | cfparse.py | 46 missing = self.create_missing_types(schema, extra_types, type_builder) 47 if missing: 49 log.debug("MISSING TYPES: %s" % ",".join(missing.keys())) 50 extra_types.update(missing) 72 missing = cls.extract_missing_special_type_names(schema, type_dict) 73 return type_builder.create_type_variants(missing, type_dict)
|
/external/libepoxy/test/ |
D | miscdefines.c | 43 #error missing GLAPI 47 #error missing GLAPIENTRY 51 #error missing GLAPIENTRYP 55 #error missing APIENTRY 59 #error missing APIENTRYP
|
/external/llvm/test/MC/AsmParser/ |
D | macro-qualifier-diagnostics.s | 5 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'missing_qualifier' 11 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'non_identifier_qualifier' 33 # CHECK: error: missing value for required parameter 'parameter' in macro 'missing_required_paramet… 42 # CHECK: error: missing value for required parameter 'second' in macro 'missing_second_required_arg… 51 # CHECK: error: missing value for required parameter 'second' in macro 'second_third_required' 55 # CHECK: error: missing value for required parameter 'third' in macro 'second_third_required' 61 # CHECK: error: missing value for required parameter 'second' in macro 'second_third_required'
|
/external/python/jinja/src/jinja2/ |
D | runtime.py | 18 from .utils import missing 98 if value is not missing: 150 def resolve_or_missing(context, key, missing=missing): argument 155 return missing 232 if rv is missing: 243 rv = missing 332 if item is missing: 375 _after = missing 376 _current = missing 377 _before = missing [all …]
|
/external/llvm-project/llvm/test/MC/AsmParser/ |
D | macro-required-argument-err.s | 3 # CHECK:{{.*}}.s:[[#@LINE+3]]:36: error: missing parameter qualifier for 'parameter' in macro … 8 # CHECK-NEXT:{{.*}}.s:[[#@LINE+3]]:43: error: missing parameter qualifier for 'parameter' in macro … 24 # CHECK-NEXT:{{.*}}.s:[[#@LINE+5]]:17: error: missing value for required parameter 'parameter' in m… 31 # CHECK-NEXT:{{.*}}.s:[[#@LINE+5]]:24: error: missing value for required parameter 'second' in macr… 38 # CHECK-NEXT:{{.*}}.s:[[#@LINE+8]]:24: error: missing value for required parameter 'second' in macr… 41 # CHECK-NEXT:{{.*}}.s:[[#@LINE+5]]:24: error: missing value for required parameter 'third' in macro… 48 # CHECK-NEXT:{{.*}}.s:[[#@LINE+3]]:38: error: missing value for required parameter 'second' in macr…
|
/external/python/cpython2/Lib/unittest/ |
D | util.py | 30 missing = [] 37 missing.append(e) 56 missing.extend(expected[i:]) 59 return missing, unexpected 69 missing = [] 76 missing.append(item) 93 return missing, unexpected 96 return missing, actual
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/ |
D | MainDispatchers.kt | 91 missing() in isDispatchNeeded() 94 missing() in isDispatchNeeded() 97 missing() in isDispatchNeeded() 100 missing() in isDispatchNeeded() 103 missing() in isDispatchNeeded() 105 private fun missing(): Nothing { in isDispatchNeeded() method in kotlinx.coroutines.internal.MissingMainCoroutineDispatcher
|
/external/autotest/server/site_tests/hardware_DiskFirmwareUpgrade/missing_firmware_liteon/ |
D | rules | 1 LITEONIT_LSS_32L6G_HP DS51704 DS517xx - missing.bin 2 LITEONIT_LSS_16L6G_HP DS41702 DS417xx - missing.bin 3 LITEONIT_LSS_32L6G_HP DS51702 DS517xx - missing.bin 4 LITEONIT_LSS_16L6G_HP DS41701 DS417xx - missing.bin
|
/external/llvm-project/mlir/test/IR/ |
D | invalid-affinemap.mlir | 20 #hello_world = affine_map<(i, j) [s0] -> (2*i*, 3*j*i*2 + 5)> // expected-error {{missing right ope… 23 #hello_world = affine_map<(i, j) [s0] -> (i+, i+j+2 + 5)> // expected-error {{missing right operand… 47 #hello_world = affine_map<(i, j) [s0, s1] -> (+i, j)> // expected-error {{missing left operand of b… 50 #hello_world = affine_map<(i, j) [s0, s1] -> (i, *j)> // expected-error {{missing left operand of b… 53 #hello_world = affine_map<(i, j) [s0, s1] -> (floordiv i 2, j)> // expected-error {{missing left op… 56 #hello_world = affine_map<(i, j) [s0, s1] -> (ceildiv i 2, j)> // expected-error {{missing left ope… 59 #hello_world = affine_map<(i, j) [s0, s1] -> (mod i 2, j)> // expected-error {{missing left operand… 64 // expected-error@-2 {{missing operand of negation}} 67 #hello_world = affine_map<(i, j) [s0, s1] -> (i, *j+5)> // expected-error {{missing left operand of… 70 #hello_world = affine_map<(i, j) [s0, s1] -> (i, floordiv j+5)> // expected-error {{missing left op… [all …]
|
/external/libchrome/build/ |
D | check_gn_headers.py | 235 missing = set(d.keys()) - gn 239 missing = FilterOutDepsedRepo(missing, deps) 263 missing -= whitelist 266 missing = sorted(missing) 269 DumpJson(sorted(missing + nonexisting)) 271 if len(missing) == 0 and len(nonexisting) == 0: 274 if len(missing) > 0: 276 for i in missing: 289 for f in missing: 297 if f in missing:
|
/external/libpng/scripts/ |
D | checksym.awk | 24 missing = "error"# log an error on missing symbols 55 missing = $2 140 if (missing != "ignore") { 142 print "png.h:", missing ": missing symbols:", unexported "-" o-1 144 print "png.h:", missing ": missing symbol:", unexported 145 if (missing != "warning")
|
/external/tensorflow/tensorflow/python/platform/ |
D | self_check.py | 47 missing = [] 52 missing.append(dll_name) 53 if missing: 61 % " or ".join(missing))
|
/external/llvm-project/clang/test/Analysis/ |
D | superclass.m | 100 …ViewController:' instance method in UIViewController subclass 'TestB' is missing a [super addChild… 101 …'viewDidAppear:' instance method in UIViewController subclass 'TestB' is missing a [super viewDidA… 102 …ewDidDisappear:' instance method in UIViewController subclass 'TestB' is missing a [super viewDidD… 103 … 'viewDidUnload' instance method in UIViewController subclass 'TestB' is missing a [super viewDidU… 104 …he 'viewDidLoad' instance method in UIViewController subclass 'TestB' is missing a [super viewDidL… 105 …'viewWillUnload' instance method in UIViewController subclass 'TestB' is missing a [super viewWill… 106 …viewWillAppear:' instance method in UIViewController subclass 'TestB' is missing a [super viewWill… 107 …wWillDisappear:' instance method in UIViewController subclass 'TestB' is missing a [super viewWill… 108 …veMemoryWarning' instance method in UIViewController subclass 'TestB' is missing a [super didRecei… 109 …tViewController' instance method in UIViewController subclass 'TestB' is missing a [super removeFr… [all …]
|
/external/clang/test/Analysis/ |
D | superclass.m | 100 …ViewController:' instance method in UIViewController subclass 'TestB' is missing a [super addChild… 101 …'viewDidAppear:' instance method in UIViewController subclass 'TestB' is missing a [super viewDidA… 102 …ewDidDisappear:' instance method in UIViewController subclass 'TestB' is missing a [super viewDidD… 103 … 'viewDidUnload' instance method in UIViewController subclass 'TestB' is missing a [super viewDidU… 104 …he 'viewDidLoad' instance method in UIViewController subclass 'TestB' is missing a [super viewDidL… 105 …'viewWillUnload' instance method in UIViewController subclass 'TestB' is missing a [super viewWill… 106 …viewWillAppear:' instance method in UIViewController subclass 'TestB' is missing a [super viewWill… 107 …wWillDisappear:' instance method in UIViewController subclass 'TestB' is missing a [super viewWill… 108 …veMemoryWarning' instance method in UIViewController subclass 'TestB' is missing a [super didRecei… 109 …tViewController' instance method in UIViewController subclass 'TestB' is missing a [super removeFr… [all …]
|
/external/autotest/client/site_tests/security_SysVIPC/ |
D | security_SysVIPC.py | 79 missing = self.expected_shm.difference(observed_shm) 81 if missing: 83 logging.error(missing) 91 missing = self.expected_sem.difference(observed_sem) 93 if missing: 95 logging.error(missing)
|