Searched refs:canonical (Results 1 - 16 of 16) sorted by relevance

/freebsd-11.0-release/contrib/gdb/gdb/
H A Dlinespec.h27 char ***canonical, int *not_found_ptr);
H A Dlinespec.c57 char ***canonical,
62 char ***canonical,
69 char ***canonical,
110 char ***canonical,
117 char ***canonical,
122 char ***canonical,
128 char ***canonical,
375 Build a canonical line spec in CANONICAL if it is non-NULL and if
377 If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
378 If SYMNAME is NULL the line number from SAL is used and the canonical
382 build_canonical_line_spec(struct symtab_and_line *sal, char *symname, char ***canonical) argument
475 decode_line_2(struct symbol *sym_arr[], int nelts, int funfirstline, char ***canonical) argument
655 decode_line_1(char **argptr, int funfirstline, struct symtab *default_symtab, int default_line, char ***canonical, int *not_found_ptr) argument
1073 decode_objc(char **argptr, int funfirstline, struct symtab *file_symtab, char ***canonical, char *saved_arg) argument
1160 decode_compound(char **argptr, int funfirstline, char ***canonical, char *saved_arg, char *p) argument
1399 find_method(int funfirstline, char ***canonical, char *saved_arg, char *copy, struct type *t, struct symbol *sym_class) argument
1559 decode_all_digits(char **argptr, struct symtab *default_symtab, int default_line, char ***canonical, struct symtab *file_symtab, char *q) argument
1644 decode_dollar(char *copy, int funfirstline, struct symtab *default_symtab, char ***canonical, struct symtab *file_symtab) argument
1721 decode_variable(char *copy, int funfirstline, char ***canonical, struct symtab *file_symtab, int *not_found_ptr) argument
1776 symbol_found(int funfirstline, char ***canonical, char *copy, struct symbol *sym, struct symtab *file_symtab, struct symtab *sym_symtab) argument
[all...]
H A Dtracepoint.c381 char **canonical = (char **) NULL; local
395 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL, 0, &canonical, NULL);
413 /* If a canonical line spec is needed use that instead of the
415 if (canonical != (char **) NULL && canonical[i] != NULL)
416 t->addr_string = canonical[i];
2341 char **canonical, *symname, *save_args = args; local
2348 sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL);
H A Dbreakpoint.c4434 char **canonical = (char **) NULL;
4438 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical, NULL);
4458 if (canonical != (char **) NULL)
4460 make_cleanup (xfree, canonical);
4462 if (canonical[0] != NULL)
4463 make_cleanup (xfree, canonical[0]);
4468 /* Remove the canonical strings from the cleanup, they are needed below. */
4469 if (canonical != (char **) NULL)
4480 if (canonical != (char **) NULL && canonical[
4425 char **canonical = (char **) NULL; local
[all...]
H A Dada-lang.c2560 /* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by their */
4243 'canonical line spec', then *CANONICAL is set to point to an array
4246 canonical line spec for the ith returned sal, if needed. If no
4247 canonical line specs are required and CANONICAL is non-null,
4250 A 'canonical line spec' is simply a name (in the format of the
4256 or static functions without a filename yield a canonical line spec.
4262 int funfirstline, char ***canonical)
4281 if (canonical != NULL)
4282 *canonical = (char **) NULL;
4308 return all_sals_for_line (file_table->filename, line_num, canonical);
4251 ada_finish_decode_line_1(char **spec, struct symtab *file_table, int funfirstline, char ***canonical) argument
4764 all_sals_for_line(const char *filename, int line_num, char ***canonical) argument
[all...]
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_entry_link_resolver.c73 struct archive_entry *canonical; member in struct:links_entry
206 archive_entry_pathname(le->canonical));
214 archive_entry_pathname(le->canonical));
234 archive_entry_pathname(le->canonical));
271 archive_entry_free(res->spare->canonical);
285 && dev == archive_entry_dev(le->canonical)
286 && ino == archive_entry_ino64(le->canonical)) {
320 archive_entry_free(res->spare->canonical);
362 le->canonical = archive_entry_clone(entry);
429 archive_entry_free(res->spare->canonical);
[all...]
/freebsd-11.0-release/share/mk/
H A Dbsd.obj.mk77 # If ${.OBJDIR} is constructed using canonical cases 1 or 5, or
89 canonical ${CANONICALOBJDIR}"
/freebsd-11.0-release/contrib/gcc/
H A Dreal.h52 unsigned int canonical : 1;
H A Dreal.c137 /* Initialize R with the canonical quiet NaN. */
145 r->canonical = 1;
155 r->canonical = 1;
652 r->canonical = 0;
1218 /* The significand is ignored for canonical NaNs. */
1219 if (a->canonical || b->canonical)
1220 return a->canonical == b->canonical;
1475 /* ??? Print the significand as well, if not canonical
[all...]
/freebsd-11.0-release/contrib/gcc/config/mips/
H A Dmips.c704 taken as the canonical name for that ISA.
9635 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
9637 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
9638 given++, canonical++;
9640 return ((*given == 0 && *canonical == 0)
9641 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
9651 mips_matching_cpu_name_p (const char *canonical, const char *given)
9655 if (mips_strict_matching_cpu_name_p (canonical, given))
9665 /* Skip over some well-known prefixes in the canonical name,
9667 if (TOLOWER (canonical[
9584 mips_strict_matching_cpu_name_p(const char *canonical, const char *given) argument
9600 mips_matching_cpu_name_p(const char *canonical, const char *given) argument
[all...]
/freebsd-11.0-release/contrib/binutils/gas/config/
H A Dtc-mips.c14021 the function's canonical address.
15184 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
15186 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
15187 given++, canonical++; argument
15189 return ((*given == 0 && *canonical == 0)
15190 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
15200 mips_matching_cpu_name_p (const char *canonical, const char *given)
15204 if (mips_strict_matching_cpu_name_p (canonical, given))
15214 /* Skip over some well-known prefixes in the canonical name,
15216 if (TOLOWER (canonical[
15171 mips_strict_matching_cpu_name_p(const char *canonical, const char *given) argument
[all...]
/freebsd-11.0-release/contrib/gdb/
H A Dltconfig342 HOST is the canonical host system name [default=guessed].
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp196 // If the canonical form of this type isn't the right kind, reject it.
209 /// to getting the canonical type, but it doesn't remove *all* typedefs. For
340 /// same dynamic type as the canonical type.
438 // If the canonical form of this type isn't the right kind, reject it.
457 // If the canonical form of this type isn't the right kind, reject it.
1459 // There is no sugar for ObjCObjectType's, just return the canonical
1473 // There is no sugar for ObjCQualifiedIdType's, just return the canonical
1483 // There is no sugar for ObjCQualifiedClassType's, just return the canonical
2347 // Note that this intentionally does not use the canonical type.
2664 QualType canonical,
[all...]
H A DASTContext.cpp591 // Check if we already have a canonical template template parameter.
600 // Build a canonical template parameter list.
672 // Create the canonical template template parameter entry.
2168 // If the base type is not canonical, make the appropriate canonical type.
2334 // If the pointee type isn't canonical, this won't be a canonical type either,
2335 // so fill in the canonical type field.
2362 // If the pointee type isn't canonical, this won't be a canonical typ
3760 QualType canonical; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h864 /// to getting the canonical type, but it doesn't remove *all* typedefs. For
1123 /// \brief The canonical type of this type. A QualType.
1225 /// A central concept with types is that each type always has a canonical
1226 /// type. A canonical type is the type with any typedef names stripped out
1233 /// There will be a Type object created for 'int'. Since int is canonical, its
1237 /// canonical. Finally, there is a PointerType type for 'foo*' whose canonical
1238 /// type is 'int*', and there is a TypedefType for 'bar', whose canonical type
1241 /// Non-canonical types are useful for emitting diagnostics, without losing
1399 /// in non-canonical form
[all...]
/freebsd-11.0-release/contrib/unbound/
H A Dconfigure1581 string will be appended to the Python interpreter canonical
6520 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
6553 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;

Completed in 481 milliseconds