/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | Collator.java | 762 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 D | bpf_core_read.h | 116 #define ___bpf_field_ref(args...) \ 117 ___bpf_apply(___bpf_field_ref, ___bpf_narg(args))(args)
|
/third_party/jerryscript/tools/ |
H A D | build.py | 44 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 D | serve_header.py | 319 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 D | amdgpu_winsys.c | 326 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 D | stats-viewer.py | 471 (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 D | asm.py | 378 args = parser.parse_args() variable 380 lines = args.infile.read().strip().split('\n') 384 args.outfile.write(packed)
|
/third_party/libfuse/lib/ |
H A D | mount.c | 585 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 D | netif.h | 684 * @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 D | pan_bo.c | 521 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 D | telnetlib.py | 244 def msg(self, msg, *args): 253 if args: 254 print(msg % args)
|
/third_party/python/Lib/test/ |
H A D | _test_eintr.py | 74 def subprocess(self, *args, **kw): 75 cmd_args = (sys.executable, '-c') + args 391 old_handler = signal.signal(signum, lambda *args: None)
|
H A D | test_telnetlib.py | 34 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 D | test_query.py | 289 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 D | FixedVector.h | 75 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 D | glcTextureCompatibilityTests.cpp | 402 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 D | small_vector.h | 387 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 D | GrSkSLFP.h | 119 * 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 D | DrawAtlasOp.cpp | 239 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 D | small_vector.h | 387 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 D | bloat.py | 391 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 D | AMDGPURewriteOutArguments.cpp | 250 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 D | resolver.h | 187 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 D | builder_intrinsic_texture_test.cc | 3689 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 D | main.go | 308 func call(dir, exe string, args ...interface{}) error { 309 s := make([]string, len(args)) 310 for i, a := range args {
|