/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | source.py | 23 def good_file(filename, alt=None): 26 filename, _ = _resolve_filename(filename, alt) 41 def _resolve_filename(filename, alt=None): 48 if not alt: 49 alt = filename 50 elif os.path.abspath(filename) == os.path.abspath(alt): 51 alt = filename 53 raise ValueError(f'mismatch: {filename} != {alt}') 54 return filename, alt
|
/third_party/musl/porting/liteos_a/kernel/src/time/ |
H A D | __tz.c | 52 static size_t scan_trans(long long t, int local, size_t *alt) in scan_trans() argument 61 if (alt) *alt = 0; in scan_trans() 95 * and the index-zero (after transition) type as the alt. */ in scan_trans() 97 if (alt) *alt = index[0]; in scan_trans() 103 if (alt) { in scan_trans() 105 *alt = index[a-1]; in scan_trans() 107 *alt = index[a+1]; in scan_trans() 109 *alt in scan_trans() 161 size_t alt, i = scan_trans(t, local, &alt); __secs_to_zone() local [all...] |
/third_party/musl/porting/uniproton/kernel/src/time/ |
H A D | __tz.c | 56 static size_t scan_trans(long long t, int local, size_t *alt) in scan_trans() argument 65 if (alt) *alt = 0; in scan_trans() 99 *alt = a; in scan_trans() 102 *alt = 0; in scan_trans() 109 if (alt) { in scan_trans() 111 *alt = index_local[a-1]; in scan_trans() 113 *alt = index_local[a+1]; in scan_trans() 115 *alt = index_local[a]; in scan_trans() 167 size_t alt, in __secs_to_zone() local [all...] |
/third_party/musl/porting/liteos_m/kernel/src/time/ |
H A D | __tz.c | 56 static size_t scan_trans(long long t, int local, size_t *alt) in scan_trans() argument 65 if (alt) *alt = 0; in scan_trans() 99 *alt = a; in scan_trans() 102 *alt = 0; in scan_trans() 109 if (alt) { in scan_trans() 111 *alt = index_local[a-1]; in scan_trans() 113 *alt = index_local[a+1]; in scan_trans() 115 *alt = index_local[a]; in scan_trans() 167 size_t alt, in __secs_to_zone() local [all...] |
/third_party/curl/docs/examples/ |
H A D | smtp-mime.c | 82 curl_mime *alt; in main() local 118 alt = curl_mime_init(curl); in main() 121 part = curl_mime_addpart(alt); in main() 126 part = curl_mime_addpart(alt); in main() 131 curl_mime_subparts(part, alt); in main()
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | gl_x86_asm.py | 161 alt = "%s@%u" % (name, stack) 163 print('\tGL_STUB(%s, %d, %s)' % (name, f.offset, alt)) 166 print('\tHIDDEN(GL_PREFIX(%s, %s))' % (name, alt)) 172 alt = "%s@%u" % (name, stack) 178 text = '\tGL_STUB_ALIAS(%s, %d, %s, %s, %s)' % (n, f.offset, alt2, name, alt)
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
H A D | ViewableTaggedData.java | 167 public void tagField(int position, int width, int value, String alt, String label) { in tagField() argument 168 markers.add(new Field(position, width, value, alt, label)); in tagField() 257 String alt; in tagRangeField() 262 alt = "NULL"; in tagRangeField() 269 alt = String.format("#%04x", base + value); in tagRangeField() 275 alt = String.format("#%04x", base + value); in tagRangeField() 281 alt = String.valueOf(value); in tagRangeField() 286 alt = null; in tagRangeField() 291 alt = value == 0xffff ? null : String.valueOf(value); in tagRangeField() 296 alt in tagRangeField() 506 drawLine(int position, int value, int width, String alt, String label) drawLine() argument 797 private final String alt; global() field in ViewableTaggedData.Field 800 Field(int position, int width, int value, String alt, String label) Field() argument [all...] |
/third_party/musl/porting/linux/user/src/time/ |
H A D | __tz.c | 348 static size_t scan_trans(long long t, int local, size_t *alt) in scan_trans() argument 357 if (alt) *alt = 0; in scan_trans() 391 * and the index-zero (after transition) type as the alt. */ in scan_trans() 393 if (alt) *alt = index[0]; in scan_trans() 399 if (alt) { in scan_trans() 401 *alt = index[a-1]; in scan_trans() 403 *alt = index[a+1]; in scan_trans() 405 *alt in scan_trans() 457 size_t alt, i = scan_trans(t, local, &alt); __secs_to_zone() local [all...] |
/third_party/musl/src/time/ |
H A D | __tz.c | 422 static size_t scan_trans(long long t, int local, size_t *alt) in scan_trans() argument 431 if (alt) *alt = 0; in scan_trans() 465 * and the index-zero (after transition) type as the alt. */ in scan_trans() 467 if (alt) *alt = index[0]; in scan_trans() 473 if (alt) { in scan_trans() 475 *alt = index[a-1]; in scan_trans() 477 *alt = index[a+1]; in scan_trans() 479 *alt in scan_trans() 534 size_t alt, i = scan_trans(t, local, &alt); __secs_to_zone() local [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | doNotInferUnrelatedTypes.js | 5 declare var alt: Array<LiteralType>; 7 let foo: LiteralType = dearray(alt); 11 var foo = dearray(alt);
|
/third_party/rust/crates/nom/tests/ |
H A D | arithmetic.rs | 2 branch::alt, 26 alt(( in factor() 39 pair(alt((char('*'), char('/'))), factor), in term() 55 pair(alt((char('+'), char('-'))), term), in expr()
|
H A D | json.rs | 4 branch::alt, 28 alt((value(false, tag("false")), value(true, tag("true"))))(input) in boolean() 37 alt(( in unicode_escape() 63 alt(( in character() 122 alt(( in json_value()
|
H A D | float.rs | 1 use nom::branch::alt; 12 let float_bytes = recognize(alt(( in unsigned_float() 22 pair(opt(alt((tag("+"), tag("-")))), unsigned_float), in float()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_die_addr_die.c | 49 Dwarf *alt = INTUSE (dwarf_getalt) (dbg); in dwarf_die_addr_die() local 50 if (alt != NULL) in dwarf_die_addr_die() 51 cu = __libdw_findcu_addr (alt, addr); in dwarf_die_addr_die()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
H A D | dpp-nfc.py | 269 def dpp_handover_client(handover, alt=False): 270 summary("About to start run_dpp_handover_client (alt=%s)" % str(alt)) 271 if alt: 273 run_dpp_handover_client(handover, alt) 274 summary("Done run_dpp_handover_client (alt=%s)" % str(alt)) 276 def run_client_alt(handover, alt): 277 if handover.start_client_alt and not alt: 280 dpp_handover_client(handover, alt [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_hysteresis.c | 87 AVFrame *out, *base, *alt; in process_frame() local 91 (ret = ff_framesync_get_frame(&s->fs, 1, &alt, 0)) < 0) in process_frame() 123 s->hysteresis(s, base->data[p], alt->data[p], in process_frame() 125 base->linesize[p], alt->linesize[p], in process_frame() 289 AVFilterLink *alt = ctx->inputs[1]; in config_output() local 293 if (base->w != alt->w || base->h != alt->h) { in config_output() 299 alt->w, alt->h); in config_output() 313 in[1].time_base = alt in config_output() [all...] |
/third_party/rust/crates/nom/fuzz/fuzz_targets/ |
H A D | fuzz_arithmetic.rs | 8 branch::alt, 60 alt(( in factor() 72 alt(( in term() 100 pair(alt((char('+'), char('-'))), term), in expr()
|
/third_party/rust/crates/nom/benchmarks/benches/ |
H A D | json.rs | 9 branch::alt, 33 alt((value(false, tag("false")), value(true, tag("true"))))(input) in boolean() 42 alt(( in unicode_escape() 68 alt(( in character() 127 alt(( in json_value()
|
/third_party/python/Modules/_sqlite/ |
H A D | microprotocols.c | 75 PyObject *proto, PyObject *alt) in pysqlite_microprotocols_adapt() 138 if (alt) { in pysqlite_microprotocols_adapt() 139 return Py_NewRef(alt); in pysqlite_microprotocols_adapt() 74 pysqlite_microprotocols_adapt(pysqlite_state *state, PyObject *obj, PyObject *proto, PyObject *alt) pysqlite_microprotocols_adapt() argument
|
/third_party/rust/crates/nom/examples/ |
H A D | s_expression.rs | 8 branch::alt, 88 // alt gives us the result of first parser that succeeds, of the series of in parse_builtin() 90 alt(( in parse_builtin() 100 alt(( in parse_bool() 122 alt(( in parse_num() 135 alt(( in parse_atom() 236 alt((parse_constant, parse_application, parse_if, parse_quote)), in parse_expr()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | astro.h | 226 * @param alt The altitude, measured in radians above the horizon. 230 Horizon(double alt=0, double azim=0) in Horizon() argument 231 : altitude(alt), azimuth(azim) { } in Horizon() 235 * @param alt The altitude, measured in radians above the horizon. 239 void set(double alt, double azim) { in set() argument 240 altitude = alt; in set()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | astro.h | 226 * @param alt The altitude, measured in radians above the horizon. 230 Horizon(double alt=0, double azim=0) in Horizon() argument 231 : altitude(alt), azimuth(azim) { } in Horizon() 235 * @param alt The altitude, measured in radians above the horizon. 239 void set(double alt, double azim) { in set() argument 240 altitude = alt; in set()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | astro.h | 226 * @param alt The altitude, measured in radians above the horizon. 230 Horizon(double alt=0, double azim=0) in Horizon() argument 231 : altitude(alt), azimuth(azim) { } in Horizon() 235 * @param alt The altitude, measured in radians above the horizon. 239 void set(double alt, double azim) { in set() argument 240 altitude = alt; in set()
|
/third_party/python/Modules/_sqlite/clinic/ |
H A D | module.c.h | 187 "adapt($module, obj, proto=PrepareProtocolType, alt=<unrepresentable>, /)\n" 197 PyObject *alt); 205 PyObject *alt = NULL; in pysqlite_adapt() local 218 alt = args[2]; in pysqlite_adapt() 220 return_value = pysqlite_adapt_impl(module, obj, proto, alt); in pysqlite_adapt()
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | parser_generator.py | 201 alt = Alt( 207 Rhs([alt]), 236 for alt in rhs.alts: 237 if self.visit(alt): 241 def visit_Alt(self, alt: Alt) -> bool: 242 for item in alt.items: 313 def visit_Alt(self, alt: Alt) -> Set[Any]: 315 for item in alt.items:
|