Home | History | Annotate | Download | only in build

Lines Matching refs:Be

2 # Use of this source code is governed by a BSD-style license that can be
31 GN scope in a list, so this should be set to False for recursive calls."""
89 string interpolation on a string variable, the strings will not be quoted:
94 The unquoted asdf string will not be valid input to this function, which
100 strings will be quoted and escaped according to GN rules so the list can be
130 Be careful not to feed with input from a Python parsing function like
131 'ast' because it will do Python unescaping, which will be incorrect when
179 - GN booleans ('true', 'false') will be converted to Python booleans.
181 - GN numbers ('123') will be converted to Python numbers.
183 - GN strings (double-quoted as in '"asdf"') will be converted to Python
185 variables preceded by $) are not supported and will be returned as
188 - GN lists ('[1, "asdf", 3]') will be converted to Python lists.