Home
last modified time | relevance | path

Searched refs:args (Results 251 - 275 of 5651) sorted by relevance

1...<<11121314151617181920>>...227

/third_party/node/deps/v8/src/runtime/
H A Druntime-classes.cc33 DCHECK_EQ(0, args.length()); in RUNTIME_FUNCTION()
41 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
42 Handle<JSFunction> constructor = args.at<JSFunction>(0); in RUNTIME_FUNCTION()
63 DCHECK_EQ(0, args.length()); in RUNTIME_FUNCTION()
70 DCHECK_EQ(0, args.length()); in RUNTIME_FUNCTION()
77 DCHECK_EQ(0, args.length()); in RUNTIME_FUNCTION()
117 DCHECK_EQ(2, args.length()); in RUNTIME_FUNCTION()
118 Handle<Object> constructor = args.at(0); in RUNTIME_FUNCTION()
119 Handle<JSFunction> function = args.at<JSFunction>(1); in RUNTIME_FUNCTION()
147 RuntimeArguments& args, Sm in GetMethodAndSetName()
146 GetMethodAndSetName(Isolate* isolate, RuntimeArguments& args, Smi index, Handle<String> name_prefix, Handle<Object> key) GetMethodAndSetName() argument
178 GetMethodWithSharedName(Isolate* isolate, RuntimeArguments& args, Object index) GetMethodWithSharedName() argument
211 SubstituteValues(Isolate* isolate, Handle<Dictionary> dictionary, RuntimeArguments& args) SubstituteValues() argument
279 AddDescriptorsByTemplate( Isolate* isolate, Handle<Map> map, Handle<DescriptorArray> descriptors_template, Handle<NumberDictionary> elements_dictionary_template, Handle<JSObject> receiver, RuntimeArguments& args) AddDescriptorsByTemplate() argument
401 AddDescriptorsByTemplate( Isolate* isolate, Handle<Map> map, Handle<Dictionary> properties_dictionary_template, Handle<NumberDictionary> elements_dictionary_template, Handle<FixedArray> computed_properties, Handle<JSObject> receiver, RuntimeArguments& args) AddDescriptorsByTemplate() argument
478 InitClassPrototype(Isolate* isolate, Handle<ClassBoilerplate> class_boilerplate, Handle<JSObject> prototype, Handle<HeapObject> prototype_parent, Handle<JSFunction> constructor, RuntimeArguments& args) InitClassPrototype() argument
531 InitClassConstructor(Isolate* isolate, Handle<ClassBoilerplate> class_boilerplate, Handle<HeapObject> constructor_parent, Handle<JSFunction> constructor, RuntimeArguments& args) InitClassConstructor() argument
589 DefineClass(Isolate* isolate, Handle<ClassBoilerplate> class_boilerplate, Handle<Object> super_class, Handle<JSFunction> constructor, RuntimeArguments& args) DefineClass() argument
[all...]
H A Druntime-strings.cc23 DCHECK_EQ(5, args.length()); in RUNTIME_FUNCTION()
24 Handle<String> matched = args.at<String>(0); in RUNTIME_FUNCTION()
25 Handle<String> subject = args.at<String>(1); in RUNTIME_FUNCTION()
26 int position = args.smi_value_at(2); in RUNTIME_FUNCTION()
27 Handle<String> replacement = args.at<String>(3); in RUNTIME_FUNCTION()
28 int start_index = args.smi_value_at(4); in RUNTIME_FUNCTION()
114 DCHECK_EQ(3, args.length()); in RUNTIME_FUNCTION()
115 Handle<String> subject = args.at<String>(0); in RUNTIME_FUNCTION()
116 Handle<String> search = args.at<String>(1); in RUNTIME_FUNCTION()
117 Handle<String> replace = args in RUNTIME_FUNCTION()
[all...]
H A Druntime-function.cc19 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
20 Handle<JSReceiver> function = args.at<JSReceiver>(0); in RUNTIME_FUNCTION()
32 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
33 Handle<JSReceiver> function = args.at<JSReceiver>(0); in RUNTIME_FUNCTION()
47 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
48 Handle<JSReceiver> function = args.at<JSReceiver>(0); in RUNTIME_FUNCTION()
60 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
62 auto fun = JSFunction::cast(args[0]); in RUNTIME_FUNCTION()
70 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
72 auto f = JSFunction::cast(args[ in RUNTIME_FUNCTION()
[all...]
/third_party/skia/src/gpu/gl/
H A DGrGLContext.cpp25 ConstructorArgs args; in Make() local
26 args.fDriverInfo = GrGLGetDriverInfo(interface.get()); in Make()
27 if (args.fDriverInfo.fVersion == GR_GL_INVALID_VER) { in Make()
31 if (!GrGLGetGLSLGeneration(args.fDriverInfo, &args.fGLSLGeneration)) { in Make()
46 args.fDriverInfo.fRenderer == GrGLRenderer::kAdreno3xx) { in Make()
50 args.fGLSLGeneration = k110_GrGLSLGeneration; in Make()
64 args.fGLSLGeneration >= k330_GrGLSLGeneration && in Make()
67 args.fGLSLGeneration = k110_GrGLSLGeneration; in Make()
70 args in Make()
98 GrGLContextInfo(ConstructorArgs&& args) GrGLContextInfo() argument
[all...]
/third_party/python/PC/clinic/
H A Dwinsound.c.h23 winsound_PlaySound(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in winsound_PlaySound() argument
32 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 2, 0, argsbuf); in winsound_PlaySound()
33 if (!args) { in winsound_PlaySound()
36 sound = args[0]; in winsound_PlaySound()
37 flags = _PyLong_AsInt(args[1]); in winsound_PlaySound()
66 winsound_Beep(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in winsound_Beep() argument
75 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 2, 0, argsbuf); in winsound_Beep()
76 if (!args) { in winsound_Beep()
108 winsound_MessageBeep(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) winsound_MessageBeep() argument
[all...]
/third_party/python/Modules/clinic/
H A D_queuemodule.c.h15 simplequeue_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) in simplequeue_new() argument
21 !_PyArg_NoPositional("SimpleQueue", args)) { in simplequeue_new()
52 _queue_SimpleQueue_put(simplequeueobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _queue_SimpleQueue_put() argument
63 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 3, 0, argsbuf); in _queue_SimpleQueue_put()
64 if (!args) { in _queue_SimpleQueue_put()
67 item = args[0]; in _queue_SimpleQueue_put()
71 if (args[1]) { in _queue_SimpleQueue_put()
72 block = PyObject_IsTrue(args[1]); in _queue_SimpleQueue_put()
80 timeout = args[ in _queue_SimpleQueue_put()
104 _queue_SimpleQueue_put_nowait(simplequeueobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _queue_SimpleQueue_put_nowait() argument
145 _queue_SimpleQueue_get(simplequeueobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _queue_SimpleQueue_get() argument
196 _queue_SimpleQueue_get_nowait(simplequeueobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _queue_SimpleQueue_get_nowait() argument
[all...]
/third_party/icu/icu4c/source/python/icutools/databuilder/
H A D__main__.py125 def __init__(self, args):
127 self.max_parallel = (args.seqmode == "parallel")
130 self.include_uni_core_data = args.include_uni_core_data
137 if args.filter_file:
139 with open(args.filter_file, "r") as f:
140 print("Note: Applying filters from %s." % args.filter_file, file=sys.stderr)
143 print("Error: Could not read filter file %s." % args.filter_file, file=sys.stderr)
145 self.filter_dir = os.path.abspath(os.path.dirname(args.filter_file))
265 args = flag_parser.parse_args(argv)
266 config = Config(args)
[all...]
/third_party/libuv/test/
H A Drunner-unix.c89 char* args[16]; in process_start() local
103 args[n++] = "valgrind"; in process_start()
104 args[n++] = "--quiet"; in process_start()
105 args[n++] = "--leak-check=full"; in process_start()
106 args[n++] = "--show-reachable=yes"; in process_start()
107 args[n++] = "--error-exitcode=125"; in process_start()
110 args[n++] = executable_path; in process_start()
111 args[n++] = name; in process_start()
112 args[n++] = part; in process_start()
113 args[ in process_start()
204 dowait_args* args = data; dowait() local
241 dowait_args args; process_wait() local
[all...]
/third_party/node/src/crypto/
H A Dcrypto_hmac.cc66 void Hmac::New(const FunctionCallbackInfo<Value>& args) { in New() argument
67 Environment* env = Environment::GetCurrent(args); in New()
68 new Hmac(env, args.This()); in New()
88 void Hmac::HmacInit(const FunctionCallbackInfo<Value>& args) { in HmacInit() argument
90 ASSIGN_OR_RETURN_UNWRAP(&hmac, args.Holder()); in HmacInit()
93 const node::Utf8Value hash_type(env->isolate(), args[0]); in HmacInit()
94 ByteSource key = ByteSource::FromSecretKeyBytes(env, args[1]); in HmacInit()
104 void Hmac::HmacUpdate(const FunctionCallbackInfo<Value>& args) { in HmacUpdate() argument
105 Decode<Hmac>(args, [](Hmac* hmac, const FunctionCallbackInfo<Value>& args, in HmacUpdate()
115 HmacDigest(const FunctionCallbackInfo<Value>& args) HmacDigest() argument
175 AdditionalConfig( CryptoJobMode mode, const FunctionCallbackInfo<Value>& args, unsigned int offset, HmacConfig* params) AdditionalConfig() argument
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dwin_tool.py28 def main(args):
30 exit_code = executor.Dispatch(args)
39 def _UseSeparateMspdbsrv(self, env, args):
42 if len(args) < 1:
45 if args[0] != "link.exe":
51 for arg in args:
67 def Dispatch(self, args):
69 if len(args) < 1:
72 method = "Exec%s" % self._CommandifyName(args[0])
73 return getattr(self, method)(*args[
[all...]
/third_party/node/benchmark/napi/function_args/
H A Dnapi_binding.c11 napi_value args[1]; in CallWithString() local
12 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL); in CallWithString()
16 status = napi_typeof(env, args[0], types); in CallWithString()
23 status = napi_get_value_string_utf8(env, args[0], NULL, 0, &len); in CallWithString()
26 status = napi_get_value_string_utf8(env, args[0], buf, len + 1, &len); in CallWithString()
38 napi_value args[1]; in CallWithArray() local
39 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL); in CallWithArray()
42 napi_value array = args[0]; in CallWithArray()
68 napi_value args[1]; in CallWithNumber() local
69 status = napi_get_cb_info(env, info, &argc, args, NUL in CallWithNumber()
90 napi_value args[1]; CallWithObject() local
122 napi_value args[1]; CallWithTypedarray() local
158 napi_value args[1000]; CallWithArguments() local
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dwin_tool.py28 def main(args):
30 exit_code = executor.Dispatch(args)
39 def _UseSeparateMspdbsrv(self, env, args):
42 if len(args) < 1:
45 if args[0] != "link.exe":
51 for arg in args:
67 def Dispatch(self, args):
69 if len(args) < 1:
72 method = "Exec%s" % self._CommandifyName(args[0])
73 return getattr(self, method)(*args[
[all...]
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/
H A D__main__.py125 def __init__(self, args):
127 self.max_parallel = (args.seqmode == "parallel")
130 self.include_uni_core_data = args.include_uni_core_data
137 if args.filter_file:
139 with open(args.filter_file, "r") as f:
140 print("Note: Applying filters from %s." % args.filter_file, file=sys.stderr)
143 print("Error: Could not read filter file %s." % args.filter_file, file=sys.stderr)
145 self.filter_dir = os.path.abspath(os.path.dirname(args.filter_file))
265 args = flag_parser.parse_args(argv)
266 config = Config(args)
[all...]
/third_party/gn/src/gn/
H A Dfunction_filter_labels_unittest.cc14 std::vector<Value> args; in TEST() local
23 args.push_back(labels); in TEST()
24 args.push_back(patterns); in TEST()
28 functions::RunFilterLabelsInclude(setup.scope(), &function, args, &err); in TEST()
40 std::vector<Value> args; in TEST() local
50 args.push_back(labels); in TEST()
51 args.push_back(patterns); in TEST()
55 functions::RunFilterLabelsInclude(setup.scope(), &function, args, &err); in TEST()
69 std::vector<Value> args; in TEST() local
78 args in TEST()
93 std::vector<Value> args; TEST() local
119 std::vector<Value> args; TEST() local
146 std::vector<Value> args; TEST() local
174 std::vector<Value> args; TEST() local
195 std::vector<Value> args; TEST() local
216 std::vector<Value> args; TEST() local
239 std::vector<Value> args; TEST() local
[all...]
/device/soc/rockchip/common/vendor/drivers/video/rockchip/mpp/
H A Dmpp_debug.h61 #define mpp_debug_func(type, fmt, args...) \
64 pr_info("%s:%d: " fmt, __func__, __LINE__, ##args); \
67 #define mpp_debug(type, fmt, args...) \
70 pr_info(fmt, ##args); \
88 #define mpp_err(fmt, args...) pr_err("%s:%d: " fmt, __func__, __LINE__, ##args)
90 #define mpp_dbg_link_flow(fmt, args...) \
93 pr_info("%s:%d: " fmt, __func__, __LINE__, ##args); \
97 #define mpp_dbg_session(fmt, args...) \
100 pr_info(fmt, ##args); \
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/video/rockchip/mpp/
H A Dmpp_debug.h64 #define mpp_debug_func(type, fmt, args...) \
68 __func__, __LINE__, ##args); \
71 #define mpp_debug(type, fmt, args...) \
74 pr_info(fmt, ##args); \
94 #define mpp_err(fmt, args...) \
95 pr_err("%s:%d: " fmt, __func__, __LINE__, ##args)
97 #define mpp_dbg_link_flow(fmt, args...) \
101 __func__, __LINE__, ##args); \
105 #define mpp_dbg_session(fmt, args...) \
108 pr_info(fmt, ##args); \
[all...]
/third_party/node/lib/internal/util/
H A Ddebuglog.js60 debugImpls[set] = function debug(...args) {
62 const msg = formatWithOptions({ colors }, ...args);
82 let debug = (...args) => {
89 switch (args.length) {
90 case 1: return debug(args[0]);
91 case 2: return debug(args[0], args[1]);
92 default: return debug(...new SafeArrayIterator(args));
101 const logger = (...args) => {
102 switch (args
[all...]
/third_party/musl/porting/linux/user/src/mq/
H A Dmq_notify.c10 struct args { struct
18 struct args *args = p; in start() local
21 int s = args->sock; in start()
22 void (*func)(union sigval) = args->sev->sigev_notify_function; in start()
23 union sigval val = args->sev->sigev_value; in start()
25 pthread_barrier_wait(&args->barrier); in start()
35 struct args args = { .sev = sev }; in mq_notify() local
47 args in mq_notify()
[all...]
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_print.py48 args = node.children[1:]
49 if len(args) == 1 and parend_expr.match(args[0]):
55 if args and args[-1] == Comma():
56 args = args[:-1]
58 if args and args[0] == pytree.Leaf(token.RIGHTSHIFT, ">>"):
59 assert len(args) >
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLConstructorCompound.cpp20 ExpressionArray args) { in Make()
26 if (type.isScalar() && args.size() == 1 && args.front()->type() == type) { in Make()
27 return std::move(args.front()); in Make()
32 SkASSERT(std::all_of(args.begin(), args.end(), [&](const std::unique_ptr<Expression>& arg) { in Make()
40 std::accumulate(args.begin(), args.end(), /*initial value*/ (size_t)0, in Make()
53 for (const std::unique_ptr<Expression>& arg : args) { in Make()
61 if (fields > args in Make()
17 Make(const Context& context, int line, const Type& type, ExpressionArray args) Make() argument
[all...]
/third_party/skia/third_party/externals/harfbuzz/test/subset/
H A Dgenerate-expected-outputs.py32 args = ["fonttools", "subset", input_file]
33 args.extend(["--drop-tables+=DSIG",
37 args.extend(profile_flags)
38 check_call(args)
45 args = [
52 args.extend(profile_flags)
53 check_call(args)
69 args = sys.argv[1:] variable
70 if not args:
72 hb_subset, args
[all...]
/third_party/vixl/tools/
H A Dgenerate_simulator_traces.py122 def ShouldGenerateAArch32(args):
123 return (not args.aarch32_only and not args.aarch64_only) or args.aarch32_only
125 def ShouldGenerateAArch64(args):
126 return (not args.aarch32_only and not args.aarch64_only) or args.aarch64_only
139 args = BuildOptions(root_dir)
142 status, test_list = util.getstatusoutput(args
[all...]
/third_party/libdrm/nouveau/
H A Dnouveau.c85 } *args = data; in nouveau_object_ioctl() local
89 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true))) { in nouveau_object_ioctl()
92 args->v0.object = (unsigned long)(void *)obj; in nouveau_object_ioctl()
94 args->v0.object = 0; in nouveau_object_ioctl()
95 args->v0.owner = NVIF_IOCTL_V0_OWNER_ANY; in nouveau_object_ioctl()
96 args->v0.route = 0x00; in nouveau_object_ioctl()
98 args->v0.route = 0xff; in nouveau_object_ioctl()
99 args->v0.token = obj->handle; in nouveau_object_ioctl()
104 return drmCommandWriteRead(drm->fd, DRM_NOUVEAU_NVIF, args, argc); in nouveau_object_ioctl()
115 } *args; in nouveau_object_mthd() local
157 } *args = NULL; nouveau_object_sclass_get() local
232 } args = { nouveau_object_fini() local
255 } *args; nouveau_object_init() local
384 } *args = data; nouveau_device_new() local
[all...]
/third_party/selinux/libsepol/src/
H A Dhierarchy.c153 void *args) in bounds_expand_rule_callback()
155 struct bounds_expand_args *a = (struct bounds_expand_args *)args; in bounds_expand_rule_callback()
191 struct bounds_expand_args args; in bounds_expand_parent_rules() local
198 args.handle = handle; in bounds_expand_parent_rules()
199 args.p = p; in bounds_expand_parent_rules()
200 args.avtab = global_avtab; in bounds_expand_parent_rules()
201 args.parent = parent; in bounds_expand_parent_rules()
202 rc = avtab_map(&p->te_avtab, bounds_expand_rule_callback, &args); in bounds_expand_parent_rules()
359 void *args) in bounds_check_rule_callback()
361 struct bounds_check_args *a = (struct bounds_check_args *)args; in bounds_check_rule_callback()
152 bounds_expand_rule_callback(avtab_key_t *k, avtab_datum_t *d, void *args) bounds_expand_rule_callback() argument
358 bounds_check_rule_callback(avtab_key_t *k, avtab_datum_t *d, void *args) bounds_check_rule_callback() argument
378 struct bounds_check_args args; bounds_check_child_rules() local
466 bounds_check_type_callback(hashtab_key_t k __attribute__ ((unused)), hashtab_datum_t d, void *args) bounds_check_type_callback() argument
490 struct bounds_args args; bounds_check_types() local
512 bounds_check_role_callback(hashtab_key_t k, hashtab_datum_t d, void *args) bounds_check_role_callback() argument
535 struct bounds_args args; bounds_check_roles() local
555 bounds_check_user_callback(hashtab_key_t k, hashtab_datum_t d, void *args) bounds_check_user_callback() argument
578 struct bounds_args args; bounds_check_users() local
644 struct bounds_args args; add_hierarchy_callback_template() local
[all...]
/third_party/libdrm/tegra/
H A Dtegra.c124 struct drm_tegra_gem_create args; in drm_tegra_bo_new() local
135 memset(&args, 0, sizeof(args)); in drm_tegra_bo_new()
136 args.flags = flags; in drm_tegra_bo_new()
137 args.size = size; in drm_tegra_bo_new()
139 err = drmCommandWriteRead(drm->fd, DRM_TEGRA_GEM_CREATE, &args, in drm_tegra_bo_new()
140 sizeof(args)); in drm_tegra_bo_new()
147 bo->handle = args.handle; in drm_tegra_bo_new()
202 struct drm_tegra_gem_mmap args; in drm_tegra_bo_map() local
205 memset(&args, in drm_tegra_bo_map()
248 struct drm_gem_flink args; drm_tegra_bo_get_name() local
268 struct drm_gem_open args; drm_tegra_bo_open() local
[all...]

Completed in 13 milliseconds

1...<<11121314151617181920>>...227