/third_party/skia/third_party/externals/tint/src/ |
H A D | block_allocator.h | 148 /// @param args the arguments to pass to the type constructor 151 TYPE* Create(ARGS&&... args) { in Create() argument 155 auto uptr = std::make_unique<TYPE>(std::forward<ARGS>(args)...); in Create()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | parser_impl_barrier_test.cc | 74 EXPECT_EQ(call->expr->args.size(), 0u); in TEST_F() 108 EXPECT_EQ(call->expr->args.size(), 0u); in TEST_F()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | transform.h | 82 /// @param args the arguments forwarded to the constructor for type T 84 void Add(ARGS&&... args) { in Add() argument 85 Put(std::make_unique<T>(std::forward<ARGS>(args)...)); in Add()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucnv_bld.h | 143 UConverterFromUnicodeArgs *args, 154 UConverterToUnicodeArgs *args,
|
/third_party/typescript/tests/baselines/reference/ |
H A D | spreadOfParamsFromGeneratorMakesRequiredParams.js | 2 declare function call<Fn extends (...args: any[]) => any>( 4 ...args: Parameters<Fn>
|
H A D | callWithMissingVoid.js | 73 handler: (...args: TS) => unknown, 74 ...args: TS): void;
|
H A D | invalidTaggedTemplateEscapeSequences(target=es2015).js | 2 function tag (str: any, ...args: any[]): any { 33 function tag(str, ...args) {
|
/third_party/typescript/tests/baselines/reference/tscWatch/incremental/ |
H A D | jsxImportSource-backing-types-removed-incremental.js | 26 export function jsx(...args: any[]): void; 27 export function jsxs(...args: any[]): void; 81 {"program":{"fileNames":["../../../../a/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileInfos":[{"version":"3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","-14760199789-export const App = () => <div propA={true}></div>;"],"options":{"jsx":4,"jsxImportSource":"react","module":1},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[[3,1]],"semanticDiagnosticsPerFile":[1,3,2]},"version":"FakeTSVersion"}
103 "version": "-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n", 104 "signature": "-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n"
|
/third_party/toybox/scripts/ |
H A D | mkstatus.py | 7 def readit(args, shell=False): 10 blob=subprocess.Popen(args, stdout=subprocess.PIPE, shell=shell)
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | ValidationTest.h | 28 #define GET_3RD_ARG_(args) GET_3RD_ARG_HELPER_ args
|
/third_party/python/Lib/test/ |
H A D | test_repl.py | 16 def spawn_repl(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): 19 kw is extra keyword args to pass to subprocess.Popen. Returns a Popen 31 cmd_line.extend(args)
|
H A D | test_smtpnet.py | 38 if e.args[0] == 'STARTTLS extension not supported by server.': 39 unittest.skip(e.args[0])
|
H A D | test_xdrlib.py | 60 def assertRaisesConversion(self, *args): 61 self.assertRaises(xdrlib.ConversionError, *args)
|
/third_party/python/Objects/ |
H A D | cellobject.c | 34 cell_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) in cell_new() argument 43 if (!PyArg_UnpackTuple(args, "cell", 0, 1, &obj)) { in cell_new()
|
/third_party/python/Objects/stringlib/ |
H A D | find.h | 86 STRINGLIB(parse_args_finds)(const char * function_name, PyObject *args, in parse_args_finds() argument 100 if (!PyArg_ParseTuple(args, format, &tmp_subobj, &obj_start, &obj_end)) in parse_args_finds()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_pkg_import.py | 14 def __init__(self, *args, **kw): 19 unittest.TestCase.__init__(self, *args, **kw)
|
/third_party/python/Modules/clinic/ |
H A D | _tracemalloc.c.h | 93 _tracemalloc_start(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _tracemalloc_start() argument 104 nframe = _PyLong_AsInt(args[0]); in _tracemalloc_start()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | counting_allocator.h | 72 void construct(U* p, Args&&... args) { in construct() argument 74 AllocatorTraits::construct(allocator, p, std::forward<Args>(args)...); in construct()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | atomic_hook.h | 116 ReturnType operator()(CallArgs&&... args) const { in operator ()() 117 return DoLoad()(std::forward<CallArgs>(args)...); in operator ()()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cordz_test_helpers.h | 141 Cord UnsampledCord(Args... args) { in UnsampledCord() argument 143 Cord cord(std::forward<Args>(args)...); in UnsampledCord()
|
/third_party/skia/infra/bots/assets/valgrind/ |
H A D | create.py | 103 args = parser.parse_args() 104 create_asset(args.target_dir)
|
/third_party/skia/gn/ |
H A D | gn_to_bp_utils.py | 22 args = parser.parse_args() variable 27 subprocess.check_call([args.gn_cmd, 'gen', tmp, '--args=%s' % gn_args,
|
/third_party/skia/experimental/skrive/src/ |
H A D | Artboard.cpp | 24 std::tuple<sk_sp<Component>, size_t> make_from_stream(StreamReader* sr, Args&&... args) { in make_from_stream() argument 25 auto node = sk_make_sp<T>(std::forward<Args>(args)...); in make_from_stream()
|
/third_party/skia/platform_tools/android/apps/ |
H A D | gradlew | 137 eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 139 eval `echo args$i`="\"$arg\""
|
/third_party/selinux/libsepol/include/sepol/policydb/ |
H A D | avtab.h | 117 avtab_datum_t * d, void *args), void *args);
|