aboutsummaryrefslogtreecommitdiff
path: root/gdb/dictionary.h
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:36:23 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:46:02 -0500
commitc583a2520616c2736cffc389c89a48b159366e6c (patch)
treeb4925f26506fcee96c16119431c01760f05db95d /gdb/dictionary.h
parentca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff)
downloadgdb-users/simark/clang-format.zip
gdb-users/simark/clang-format.tar.gz
gdb-users/simark/clang-format.tar.bz2
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/dictionary.h')
-rw-r--r--gdb/dictionary.h29
1 files changed, 14 insertions, 15 deletions
diff --git a/gdb/dictionary.h b/gdb/dictionary.h
index 9dc02c9..1d628fe 100644
--- a/gdb/dictionary.h
+++ b/gdb/dictionary.h
@@ -45,8 +45,8 @@ struct language_defn;
OBSTACK; the environment is initialized from SYMBOL_LIST. */
extern struct multidictionary *
- mdict_create_hashed (struct obstack *obstack,
- const struct pending *symbol_list);
+mdict_create_hashed (struct obstack *obstack,
+ const struct pending *symbol_list);
/* Create a multi-language dictionary of symbols, implemented
via a hashtable that grows as necessary. The initial dictionary of
@@ -54,7 +54,7 @@ extern struct multidictionary *
Call mdict_free() when you're done with it. */
extern struct multidictionary *
- mdict_create_hashed_expandable (enum language language);
+mdict_create_hashed_expandable (enum language language);
/* Create a multi-language dictionary of symbols, implemented
via a fixed-size array. All memory it uses is allocated on
@@ -63,8 +63,8 @@ extern struct multidictionary *
SYMBOL_LIST. */
extern struct multidictionary *
- mdict_create_linear (struct obstack *obstack,
- const struct pending *symbol_list);
+mdict_create_linear (struct obstack *obstack,
+ const struct pending *symbol_list);
/* Create a multi-language dictionary of symbols, implemented
via an array that grows as necessary. The multidictionary initially
@@ -72,7 +72,7 @@ extern struct multidictionary *
call mdict_add_symbol(). Call mdict_free() when you're done with it. */
extern struct multidictionary *
- mdict_create_linear_expandable (enum language language);
+mdict_create_linear_expandable (enum language language);
/* The functions providing the interface to multi-language dictionaries.
Note that the most common parts of the interface, namely symbol lookup,
@@ -127,8 +127,8 @@ struct mdict_iterator
return that first symbol, or NULL if MDICT is empty. */
extern struct symbol *
- mdict_iterator_first (const struct multidictionary *mdict,
- struct mdict_iterator *miterator);
+mdict_iterator_first (const struct multidictionary *mdict,
+ struct mdict_iterator *miterator);
/* Advance MITERATOR, and return the next symbol, or NULL if there are
no more symbols. Don't call this if you've previously received
@@ -144,9 +144,9 @@ extern struct symbol *mdict_iterator_next (struct mdict_iterator *miterator);
if there are no such symbols. */
extern struct symbol *
- mdict_iter_match_first (const struct multidictionary *mdict,
- const lookup_name_info &name,
- struct mdict_iterator *miterator);
+mdict_iter_match_first (const struct multidictionary *mdict,
+ const lookup_name_info &name,
+ struct mdict_iterator *miterator);
/* Advance MITERATOR to point at the next symbol in MDICT whose
search_name () is NAME, as tested using COMPARE (see
@@ -171,9 +171,8 @@ extern int mdict_size (const struct multidictionary *mdict);
It's implemented as a single loop, so you can terminate the loop
early by a break if you desire. */
-#define ALL_DICT_SYMBOLS(dict, iter, sym) \
- for ((sym) = mdict_iterator_first ((dict), &(iter)); \
- (sym); \
- (sym) = mdict_iterator_next (&(iter)))
+#define ALL_DICT_SYMBOLS(dict, iter, sym) \
+ for ((sym) = mdict_iterator_first ((dict), &(iter)); (sym); \
+ (sym) = mdict_iterator_next (&(iter)))
#endif /* DICTIONARY_H */