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

1 2

  /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/libutf/
Android.mk 25 utf_cflags := -Wall -Wno-missing-braces -Wno-parentheses -Wno-switch
  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
filter.py 31 ["-whitespace", "+whitespace/braces"]
33 ["whitespace/tabs", "whitespace/braces"]
optparser.py 63 any such category. The filter input "-whitespace,+whitespace/braces" fails
64 the category "whitespace/tab" and passes "whitespace/braces".
66 Examples: --filter=-whitespace,+whitespace/braces
306 '"--filter -whitespace,+whitespace/braces". To display '
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
genperf.c 309 int braces; local
339 braces = 0;
341 /* count braces to determine when we're done */
345 braces++;
347 braces--;
354 if (braces <= 0)
  /external/chromium_org/v8/test/mjsunit/harmony/
arrow-functions.js 41 // Statement body needs braces, must use 'return' explicitly if not void