/third_party/icu/icu4c/source/test/testdata/ |
D | ra.txt | 13 * @note Comments for tag named ra 19 * @note {0} represents the position of OSNAME and {1} represents the position of job name 25 * @note This resource is for test2 33 * @note This resource is for TestTable 39 * @note This resource is for test3 45 * @note This resource is for test4 51 * @note This resource is for test5 57 * @note This resource is for test6 64 * @note This resource is for Tag name: Array 70 * @note This resource is un-named string [all …]
|
/third_party/openssl/test/recipes/ |
D | 01-test_symbol_presence.t | 25 note 56 note "Number of lines in \@nm_lines before massaging: ", scalar @nm_lines; 57 note "Number of lines in \@def_lines before massaging: ", scalar @def_lines; 75 note "Number of lines in \@nm_lines after massaging: ", scalar @nm_lines; 76 note "Number of lines in \@def_lines after massaging: ", scalar @def_lines; 102 note "The following symbols are missing in lib$libname.so:"; 104 note " $_"; 108 note "The following symbols are extra in lib$libname.so:"; 110 note " $_";
|
D | 70-test_sslvertol.t | 40 note("Checking enabled protocol $_"); 45 note("'$1', '$2', '$3' => $versionname"); 48 note("'$1', '$2' => $versionname"); 53 note("TLS versions we can expect: ", join(", ", @available_tls_versions)); 70 ok((note("Record version received: ".$record->version()), 88 ok((note("Record version received: ".$record->version()), 102 ok((note("Record version received: ".
|
D | 15-test_genrsa.t | 29 note "Looking for lowest amount of bits"; 36 note 2 ** $checked, " bits is good"; 39 note 2 ** $checked, " bits is bad"; 45 note "Found lowest allowed amount of bits to be $good";
|
/third_party/libunwind/src/coredump/ |
D | _UCD_corefile_elf.c | 108 Elf64_Nhdr *note = (Elf64_Nhdr *)(segment + parsed_size); in _UCD_elf_visit_notes() local 110 unsigned name_size = UNW_ALIGN(note->n_namesz, 4); in _UCD_elf_visit_notes() 111 unsigned desc_size = UNW_ALIGN(note->n_descsz, 4); in _UCD_elf_visit_notes() 113 char *name = (char *)(note) + header_size; in _UCD_elf_visit_notes() 114 uint8_t *desc = (uint8_t *)(note) + header_size + name_size; in _UCD_elf_visit_notes() 116 ret = visit(note->n_namesz, note->n_descsz, note->n_type, name, desc, arg); in _UCD_elf_visit_notes()
|
/third_party/grpc/examples/node/static_codegen/route_guide/ |
D | route_guide_client.js | 167 call.on('data', function(note) { argument 168 console.log('Got message "' + note.getMessage() + '" at ' + 169 note.getLocation().getLatitude() + ', ' + 170 note.getLocation().getLongitude()); 201 var note = notes[i]; 202 console.log('Sending message "' + note.message + '" at ' + 203 note.location.latitude + ', ' + note.location.longitude); 205 noteMsg.setMessage(note.message); 207 location.setLatitude(note.location.latitude); 208 location.setLongitude(note.location.longitude);
|
D | route_guide_server.js | 185 call.on('data', function(note) { argument 186 var key = pointKey(note.getLocation()); 190 _.each(route_notes[key], function(note) { argument 191 call.write(note); 197 route_notes[key].push(note);
|
/third_party/libunwind/src/dwarf/ |
D | Gfind_unwind_table.c | 97 struct build_id_note* note; in dwarf_find_unwind_table() local 157 note = (void *)(ei->image + phdr[i].p_offset); in dwarf_find_unwind_table() 159 if (((unw_word_t)note + note_len) > max_load_addr || in dwarf_find_unwind_table() 160 ((unw_word_t)note + note_len) < min_load_addr) { in dwarf_find_unwind_table() 166 if (note->nhdr.n_type == NT_GNU_BUILD_ID && in dwarf_find_unwind_table() 167 note->nhdr.n_descsz != 0 && in dwarf_find_unwind_table() 168 note->nhdr.n_namesz == 4 && in dwarf_find_unwind_table() 169 memcmp(note->name, "GNU", 4) == 0) { in dwarf_find_unwind_table() 170 ei->build_id_note = note; in dwarf_find_unwind_table() 175 ALIGN(note->nhdr.n_namesz, 4) + in dwarf_find_unwind_table() [all …]
|
/third_party/grpc/examples/node/dynamic_codegen/route_guide/ |
D | route_guide_client.js | 174 call.on('data', function(note) { argument 175 console.log('Got message "' + note.message + '" at ' + 176 note.location.latitude + ', ' + note.location.longitude); 207 var note = notes[i]; 208 console.log('Sending message "' + note.message + '" at ' + 209 note.location.latitude + ', ' + note.location.longitude); 210 call.write(note);
|
D | route_guide_server.js | 195 call.on('data', function(note) { argument 196 var key = pointKey(note.location); 200 _.each(route_notes[key], function(note) { argument 201 call.write(note); 207 route_notes[key].push(JSON.parse(JSON.stringify(note)));
|
/third_party/node/test/es-module/ |
D | test-esm-cjs-load-error-note.mjs | 6 const Export1 = fixtures.path('/es-modules/es-note-unexpected-export-1.cjs'); 7 const Export2 = fixtures.path('/es-modules/es-note-unexpected-export-2.cjs'); 8 const Import1 = fixtures.path('/es-modules/es-note-unexpected-import-1.cjs'); 9 const Import2 = fixtures.path('/es-modules/es-note-promiserej-import-2.cjs'); 10 const Import3 = fixtures.path('/es-modules/es-note-unexpected-import-3.cjs'); 11 const Import4 = fixtures.path('/es-modules/es-note-unexpected-import-4.cjs'); 12 const Import5 = fixtures.path('/es-modules/es-note-unexpected-import-5.cjs'); 13 const Error1 = fixtures.path('/es-modules/es-note-error-1.mjs'); 14 const Error2 = fixtures.path('/es-modules/es-note-error-2.mjs'); 15 const Error3 = fixtures.path('/es-modules/es-note-error-3.mjs'); [all …]
|
/third_party/libexif/libexif/pentax/ |
D | exif-mnote-data-pentax.c | 360 ExifMnoteDataPentax *note = (ExifMnoteDataPentax *) d; in exif_mnote_data_pentax_get_id() local 362 if (!note) return 0; in exif_mnote_data_pentax_get_id() 363 if (note->count <= n) return 0; in exif_mnote_data_pentax_get_id() 364 return note->entries[n].tag; in exif_mnote_data_pentax_get_id() 370 ExifMnoteDataPentax *note = (ExifMnoteDataPentax *) d; in exif_mnote_data_pentax_get_name() local 372 if (!note) return NULL; in exif_mnote_data_pentax_get_name() 373 if (note->count <= n) return NULL; in exif_mnote_data_pentax_get_name() 374 return mnote_pentax_tag_get_name (note->entries[n].tag); in exif_mnote_data_pentax_get_name() 380 ExifMnoteDataPentax *note = (ExifMnoteDataPentax *) d; in exif_mnote_data_pentax_get_title() local 382 if (!note) return NULL; in exif_mnote_data_pentax_get_title() [all …]
|
/third_party/skia/src/core/ |
D | SkOpts_erms.cpp | 13 static const char* note = "MSAN can't see that rep sto initializes memory."; variable 18 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 22 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 27 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 32 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 36 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 40 sk_msan_mark_initialized(dst,dst+n,note); in repsto()
|
/third_party/grpc/tools/profiling/microbenchmarks/bm_diff/ |
D | bm_diff.py | 209 note = None 211 note = 'Corrupt JSON data (indicates timeout or crash): \n%s' % fmt_dict( 214 if note: 215 note += '\n\nMissing files (indicates new benchmark): \n%s' % fmt_dict( 218 note = '\n\nMissing files (indicates new benchmark): \n%s' % fmt_dict( 221 return tabulate.tabulate(rows, headers=headers, floatfmt='+.2f'), note 223 return None, note 228 diff, note = diff(args.benchmarks, args.loops, args.regex, args.track, variable 230 print('%s\n%s' % (note, diff if diff else "No performance differences"))
|
/third_party/pyyaml/lib3/yaml/ |
D | error.py | 51 problem=None, problem_mark=None, note=None): argument 56 self.note = note 72 if self.note is not None: 73 lines.append(self.note)
|
/third_party/boost/libs/asio/doc/requirements/ |
D | IoObjectService.qbk | 19 [[expression] [return type] [assertion/note[br]pre/post-condition]] 28 [note: `X::implementation_type` has a public default constructor and 43 [note: `destroy()` will only be called on a value that has previously been 51 [note: only required for I/O objects that support movability.] 58 [note: only required for I/O objects that support movability.]
|
/third_party/pyyaml/lib/yaml/ |
D | error.py | 51 problem=None, problem_mark=None, note=None): argument 56 self.note = note 72 if self.note is not None: 73 lines.append(self.note)
|
/third_party/ltp/testcases/kernel/syscalls/sigrelse/ |
D | sigrelse01.c | 384 char note[MAXMESG]; /* message buffer for pipe */ in child() local 390 (void)strcpy(note, READY); in child() 395 (void)strcpy(note, mesg); in child() 399 (void)strcpy(note, mesg); in child() 408 (void)sprintf(note, in child() 426 if (write_pipe(pipe_fd[1], note) < 0) { in child() 483 (void)sprintf(note, in child() 504 (void)memcpy(note, (char *)sig_array, sizeof(sig_array)); in child() 508 if (write_pipe(pipe_fd[1], note) < 0) { in child()
|
/third_party/skia/third_party/externals/tint/src/diagnostic/ |
D | diagnostic.h | 127 diag::Diagnostic note{}; in add_note() 128 note.severity = diag::Severity::Note; in add_note() 129 note.system = system; in add_note() 130 note.source = source; in add_note() 131 note.message = note_msg; in add_note() 132 add(std::move(note)); in add_note()
|
/third_party/grpc/examples/csharp/RouteGuide/RouteGuideServer/ |
D | RouteGuideImpl.cs | 110 var note = requestStream.Current; in RouteChat() 111 List<RouteNote> prevNotes = AddNoteForLocation(note.Location, note); in RouteChat() 122 private List<RouteNote> AddNoteForLocation(Point location, RouteNote note) in AddNoteForLocation() argument 132 notes.Add(note); in AddNoteForLocation()
|
/third_party/json/test/thirdparty/Fuzzer/test/ |
D | lit.cfg | 18 lit_config.note('lsan feature available') 21 lit_config.note('lsan feature unavailable') 26 lit_config.note('linux feature available') 29 lit_config.note('linux feature unavailable')
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/ |
D | MusicKeyboardView.java | 158 int note = pitch % NOTES_PER_OCTAVE; in makeBlackRectangles() local 159 if (NOTE_IN_OCTAVE_IS_BLACK[note]) { in makeBlackRectangles() 183 int note = pitch % NOTES_PER_OCTAVE; in onDraw() local 184 if (!NOTE_IN_OCTAVE_IS_BLACK[note]) { in onDraw() 197 int note = pitch % NOTES_PER_OCTAVE; in onDraw() local 198 if (NOTE_IN_OCTAVE_IS_BLACK[note]) { in onDraw() 305 int note = pitch % NOTES_PER_OCTAVE; in isPitchBlack() local 306 return NOTE_IN_OCTAVE_IS_BLACK[note]; in isPitchBlack()
|
/third_party/grpc/examples/objective-c/route_guide/ |
D | ViewControllers.m | 56 RTGRouteNote *note = [self message]; 57 note.message = message; 58 note.location.latitude = (int32_t)latitude * 1E7; 59 note.location.longitude = (int32_t)longitude * 1E7; 60 return note; 331 for (RTGRouteNote *note in notes) { 332 [call writeMessage:note]; 338 RTGRouteNote *note = (RTGRouteNote *)message; 339 if (note) { 341 note.message, note.location]; [all …]
|
/third_party/toybox/toys/posix/ |
D | file.c | 163 char *note = map+sh_offset; local 174 n_namesz = elf_int(note, 4); 175 n_descsz = elf_int(note+4, 4); 176 n_type = elf_int(note+8, 4); 182 if (n_namesz==4 && !memcmp(note+12, "GNU", 4)) { 185 for (j = 0; j < n_descsz; ++j) printf("%02x", note[16 + j]); 187 } else if (n_namesz==8 && !memcmp(note+12, "Android", 8)) { 189 printf(", for Android %d", (int)elf_int(note+20, 4)); 193 printf(", built by NDK %.64s (%.64s)", note+24, note+24+64); 197 note += notesz;
|
/third_party/libuv/docs/src/ |
D | fs.rst | 15 .. note:: 214 .. note:: 245 .. note:: 299 .. note:: 302 .. note:: 315 .. note:: 318 .. note:: 333 .. note:: 347 .. note:: 410 .. note:: [all …]
|