/third_party/skia/src/sksl/dsl/ |
H A D | DSLVar.cpp | 189 DSLExpression DSLGlobalVar::eval(ExpressionArray args, PositionInfo pos) { in eval() argument 193 std::move(method), std::move(args)) in eval()
|
/third_party/skia/tests/ |
H A D | Test.h | 172 static inline SkString reporter_string(const char* fmt, Args... args) { in reporter_string() argument 173 return SkStringPrintf(fmt, std::forward<Args>(args)...); in reporter_string()
|
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | SerialStorage.h | 95 void Enqueue(Params&&... args, Serial serial) { in Enqueue() argument 96 Derived::Enqueue(std::forward<Params>(args)..., serial); in Enqueue()
|
/third_party/optimized-routines/math/test/rtest/ |
H A D | main.c | 18 void docase(Testable *fn, uint32 *args); 19 void vet_for_decline(Testable *fn, uint32 *args, uint32 *result, int got_errno_in);
|
/third_party/python/Lib/test/ |
H A D | test_webbrowser.py | 29 def _test(self, meth, *, args=[URL], kw={}, options, arguments): 35 instance against the 'options' and 'args' lists. Options are compared 43 getattr(browser, meth)(*args, **kw)
|
H A D | test_defaultdict.py | 47 self.assertEqual(err.args, (15,)) 126 self.assertEqual(err.args[0], (1,))
|
H A D | test_fcntl.py | 163 p = Process(target=try_lockf_on_other_process_fail, args=(TESTFN, cmd)) 174 p = Process(target=try_lockf_on_other_process, args=(TESTFN, cmd))
|
H A D | test_readline.py | 311 args = (sys.executable, '-c', script) 312 proc = subprocess.Popen(args, stdin=slave, stdout=slave, stderr=slave, env=env)
|
H A D | test_timeout.py | 118 def _sock_operation(self, count, timeout, method, *args): 130 method(*args)
|
H A D | test_epoll.py | 57 self.assertEqual(e.args[0], errno.EINPROGRESS) 158 self.assertEqual(e.args[0], errno.EBADF, e)
|
/third_party/python/Lib/ |
H A D | mimetypes.py | 622 opts, args = getopt.getopt(sys.argv[1:], 'hle', 636 for gtype in args:
|
H A D | types.py | 280 def wrapped(*args, **kwargs): 281 coro = func(*args, **kwargs)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | LegacyDivergenceAnalysis.cpp | 138 for (auto &Arg : F.args()) { in populateWithSourcesOfDivergence() 395 for (auto &Arg : F->args()) { in print()
|
/third_party/spirv-headers/tools/buildHeaders/ |
H A D | jsonToSpirv.h | 163 void emplace_back(Args&&... args) { in emplace_back() argument 164 values.emplace_back(std::forward<Args>(args)...); in emplace_back()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | ucnv.h | 191 * @param args Information about the conversion in progress 204 UConverterToUnicodeArgs *args, 214 * @param args Information about the conversion in progress 227 UConverterFromUnicodeArgs *args,
|
/third_party/typescript/tests/baselines/reference/ |
H A D | contextuallyTypedParametersWithInitializers.js | 23 const f5: (...args: any[]) => any = (x = 1) => 0; // any 32 declare function g5<T extends (...args: any[]) => any>(x: T): T;
|
/third_party/vixl/tools/test_generator/ |
H A D | generator.py | 182 lambda_string = "lambda {args}: {expression}".format( 183 args=",".join(operand_types.GetNames()), 276 lambda_string = "lambda {args}: {expression}".format( 277 args=", ".join(input_types.GetNames()),
|
/third_party/python/Lib/unittest/test/ |
H A D | test_break.py | 223 def __init__(self, *args, **kwargs): 224 self.initArgs.append((args, kwargs))
|
/third_party/python/Objects/ |
H A D | fileobject.c | 311 stdprinter_write(PyStdPrinter_Object *self, PyObject *args) in stdprinter_write() argument 330 if (!PyArg_ParseTuple(args, "U", &unicode)) { in stdprinter_write()
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | wire_format_test.py | 187 for args in NUMERIC_ARGS: 188 self.NumericByteSizeTestHelper(*args)
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | wire_format_test.py | 183 for args in NUMERIC_ARGS: 184 self.NumericByteSizeTestHelper(*args)
|
/third_party/protobuf/src/google/protobuf/ |
H A D | message_lite.h | 130 void Construct(Args&&... args) { in Construct() argument 131 new (&union_) T(std::forward<Args>(args)...); in Construct()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_main.py | 233 def __init__(self, *args): 234 super().__init__(*args)
|
/third_party/python/Lib/unittest/ |
H A D | suite.py | 83 def __call__(self, *args, **kwds): 84 return self.run(*args, **kwds)
|
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | tokens.rs | 262 args, in to_tokens() 270 args.to_tokens(tokens); in to_tokens()
|