/third_party/node/tools/gyp/pylib/gyp/ |
H A D | ninja_syntax.py | 36 self._line(f"{key} = {value}", indent) 39 self._line("pool %s" % name) 55 self._line("rule %s" % name) 91 self._line( 107 self._line("include %s" % path) 110 self._line("subninja %s" % path) 113 self._line("default %s" % " ".join(self._as_list(paths))) 124 def _line(self, text, indent=0): member in Writer
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | ninja_syntax.py | 36 self._line(f"{key} = {value}", indent) 39 self._line("pool %s" % name) 55 self._line("rule %s" % name) 91 self._line( 107 self._line("include %s" % path) 110 self._line("subninja %s" % path) 113 self._line("default %s" % " ".join(self._as_list(paths))) 124 def _line(self, text, indent=0): member in Writer
|
/third_party/mesa3d/src/glx/apple/ |
H A D | apple_glx_log.c | 99 char *_line; in _apple_glx_vlog() local 100 asprintf(&_line, "%d", line); in _apple_glx_vlog() 101 if (_line) { in _apple_glx_vlog() 102 asl_set(msg, "Line", _line); in _apple_glx_vlog() 103 free(_line); in _apple_glx_vlog()
|
/third_party/ninja/misc/ |
H A D | ninja_syntax.py | 55 self._line('%s = %s' % (key, value), indent) 58 self._line('pool %s' % name) 74 self._line('rule %s' % name) 128 self._line('build %s: %s' % (' '.join(out_outputs), 131 self._line(' pool = %s' % pool) 133 self._line(' dyndep = %s' % dyndep) 147 self._line('include %s' % path) 150 self._line('subninja %s' % path) 153 self._line('default %s' % ' '.join(as_list(paths))) 164 def _line(sel member in Writer [all...] |
H A D | ninja_syntax_test.py | 37 self.n._line(LONGWORD) 42 self.n._line(' '.join(['x', LONGWORD, 'y'])) 58 self.n._line('line_one to tree') 68 self.n._line(' '.join(['x', LONGWORD, 'y']), indent=1) 75 self.n._line(' '.join(['x', LONGWORDWITHSPACES, 'y'])) 83 self.n._line('command = cd ../../chrome; python ../tools/grit/grit/format/repack.py ../out/Debug/obj/chrome/chrome_dll.gen/repack/theme_resources_large.pak ../out/Debug/gen/chrome/theme_resources_large.pak', 1)
|
/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
H A D | parse.js | 49 var _line = diffstr[i]; 51 if (/^(Index:|diff|\-\-\-|\+\+\+)\s/.test(_line)) { 53 } else if (/^@@/.test(_line)) { 55 } else if (_line && options.strict) { 57 throw new Error('Unknown line ' + (i + 1) + ' ' + JSON.stringify(_line));
|
H A D | create.js | 15 _line = require("../diff/line") 47 _line 13 _line = require("../diff/line") global() variable
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-machinery.hh | 89 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \ 90 void _instance_assertion_on_line_##_line () const \ 92 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assertion) 96 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ 97 void _compiles_assertion_on_line_##_line () const \ 99 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code)
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | file_process.py | 20 self._line = '' 36 return self._line 93 self._line = processing_line
|
/third_party/node/deps/npm/node_modules/diff/lib/ |
H A D | index.js | 34 return _line.diffLines; 40 return _line.diffTrimmedLines; 161 _line = require("./diff/line") 159 _line = require("./diff/line") global() variable
|
H A D | index.es6.js | 688 var _line = diffstr[i]; 690 if (/^(Index:|diff|\-\-\-|\+\+\+)\s/.test(_line)) { 692 } else if (/^@@/.test(_line)) { 694 } else if (_line && options.strict) { 696 throw new Error('Unknown line ' + (i + 1) + ' ' + JSON.stringify(_line));
|
/third_party/node/lib/ |
H A D | readline.js | 318 return this._line; 460 Interface.prototype._line = _Interface.prototype[kLine]; 495 this._line(); 502 this._line();
|
/third_party/mesa3d/src/freedreno/decode/ |
H A D | crashdec.c | 203 #define foreach_line_in_section(_line) \ 204 for (const char *_line = popline(); _line; _line = popline()) \ 206 if (_line[0] != ' ') { \
|
/third_party/node/deps/npm/node_modules/diff/lib/diff/ |
H A D | json.js | 20 _line = require("./line") 48 _line 18 _line = require("./line") global() variable
|
/third_party/protobuf/python/google/protobuf/ |
H A D | text_format.py | 92 self._line = line 96 return self._line 1249 self._line = -1 1284 self._line += 1 1334 just_started = self._line == 0 and self._column == 0 1539 self._line + 1, self._column + 1) 1546 self._previous_line = self._line
|
/third_party/python/Lib/ |
H A D | traceback.py | 262 'name', '_line', 'locals') 279 self._line = line 314 return self._line 318 if self._line is None: 321 self._line = linecache.getline(self.filename, self.lineno) 322 return self._line.strip()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | lib.rs | 141 _line: c_int, in init()
|
/third_party/jerryscript/jerry-debugger/ |
H A D | jerry_client_main.py | 209 for i, _line in enumerate(lines): 211 breakpoint = JerryBreakpoint(_line, offset, self) 212 self.lines[_line] = breakpoint
|
/third_party/python/Tools/clinic/ |
H A D | clinic.py | 1615 def _line(self, lookahead=False): member in BlockParser 1627 line = self._line() 1658 line = self._line() 1681 line = self._line(lookahead=True)
|
/third_party/python/Lib/test/ |
H A D | test_traceback.py | 2206 self.assertEqual(None, f._line)
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 506 SourceLineInfo( char const* _file, std::size_t _line ) noexcept 508 line( _line ) in line()
|