Lines Matching +full:no +full:- +full:use +full:- +full:before +full:- +full:define
14 * No trailing white space is allowed.
15 * Run `tools/run-tests.py --check-vera` to check several
41 --- Bad ---
68 --- Bad ---
89 #define JERRY_VALUE_SEVEN 7
94 #define JERRY_ADD_TWO_NUMBERS(arg1, arg2) \
100 * to use NUMBERS in the first place.
102 #define JERRY_ADD_TWO_NUMS(arg1, arg2) \
107 --- Bad ---
111 #define JERRY_CONSTANT_WITHOUT_DESCRIPTION 5
113 #define JeRrY_mIxEd_CaSe_NaMe "str"
142 --- Bad ---
166 before the opening parenthesis of the expression
200 * switch-case is not terminated by
212 /* We can use continue if we are in a loop. */
223 --- Bad ---
291 * Newlines are not allowed after an opening curly brace or before
293 * No newlines are allowed between control statements (if-else, while,
307 int j = a - 1;
321 b = i - 3;
341 --- Bad ---
345 /* No newlines are allowed after an opening curly
346 * brace or before a closing curly brace */
372 /* No newlines are allowed between control staments
395 Spaces are required around binary operators. No space is
407 call_function (a * (b + !!c) - d + (e % f));
414 --- Bad ---
471 --- Bad ---
516 --- Bad ---
539 there must be a space before the next argument and in the
563 --- Bad ---
567 /* No space before the opening parenthesis. */
596 inside for-loops. It is recommended to declare a
597 variable before the first use.
624 of the type cast. Type casting has no multiline form
638 --- Bad ---
645 /* No multiline form. */
654 must be a space before the asterisk character.
663 /* No need to add multiple _p-s for multiple indirections.
673 --- Bad ---
677 /* No _p after the name. */
705 * and there is no full stop at the end. */
719 --- Bad ---
777 --- Bad ---
784 /* Missing comment before the function. */
794 /* No description of text argument. */