HomeSort by relevance Sort by last modified time
    Searched full:braces (Results 1 - 25 of 526) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
warn-missing-braces.c 1 // RUN: %clang_cc1 -fsyntax-only -Wmissing-braces -verify %s
3 int a[2][2] = { 0, 1, 2, 3 }; // expected-warning{{suggest braces}} expected-warning{{suggest braces}}
array-init.c 179 float r1[10] = {{7}}; //expected-warning{{braces around scalar initializer}}
180 float r2[] = {{8}}; //expected-warning{{braces around scalar initializer}}
184 float r4[1][2] = {1,{2},3,4}; //expected-warning{{braces around scalar initializer}} expected-warning{{excess elements in array initializer}}
217 int u2 = {{3}}; //expected-warning{{too many braces around scalar initializer}}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
badsyntax_future9.py 3 from __future__ import nested_scopes, braces namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
badsyntax_future9.py 3 from __future__ import nested_scopes, braces namespace
  /external/clang/test/Parser/
warn-dangling-else.cpp 6 { if (a) if (b) d++; else e++; } // expected-warning {{add explicit braces to avoid dangling else}}
7 { if (a) while (b) if (c) d++; else e++; } // expected-warning {{add explicit braces to avoid dangling else}}
8 { if (a) switch (b) if (c) d++; else e++; } // expected-warning {{add explicit braces to avoid dangling else}}
9 { if (a) for (;;) if (c) d++; else e++; } // expected-warning {{add explicit braces to avoid dangling else}}
10 { if (a) if (b) if (d) d++; else e++; else d--; } // expected-warning {{add explicit braces to avoid dangling else}}
15 } else e++; // expected-warning {{add explicit braces to avoid dangling else}}
  /external/chromium_org/tools/gyp/tools/
pretty_gyp.py 13 # Regex to remove comments when we're counting braces.
16 # Regex to remove quoted strings when we're counting braces.
29 """Mask the quoted strings so we skip braces inside quoted strings."""
42 """Mask the quoted strings so we skip braces inside quoted strings."""
67 These are used to split lines which have multiple braces on them, so
69 braces make a nice diagonal line).
84 """keeps track of the number of braces on a given line and returns the result.
86 It starts at zero and subtracts for closed braces, and adds for open braces.
146 # Split up the double braces
    [all...]
  /external/clang/test/CodeGen/
globalinit.c 35 // Scalars in braces.
  /external/clang/test/Preprocessor/
stringize_misc.c 19 START_END( {a=1 , b=2;} ) /* braces are not parentheses */
  /external/oprofile/doc/
CodingStyle 71 C++ inline methods in headers. use Java braces :
102 braces. Never use the comma operator to avoid braces. If there is more
104 braces. If there is an else clause, you should probably use braces; if
105 any of the branches in an if/else if change has braces, they all should.
oprofile.1.in 68 part of a profile specification in curly braces { } can be used
71 ; the braces
  /packages/apps/Browser/tools/
all_search_engines.template.xml 34 The parameters enclosed in curly braces come from the OpenSearch specification, see
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
error_check.py 66 'forbids braces around @inheritdoc JsDoc tags.\n'
67 ' - ' + Rule.BRACES_AROUND_TYPE + ': enforces braces '
javascriptstatetracker.py 36 including braces.
38 including braces.
  /external/chromium_org/third_party/closure_linter/closure_linter/
error_check.py 66 'forbids braces around @inheritdoc JsDoc tags.\n'
67 ' - ' + Rule.BRACES_AROUND_TYPE + ': enforces braces '
javascriptstatetracker.py 36 including braces.
38 including braces.
  /external/clang/test/SemaCXX/
cxx0x-initializer-references.cpp 106 B b3 { { { 0 } } }; // expected-warning {{braces around scalar init}}
113 D d4 { { { { 0 } } } }; // expected-warning {{braces around scalar init}}
  /external/chromium_org/tools/gyp/test/mac/xcode-env-order/
test.gyp 36 'action_name': 'Action copy braces ${PRODUCT_NAME} ${FOO}',
37 'description': 'Action copy braces ${PRODUCT_NAME} ${FOO}',
90 'message': 'Rule braces ${PRODUCT_NAME} ${FOO} <(RULE_INPUT_NAME)',
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp_unittest.py     [all...]
  /external/bison/build-aux/
useless-if-before-free 5 # Likewise "if (p != 0)", "if (0 != p)", or with NULL; and with braces.
177 # FIXME: do something like this as an option (doesn't do braces):
184 # Use the following to remove redundant uses of kfree inside braces.
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
DbQueryUtils.java 46 // all pass. I can also remove the braces, and the tests all pass.
  /external/chromium_org/v8/tools/
jsmin.py 38 around curly braces, so the declaration must be above the first use.
84 # several sets of nested braces.
92 These can be curly braces, literal strings, function declarations and var
273 r"\{", # Curly braces.
  /external/clang/include/clang/Format/
Format.h 158 /// \brief Different ways to attach braces to their surrounding context.
160 /// Always attach braces to surrounding context.
162 /// Like \c Attach, but break before braces on function, namespace and
167 /// Always break before braces
  /external/iproute2/man/man8/
tc-bfifo.8 50 and packets actually sent. An unsent and dropped packet only appears between braces
  /external/v8/tools/
jsmin.py 38 around curly braces, so the declaration must be above the first use.
84 # several sets of nested braces.
92 These can be curly braces, literal strings, function declarations and var
273 r"\{", # Curly braces.
  /external/bison/lib/
msvc-inval.h 208 /* The braces here avoid GCC warnings like
209 "warning: suggest explicit braces to avoid ambiguous 'else'". */

Completed in 3567 milliseconds

1 2 3 4 5 6 7 8 91011>>