Home
last modified time | relevance | path

Searched refs:args (Results 5226 - 5250 of 7382) sorted by relevance

1...<<201202203204205206207208209210>>...296

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCollator.java762 int[] args = new int[codesLength]; in setAttributesFromKeywords()
763 System.arraycopy(codes, 0, args, 0, codesLength); in setAttributesFromKeywords()
764 coll.setReorderCodes(args); in setAttributesFromKeywords()
/third_party/libbpf/src/
H A Dbpf_core_read.h116 #define ___bpf_field_ref(args...) \
117 ___bpf_apply(___bpf_field_ref, ___bpf_narg(args))(args)
/third_party/jerryscript/tools/
H A Dbuild.py44 devhelp_arguments, args = devhelp_preparser.parse_known_args()
46 args.append('--devhelp')
160 arguments = parser.parse_args(args)
/third_party/json/tools/serve_header/
H A Dserve_header.py319 def log_message(self, format, *args):
354 args = parser.parse_args() variable
357 WorkTree.make_command = args.make
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/
H A Damdgpu_winsys.c326 struct drm_gem_close args; in amdgpu_winsys_unref() local
329 args.handle = (uintptr_t)entry->data; in amdgpu_winsys_unref()
330 drmIoctl(sws->fd, DRM_IOCTL_GEM_CLOSE, &args); in amdgpu_winsys_unref()
/third_party/node/deps/v8/tools/
H A Dstats-viewer.py471 (options, args) = parser.parse_args()
472 if len(args) != 1:
475 Main(args[0], re.compile(options.filter))
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dasm.py378 args = parser.parse_args() variable
380 lines = args.infile.read().strip().split('\n')
384 args.outfile.write(packed)
/third_party/libfuse/lib/
H A Dmount.c585 struct mount_opts *parse_mount_opts(struct fuse_args *args) in parse_mount_opts() argument
596 if (args && in parse_mount_opts()
597 fuse_opt_parse(args, mo, fuse_mount_opts, fuse_mount_opt_proc) == -1) in parse_mount_opts()
/third_party/lwip/src/include/lwip/
H A Dnetif.h684 * @param args depends on reason, see reason description
686 typedef void (*netif_ext_callback_fn)(struct netif* netif, netif_nsc_reason_t reason, const netif_ext_callback_args_t* args);
699 void netif_invoke_ext_callback(struct netif* netif, netif_nsc_reason_t reason, const netif_ext_callback_args_t* args);
704 #define netif_invoke_ext_callback(netif, reason, args)
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_bo.c521 struct drm_prime_handle args = { in panfrost_bo_export() local
526 int ret = drmIoctl(bo->dev->fd, DRM_IOCTL_PRIME_HANDLE_TO_FD, &args); in panfrost_bo_export()
531 return args.fd; in panfrost_bo_export()
/third_party/python/Lib/
H A Dtelnetlib.py244 def msg(self, msg, *args):
253 if args:
254 print(msg % args)
/third_party/python/Lib/test/
H A D_test_eintr.py74 def subprocess(self, *args, **kw):
75 cmd_args = (sys.executable, '-c') + args
391 old_handler = signal.signal(signum, lambda *args: None)
H A Dtest_telnetlib.py34 self.thread = threading.Thread(target=server, args=(self.evt,self.sock))
116 def msg(self, msg, *args):
118 telnetlib.Telnet.msg(self, msg, *args)
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_query.py289 args = ['-n', '10', '--verbose', '-p', '/path', '--name']
290 dialog = self.Dummy_CustomRun(' '.join(args) + ' "my name"')
291 self.assertEqual(dialog.cli_args_ok(), args + ["my name"])
/third_party/skia/third_party/externals/angle2/src/common/
H A DFixedVector.h75 void emplace_back(Args &&... args);
268 void FixedVector<T, N, Storage>::emplace_back(Args &&... args)
271 new (&mStorage[mSize]) T{std::forward<Args>(args)...};
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcTextureCompatibilityTests.cpp402 const auto args = std::map<std::string, std::string>{ { "VERSION", glslVersion } }; in initializeProgram() local
403 const auto vs = tcu::StringTemplate(vertShader).specialize(args); in initializeProgram()
404 const auto fs = tcu::StringTemplate(fragShader).specialize(args); in initializeProgram()
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dsmall_vector.h387 void emplace_back(Args&&... args) { in emplace_back() argument
393 large_data_->emplace_back(std::forward<Args>(args)...); in emplace_back()
395 new (small_data_ + size_) T(std::forward<Args>(args)...); in emplace_back()
/third_party/skia/src/gpu/effects/
H A DGrSkSLFP.h119 * The variable length args... must contain all of the children and uniforms expected.
149 Args&&... args) { in Make()
155 std::forward<Args>(args)...); in Make()
161 fp->appendArgs(fp->uniformData(), fp->uniformFlags(), std::forward<Args>(args)...); in Make()
210 // Helpers to attach variadic template args to a newly constructed FP:
213 // Base case -- no more args to append, so we're done in appendArgs()
302 // Validates that all args passed to the template factory have the right names, sizes, and types
145 Make(sk_sp<SkRuntimeEffect> effect, const char* name, std::unique_ptr<GrFragmentProcessor> inputFP, OptFlags optFlags, Args&&... args) Make() argument
/third_party/skia/src/gpu/ops/
H A DDrawAtlasOp.cpp239 const Geometry& args = fGeoData[i]; in onPrepareDraws() local
241 size_t allocSize = args.fVerts.count(); in onPrepareDraws()
242 memcpy(vertPtr, args.fVerts.begin(), allocSize); in onPrepareDraws()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dsmall_vector.h387 void emplace_back(Args&&... args) { in emplace_back() argument
393 large_data_->emplace_back(std::forward<Args>(args)...); in emplace_back()
395 new (small_data_ + size_) T(std::forward<Args>(args)...); in emplace_back()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/
H A Dbloat.py391 opts, args = parser.parse_args()
393 if len(args) != 1:
397 mode = args[0]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPURewriteOutArguments.cpp250 for (Argument &Arg : F.args()) { in runOnFunction()
434 for (Argument &Arg : F.args()) { in runOnFunction()
449 for (Argument &Arg : F.args()) { in runOnFunction()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dresolver.h187 const std::vector<const sem::Expression*> args,
192 const std::vector<const sem::Expression*> args,
202 const std::vector<const sem::Expression*> args,
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder_intrinsic_texture_test.cc3689 auto* call = Call(param.function, param.args(this)); in TEST_P()
3715 auto* call = Call(param.function, param.args(this)); in TEST_P()
3736 auto* call = Call(param.function, param.args(this)); in TEST_P()
/third_party/skia/third_party/externals/tint/tools/src/cmd/roll-release/
H A Dmain.go308 func call(dir, exe string, args ...interface{}) error {
309 s := make([]string, len(args))
310 for i, a := range args {

Completed in 47 milliseconds

1...<<201202203204205206207208209210>>...296