Home
last modified time | relevance | path

Searched refs:target (Results 526 - 550 of 6969) sorted by relevance

1...<<21222324252627282930>>...279

/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetMBCS.java790 * A recursive call may do stateProps[state]|=0x40 if this state is the target of an
1631 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) { in decodeLoop() argument
1633 return cnvMBCSToUnicodeWithOffsets(source, target, offsets, flush); in decodeLoop()
1639 private CoderResult continueMatchToU(ByteBuffer source, CharBuffer target, IntBuffer offsets, int srcIndex, in continueMatchToU() argument
1662 cr = writeToU(value[0], target, offsets, srcIndex); in continueMatchToU()
1821 private CoderResult writeToU(int value, CharBuffer target, IntBuffer offsets, int srcIndex) { in writeToU() argument
1826 return toUWriteCodePoint(TO_U_GET_CODE_POINT(value), target, offsets, srcIndex); in writeToU()
1834 return toUWriteUChars(this, a, 0, a.length, target, offsets, srcIndex); in writeToU()
1838 private CoderResult toUWriteCodePoint(int c, CharBuffer target, IntBuffer offsets, int sourceIndex) { in toUWriteCodePoint() argument
1840 int tBeginIndex = target in toUWriteCodePoint()
1877 toU(int length, ByteBuffer source, CharBuffer target, IntBuffer offsets, int sourceIndex, boolean flush, CoderResult[] cr) toU() argument
1918 initialMatchToU(int firstLength, ByteBuffer source, CharBuffer target, IntBuffer offsets, int srcIndex, boolean flush, CoderResult[] cr) initialMatchToU() argument
2002 cnvMBCSToUnicodeWithOffsets(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) cnvMBCSToUnicodeWithOffsets() argument
2360 cnvMBCSSingleToBMPWithOffsets(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) cnvMBCSSingleToBMPWithOffsets() argument
2489 cnvMBCSSingleToUnicodeWithOffsets(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) cnvMBCSSingleToUnicodeWithOffsets() argument
2848 encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) encodeLoop() argument
3524 continueMatchFromU(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush, int srcIndex) continueMatchFromU() argument
3802 writeFromU(int value, ByteBuffer target, IntBuffer offsets, int srcIndex) writeFromU() argument
3882 fromU(int cp, CharBuffer source, ByteBuffer target, IntBuffer offsets, int sourceIndex, int length, boolean flush, CoderResult[] cr) fromU() argument
3934 initialMatchFromU(int cp, CharBuffer source, ByteBuffer target, IntBuffer offsets, int srcIndex, boolean flush, CoderResult[] cr) initialMatchFromU() argument
3977 cnvMBCSFromUnicodeWithOffsets(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) cnvMBCSFromUnicodeWithOffsets() argument
3986 cnvMBCSSingleFromBMPWithOffsets(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) cnvMBCSSingleFromBMPWithOffsets() argument
4151 cnvMBCSSingleFromUnicodeWithOffsets(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) cnvMBCSSingleFromUnicodeWithOffsets() argument
4301 cnvMBCSDoubleFromUnicodeWithOffsets(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) cnvMBCSDoubleFromUnicodeWithOffsets() argument
4542 getTrail(CharBuffer source, ByteBuffer target, int uniMask, SideEffects x, boolean flush, CoderResult[] cr) getTrail() argument
4575 unassigned(CharBuffer source, ByteBuffer target, IntBuffer offsets, SideEffects x, boolean flush, CoderResult[] cr) unassigned() argument
4616 getTrailDouble(CharBuffer source, ByteBuffer target, int uniMask, SideEffectsDouble x, boolean flush, CoderResult[] cr) getTrailDouble() argument
4648 unassignedDouble(CharBuffer source, ByteBuffer target, SideEffectsDouble x, boolean flush, CoderResult[] cr) unassignedDouble() argument
4681 cbFromUWriteSub(CharsetEncoderICU encoder, CharBuffer source, ByteBuffer target, IntBuffer offsets) cbFromUWriteSub() argument
[all...]
H A DCharset88591.java31 protected CoderResult decodeLoopCoreOptimized(ByteBuffer source, CharBuffer target, in decodeLoopCoreOptimized() argument
35 * perform 88591 conversion from the source array to the target array. no range check is in decodeLoopCoreOptimized()
45 protected CoderResult decodeLoopCoreUnoptimized(ByteBuffer source, CharBuffer target) { in decodeLoopCoreUnoptimized() argument
48 * perform 88591 conversion from the source buffer to the target buffer. no range check in decodeLoopCoreUnoptimized()
53 if (target.hasRemaining()) { in decodeLoopCoreUnoptimized()
54 target.put((char) (ch & 0xff)); in decodeLoopCoreUnoptimized()
70 protected final CoderResult encodeLoopCoreOptimized(CharBuffer source, ByteBuffer target, in encodeLoopCoreOptimized() argument
76 * perform 88591 conversion from the source array to the target array, making sure each in encodeLoopCoreOptimized()
90 * encodeMalformedOrUnmappable and move the source and target positions to reflect the in encodeLoopCoreOptimized()
95 target in encodeLoopCoreOptimized()
102 encodeLoopCoreUnoptimized(CharBuffer source, ByteBuffer target, boolean flush) encodeLoopCoreUnoptimized() argument
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dccurrtst.c102 UChar source[2], target[2]; in currTest() local
125 u_strcpy(target, currency[j]); in currTest()
140 compareResult = ucol_strcoll(c, source, u_strlen(source), target, u_strlen(target)); in currTest()
148 sortklen=ucol_getSortKey(c, target, u_strlen(target), NULL, 0); in currTest()
150 ucol_getSortKey(c, target, u_strlen(target), sortKey2, sortklen+1); in currTest()
157 reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, expectedResult ); in currTest()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DLotusCollationKoreanTest.java64 private void doTest( char[] source, char[] target, int result) { in doTest() argument
66 String t = new String(target); in doTest()
75 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, in reportCResult() argument
99 logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult()
101 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult()
109 logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult()
111 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult()
124 logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult()
126 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DLotusCollationKoreanTest.java67 private void doTest( char[] source, char[] target, int result) { in doTest() argument
69 String t = new String(target); in doTest()
78 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, in reportCResult() argument
102 logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult()
104 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult()
112 logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult()
114 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult()
127 logln(msg1 + source + msg2 + target + msg3 + sResult); in reportCResult()
129 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect); in reportCResult()
/third_party/jerryscript/tests/jerry/es2015/
H A Dproxy_construct.js19 var target = function () {}; function
20 var handler = { construct (target) {
24 var proxy = new Proxy(target, handler);
104 construct(target, args, new_target) {
105 seen_target = target;
108 return Reflect.construct(target, args, new_target);
128 construct: function(target, argumentsList, newTarget) {
142 construct: function(target, argumentsList, newTarget) {
155 construct: function(target, argumentsList, newTarget) {
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_border_clamp/
H A DesextcTextureBorderClampGetTexParameterIErrors.cpp103 * cube map texture target. */ in iterate()
113 * if used for GL_TEXTURE_BUFFER_EXT texture target. */ in iterate()
131 * glGetTexParameterIuivEXT() functions for a particular texture target.
133 * @param target texture target to be used for the calls;
136 void TextureBorderClampGetTexParameterIErrorsTest::CheckAllNames(glw::GLenum target, glw::GLenum expected_error) in CheckAllNames() argument
141 VerifyGLGetTexParameterIiv(target, m_pname_list[i] /* pname*/, expected_error); in CheckAllNames()
143 VerifyGLGetTexParameterIuiv(target, m_pname_list[i] /* pname*/, expected_error); in CheckAllNames()
150 * @param target texture target t
154 VerifyGLGetTexParameterIiv(glw::GLenum target, glw::GLenum pname, glw::GLenum expected_error) VerifyGLGetTexParameterIiv() argument
183 VerifyGLGetTexParameterIuiv(glw::GLenum target, glw::GLenum pname, glw::GLenum expected_error) VerifyGLGetTexParameterIuiv() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdecoratorOnClassMethod19(target=es2015).js20 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
21 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
22 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
23 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
24 return c > 3 && r && Object.defineProperty(target, key, r), r;
30 return function (target, key) { decorator(target, key, paramIndex); }
H A DmetadataOfUnion.js2 function PropDeco(target: Object, propKey: string | symbol) { }
40 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
41 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
42 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
43 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
44 return c > 3 && r && Object.defineProperty(target, key, r), r;
49 function PropDeco(target, propKey) { }
H A DmetadataOfUnionWithNull.js2 function PropDeco(target: Object, propKey: string | symbol) { }
46 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
47 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
48 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
49 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
50 return c > 3 && r && Object.defineProperty(target, key, r), r;
55 function PropDeco(target, propKey) { }
H A DimportHelpersNoModule.js79 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
80 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
81 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
82 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
83 return c > 3 && r && Object.defineProperty(target, key, r), r;
89 return function (target, key) { decorator(target, key, paramIndex); }
/third_party/mesa3d/src/mesa/main/
H A Dqueryobj.c181 assert(0 && "unexpected query target in st_BeginQuery()"); in begin_query()
440 GLenum target) in get_pipe_stats_binding_point()
442 const int which = target - GL_VERTICES_SUBMITTED; in get_pipe_stats_binding_point()
452 * Return pointer to the query object binding point for the given target and
454 * \return NULL if invalid target, else the address of binding point
457 get_query_binding_point(struct gl_context *ctx, GLenum target, GLuint index) in get_query_binding_point() argument
459 switch (target) { in get_query_binding_point()
513 return get_pipe_stats_binding_point(ctx, target); in get_query_binding_point()
517 target = GL_VERTICES_SUBMITTED + MAX_PIPELINE_STATISTICS - 1; in get_query_binding_point()
521 return get_pipe_stats_binding_point(ctx, target); in get_query_binding_point()
439 get_pipe_stats_binding_point(struct gl_context *ctx, GLenum target) get_pipe_stats_binding_point() argument
548 create_queries(struct gl_context *ctx, GLenum target, GLsizei n, GLuint *ids, bool dsa) create_queries() argument
587 _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids) _mesa_CreateQueries() argument
671 query_error_check_index(struct gl_context *ctx, GLenum target, GLuint index) query_error_check_index() argument
693 _mesa_BeginQueryIndexed(GLenum target, GLuint index, GLuint id) _mesa_BeginQueryIndexed() argument
799 _mesa_EndQueryIndexed(GLenum target, GLuint index) _mesa_EndQueryIndexed() argument
844 _mesa_BeginQuery(GLenum target, GLuint id) _mesa_BeginQuery() argument
850 _mesa_EndQuery(GLenum target) _mesa_EndQuery() argument
856 _mesa_QueryCounter(GLuint id, GLenum target) _mesa_QueryCounter() argument
926 _mesa_GetQueryIndexediv(GLenum target, GLuint index, GLenum pname, GLint *params) _mesa_GetQueryIndexediv() argument
1066 _mesa_GetQueryiv(GLenum target, GLenum pname, GLint *params) _mesa_GetQueryiv() argument
[all...]
/kernel/linux/linux-5.10/net/netfilter/
H A Dx_tables.c49 struct list_head target; member
69 int xt_register_target(struct xt_target *target) in xt_register_target() argument
71 u_int8_t af = target->family; in xt_register_target()
74 list_add(&target->list, &xt[af].target); in xt_register_target()
81 xt_unregister_target(struct xt_target *target) in xt_unregister_target() argument
83 u_int8_t af = target->family; in xt_unregister_target()
86 list_del(&target->list); in xt_unregister_target()
92 xt_register_targets(struct xt_target *target, unsigned int n) in xt_register_targets() argument
98 err = xt_register_target(&target[ in xt_register_targets()
112 xt_unregister_targets(struct xt_target *target, unsigned int n) xt_unregister_targets() argument
257 struct xt_target *target; xt_request_find_target() local
373 xt_find_revision(u8 af, const char *name, u8 revision, int target, int *err) xt_find_revision() argument
525 xt_check_entry_match(const char *match, const char *target, const size_t alignment) xt_check_entry_match() argument
960 xt_find_jump_offset(const unsigned int *offsets, unsigned int target, unsigned int size) xt_find_jump_offset() argument
1104 xt_compat_target_offset(const struct xt_target *target) xt_compat_target_offset() argument
1114 const struct xt_target *target = t->u.kernel.target; xt_compat_target_from_user() local
1141 const struct xt_target *target = t->u.kernel.target; xt_compat_target_to_user() local
1653 const struct xt_target *target; xt_target_seq_show() local
[all...]
/kernel/linux/linux-6.6/net/netfilter/
H A Dx_tables.c68 struct list_head target; member
89 int xt_register_target(struct xt_target *target) in xt_register_target() argument
91 u_int8_t af = target->family; in xt_register_target()
94 list_add(&target->list, &xt[af].target); in xt_register_target()
101 xt_unregister_target(struct xt_target *target) in xt_unregister_target() argument
103 u_int8_t af = target->family; in xt_unregister_target()
106 list_del(&target->list); in xt_unregister_target()
112 xt_register_targets(struct xt_target *target, unsigned int n) in xt_register_targets() argument
118 err = xt_register_target(&target[ in xt_register_targets()
132 xt_unregister_targets(struct xt_target *target, unsigned int n) xt_unregister_targets() argument
277 struct xt_target *target; xt_request_find_target() local
393 xt_find_revision(u8 af, const char *name, u8 revision, int target, int *err) xt_find_revision() argument
545 xt_check_entry_match(const char *match, const char *target, const size_t alignment) xt_check_entry_match() argument
980 xt_find_jump_offset(const unsigned int *offsets, unsigned int target, unsigned int size) xt_find_jump_offset() argument
1124 xt_compat_target_offset(const struct xt_target *target) xt_compat_target_offset() argument
1134 const struct xt_target *target = t->u.kernel.target; xt_compat_target_from_user() local
1161 const struct xt_target *target = t->u.kernel.target; xt_compat_target_to_user() local
1696 const struct xt_target *target; xt_target_seq_show() local
[all...]
/kernel/linux/linux-5.10/drivers/scsi/
H A Dnsp32.c447 unsigned char target = scmd_id(SCpnt); in nsp32_selection_autopara() local
512 /* syncreg, ackwidth, target id, SREQ sampling rate */ in nsp32_selection_autopara()
515 param->target_id = BIT(host_id) | BIT(target); in nsp32_selection_autopara()
578 unsigned char target = scmd_id(SCpnt); in nsp32_selection_autoscsi() local
623 * set SCSIOUT LATCH(initiator)/TARGET(target) (OR-ed) ID in nsp32_selection_autoscsi()
625 nsp32_write1(base, SCSI_OUT_LATCH_TARGET_ID, BIT(host_id) | BIT(target)); in nsp32_selection_autoscsi()
794 * reselection target id&lun must be already set.
835 data->cur_target = &(data->target[newid]); in nsp32_reselection()
900 nsp32_target *target; in nsp32_queuecommand_lck() local
905 "enter. target in nsp32_queuecommand_lck()
2221 nsp32_target *target = data->cur_target; nsp32_analyze_sdtr() local
2353 nsp32_search_period_entry(nsp32_hw_data *data, nsp32_target *target, unsigned char period) nsp32_search_period_entry() argument
2386 nsp32_set_async(nsp32_hw_data *data, nsp32_target *target) nsp32_set_async() argument
2403 nsp32_set_max_sync(nsp32_hw_data *data, nsp32_target *target, unsigned char *period, unsigned char *offset) nsp32_set_max_sync() argument
2425 nsp32_set_sync_entry(nsp32_hw_data *data, nsp32_target *target, int entry, unsigned char offset) nsp32_set_sync_entry() argument
2677 nsp32_target *target = &(data->target[i]); nsp32_detect() local
2859 nsp32_target *target = &data->target[i]; nsp32_do_bus_reset() local
2986 nsp32_target *target; nsp32_getprom_at24() local
3072 nsp32_target *target; nsp32_getprom_c16() local
[all...]
/kernel/linux/linux-6.6/drivers/scsi/
H A Dnsp32.c454 unsigned char target = scmd_id(SCpnt); in nsp32_selection_autopara() local
520 /* syncreg, ackwidth, target id, SREQ sampling rate */ in nsp32_selection_autopara()
523 param->target_id = BIT(host_id) | BIT(target); in nsp32_selection_autopara()
586 unsigned char target = scmd_id(SCpnt); in nsp32_selection_autoscsi() local
630 * set SCSIOUT LATCH(initiator)/TARGET(target) (OR-ed) ID in nsp32_selection_autoscsi()
633 BIT(host_id) | BIT(target)); in nsp32_selection_autoscsi()
803 * reselection target id&lun must be already set.
845 data->cur_target = &(data->target[newid]); in nsp32_reselection()
912 nsp32_target *target; in nsp32_queuecommand_lck() local
917 "enter. target in nsp32_queuecommand_lck()
2226 nsp32_target *target = data->cur_target; nsp32_analyze_sdtr() local
2353 nsp32_search_period_entry(nsp32_hw_data *data, nsp32_target *target, unsigned char period) nsp32_search_period_entry() argument
2386 nsp32_set_async(nsp32_hw_data *data, nsp32_target *target) nsp32_set_async() argument
2403 nsp32_set_max_sync(nsp32_hw_data *data, nsp32_target *target, unsigned char *period, unsigned char *offset) nsp32_set_max_sync() argument
2425 nsp32_set_sync_entry(nsp32_hw_data *data, nsp32_target *target, int entry, unsigned char offset) nsp32_set_sync_entry() argument
2677 nsp32_target *target = &(data->target[i]); nsp32_detect() local
2859 nsp32_target *target = &data->target[i]; nsp32_do_bus_reset() local
2987 nsp32_target *target; nsp32_getprom_at24() local
3073 nsp32_target *target; nsp32_getprom_c16() local
[all...]
/kernel/linux/linux-5.10/kernel/
H A Dcpu.c48 * @target: The target state
61 enum cpuhp_state target; member
175 trace_cpuhp_enter(cpu, st->target, state, cb); in cpuhp_invoke_callback()
187 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); in cpuhp_invoke_callback()
199 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); in cpuhp_invoke_callback()
224 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); in cpuhp_invoke_callback()
457 cpuhp_set_state(struct cpuhp_cpu_state *st, enum cpuhp_state target) in cpuhp_set_state() argument
464 st->target = target; in cpuhp_set_state()
508 cpuhp_kick_ap(struct cpuhp_cpu_state *st, enum cpuhp_state target) cpuhp_kick_ap() argument
616 cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st, enum cpuhp_state target) cpuhp_up_callbacks() argument
922 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE); take_cpu_down() local
1032 cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st, enum cpuhp_state target) cpuhp_down_callbacks() argument
1051 _cpu_down(unsigned int cpu, int tasks_frozen, enum cpuhp_state target) _cpu_down() argument
1118 cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target) cpu_down_maps_locked() argument
1125 cpu_down(unsigned int cpu, enum cpuhp_state target) cpu_down() argument
1216 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE); notify_cpu_starting() local
1255 _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target) _cpu_up() argument
1315 cpu_up(unsigned int cpu, enum cpuhp_state target) cpu_up() argument
2212 int target, ret; write_cpuhp_target() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A Dnull_functions.cpp23 void INTERNAL_GL_APIENTRY glBeginQueryNULL(GLenum target, GLuint id) {} in glBeginQueryNULL() argument
25 void INTERNAL_GL_APIENTRY glBeginQueryIndexedNULL(GLenum target, GLuint index, GLuint id) {} in glBeginQueryIndexedNULL() argument
32 void INTERNAL_GL_APIENTRY glBindBufferNULL(GLenum target, GLuint buffer) {} in glBindBufferNULL() argument
34 void INTERNAL_GL_APIENTRY glBindBufferBaseNULL(GLenum target, GLuint index, GLuint buffer) {} in glBindBufferBaseNULL() argument
37 glBindBufferRangeNULL(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) in glBindBufferRangeNULL() argument
40 void INTERNAL_GL_APIENTRY glBindBuffersBaseNULL(GLenum target, in glBindBuffersBaseNULL() argument
46 void INTERNAL_GL_APIENTRY glBindBuffersRangeNULL(GLenum target, in glBindBuffersRangeNULL() argument
65 void INTERNAL_GL_APIENTRY glBindFramebufferNULL(GLenum target, GLuint framebuffer) {} in glBindFramebufferNULL() argument
83 void INTERNAL_GL_APIENTRY glBindRenderbufferNULL(GLenum target, GLuint renderbuffer) {} in glBindRenderbufferNULL() argument
89 void INTERNAL_GL_APIENTRY glBindTextureNULL(GLenum target, GLuin argument
95 glBindTransformFeedbackNULL(GLenum target, GLuint id) glBindTransformFeedbackNULL() argument
190 glBufferDataNULL(GLenum target, GLsizeiptr size, const void *data, GLenum usage) glBufferDataNULL() argument
196 glBufferStorageNULL(GLenum target, GLsizeiptr size, const void *data, GLbitfield flags) glBufferStorageNULL() argument
202 glBufferStorageMemEXTNULL(GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset) glBufferStorageMemEXTNULL() argument
208 glBufferSubDataNULL(GLenum target, GLintptr offset, GLsizeiptr size, const void *data) glBufferSubDataNULL() argument
214 glCheckFramebufferStatusNULL(GLenum target) glCheckFramebufferStatusNULL() argument
219 glCheckNamedFramebufferStatusNULL(GLuint framebuffer, GLenum target) glCheckNamedFramebufferStatusNULL() argument
224 glClampColorNULL(GLenum target, GLenum clamp) glClampColorNULL() argument
228 glClearBufferDataNULL(GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data) glClearBufferDataNULL() argument
235 glClearBufferSubDataNULL(GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data) glClearBufferSubDataNULL() argument
345 glCompressedTexImage1DNULL(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data) glCompressedTexImage1DNULL() argument
354 glCompressedTexImage2DNULL(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data) glCompressedTexImage2DNULL() argument
364 glCompressedTexImage3DNULL(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data) glCompressedTexImage3DNULL() argument
375 glCompressedTexSubImage1DNULL(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data) glCompressedTexSubImage1DNULL() argument
384 glCompressedTexSubImage2DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data) glCompressedTexSubImage2DNULL() argument
395 glCompressedTexSubImage3DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data) glCompressedTexSubImage3DNULL() argument
472 glCopyTexImage1DNULL(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) glCopyTexImage1DNULL() argument
481 glCopyTexImage2DNULL(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) glCopyTexImage2DNULL() argument
492 glCopyTexSubImage1DNULL(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) glCopyTexSubImage1DNULL() argument
495 glCopyTexSubImage2DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) glCopyTexSubImage2DNULL() argument
505 glCopyTexSubImage3DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) glCopyTexSubImage3DNULL() argument
560 glCreateQueriesNULL(GLenum target, GLsizei n, GLuint *ids) glCreateQueriesNULL() argument
578 glCreateTexturesNULL(GLenum target, GLsizei n, GLuint *textures) glCreateTexturesNULL() argument
654 glDisableiNULL(GLenum target, GLuint index) glDisableiNULL() argument
656 glDiscardFramebufferEXTNULL(GLenum target, GLsizei numAttachments, const GLenum *attachments) glDiscardFramebufferEXTNULL() argument
770 glEGLImageTargetRenderbufferStorageOESNULL(GLenum target, GLeglImageOES image) glEGLImageTargetRenderbufferStorageOESNULL() argument
774 glEGLImageTargetTexture2DOESNULL(GLenum target, GLeglImageOES image) glEGLImageTargetTexture2DOESNULL() argument
782 glEnableiNULL(GLenum target, GLuint index) glEnableiNULL() argument
786 glEndQueryNULL(GLenum target) glEndQueryNULL() argument
788 glEndQueryIndexedNULL(GLenum target, GLuint index) glEndQueryIndexedNULL() argument
803 glFlushMappedBufferRangeNULL(GLenum target, GLintptr offset, GLsizeiptr length) glFlushMappedBufferRangeNULL() argument
813 glFramebufferParameteriNULL(GLenum target, GLenum pname, GLint param) glFramebufferParameteriNULL() argument
815 glFramebufferRenderbufferNULL(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) glFramebufferRenderbufferNULL() argument
821 glFramebufferTextureNULL(GLenum target, GLenum attachment, GLuint texture, GLint level) glFramebufferTextureNULL() argument
827 glFramebufferTexture1DNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) glFramebufferTexture1DNULL() argument
834 glFramebufferTexture2DNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) glFramebufferTexture2DNULL() argument
841 glFramebufferTexture2DMultisampleEXTNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples) glFramebufferTexture2DMultisampleEXTNULL() argument
849 glFramebufferTexture2DMultisampleIMGNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples) glFramebufferTexture2DMultisampleIMGNULL() argument
857 glFramebufferTexture3DNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset) glFramebufferTexture3DNULL() argument
865 glFramebufferTextureLayerNULL(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) glFramebufferTextureLayerNULL() argument
872 glFramebufferTextureMultiviewOVRNULL(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews) glFramebufferTextureMultiviewOVRNULL() argument
904 glGenerateMipmapNULL(GLenum target) glGenerateMipmapNULL() argument
993 glGetBooleani_vNULL(GLenum target, GLuint index, GLboolean *data) glGetBooleani_vNULL() argument
997 glGetBufferParameteri64vNULL(GLenum target, GLenum pname, GLint64 *params) glGetBufferParameteri64vNULL() argument
1000 glGetBufferParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetBufferParameterivNULL() argument
1002 glGetBufferPointervNULL(GLenum target, GLenum pname, void **params) glGetBufferPointervNULL() argument
1004 glGetBufferSubDataNULL(GLenum target, GLintptr offset, GLsizeiptr size, void *data) glGetBufferSubDataNULL() argument
1010 glGetCompressedTexImageNULL(GLenum target, GLint level, void *img) glGetCompressedTexImageNULL() argument
1042 glGetDoublei_vNULL(GLenum target, GLuint index, GLdouble *data) glGetDoublei_vNULL() argument
1053 glGetFloati_vNULL(GLenum target, GLuint index, GLfloat *data) glGetFloati_vNULL() argument
1067 glGetFramebufferAttachmentParameterivNULL(GLenum target, GLenum attachment, GLenum pname, GLint *params) glGetFramebufferAttachmentParameterivNULL() argument
1073 glGetFramebufferParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetFramebufferParameterivNULL() argument
1083 glGetInteger64i_vNULL(GLenum target, GLuint index, GLint64 *data) glGetInteger64i_vNULL() argument
1087 glGetIntegeri_vNULL(GLenum target, GLuint index, GLint *data) glGetIntegeri_vNULL() argument
1091 glGetInternalformatSampleivNVNULL(GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei bufSize, GLint *params) glGetInternalformatSampleivNVNULL() argument
1099 glGetInternalformati64vNULL(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint64 *params) glGetInternalformati64vNULL() argument
1106 glGetInternalformativNULL(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint *params) glGetInternalformativNULL() argument
1269 glGetQueryIndexedivNULL(GLenum target, GLuint index, GLenum pname, GLint *params) glGetQueryIndexedivNULL() argument
1283 glGetQueryivNULL(GLenum target, GLenum pname, GLint *params) glGetQueryivNULL() argument
1285 glGetRenderbufferParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetRenderbufferParameterivNULL() argument
1358 glGetTexImageNULL(GLenum target, GLint level, GLenum format, GLenum type, void *pixels) glGetTexImageNULL() argument
1361 glGetTexLevelParameterfvNULL(GLenum target, GLint level, GLenum pname, GLfloat *params) glGetTexLevelParameterfvNULL() argument
1367 glGetTexLevelParameterivNULL(GLenum target, GLint level, GLenum pname, GLint *params) glGetTexLevelParameterivNULL() argument
1373 glGetTexParameterIivNULL(GLenum target, GLenum pname, GLint *params) glGetTexParameterIivNULL() argument
1375 glGetTexParameterIuivNULL(GLenum target, GLenum pname, GLuint *params) glGetTexParameterIuivNULL() argument
1377 glGetTexParameterfvNULL(GLenum target, GLenum pname, GLfloat *params) glGetTexParameterfvNULL() argument
1379 glGetTexParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetTexParameterivNULL() argument
1482 glGetUnsignedBytei_vEXTNULL(GLenum target, GLuint index, GLubyte *data) glGetUnsignedBytei_vEXTNULL() argument
1515 glGetnCompressedTexImageNULL(GLenum target, GLint lod, GLsizei bufSize, void *pixels) glGetnCompressedTexImageNULL() argument
1521 glGetnTexImageNULL(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels) glGetnTexImageNULL() argument
1553 glHintNULL(GLenum target, GLenum mode) glHintNULL() argument
1595 glInvalidateFramebufferNULL(GLenum target, GLsizei numAttachments, const GLenum *attachments) glInvalidateFramebufferNULL() argument
1614 glInvalidateSubFramebufferNULL(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) glInvalidateSubFramebufferNULL() argument
1645 glIsEnablediNULL(GLenum target, GLuint index) glIsEnablediNULL() argument
1726 glMapBufferNULL(GLenum target, GLenum access) glMapBufferNULL() argument
1731 glMapBufferRangeNULL(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access) glMapBufferRangeNULL() argument
2229 glQueryCounterNULL(GLuint id, GLenum target) glQueryCounterNULL() argument
2254 glRenderbufferStorageNULL(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageNULL() argument
2260 glRenderbufferStorageMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageMultisampleNULL() argument
2267 glRenderbufferStorageMultisampleEXTNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageMultisampleEXTNULL() argument
2274 glRenderbufferStorageMultisampleIMGNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageMultisampleIMGNULL() argument
2377 glTexBufferNULL(GLenum target, GLenum internalformat, GLuint buffer) glTexBufferNULL() argument
2379 glTexBufferEXTNULL(GLenum target, GLenum internalformat, GLuint buffer) glTexBufferEXTNULL() argument
2381 glTexBufferOESNULL(GLenum target, GLenum internalformat, GLuint buffer) glTexBufferOESNULL() argument
2383 glTexBufferRangeNULL(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) glTexBufferRangeNULL() argument
2390 glTexBufferRangeEXTNULL(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) glTexBufferRangeEXTNULL() argument
2397 glTexBufferRangeOESNULL(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) glTexBufferRangeOESNULL() argument
2404 glTexImage1DNULL(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels) glTexImage1DNULL() argument
2414 glTexImage2DNULL(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels) glTexImage2DNULL() argument
2425 glTexImage2DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations) glTexImage2DMultisampleNULL() argument
2433 glTexImage3DNULL(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels) glTexImage3DNULL() argument
2445 glTexImage3DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations) glTexImage3DMultisampleNULL() argument
2454 glTexParameterIivNULL(GLenum target, GLenum pname, const GLint *params) glTexParameterIivNULL() argument
2456 glTexParameterIuivNULL(GLenum target, GLenum pname, const GLuint *params) glTexParameterIuivNULL() argument
2459 glTexParameterfNULL(GLenum target, GLenum pname, GLfloat param) glTexParameterfNULL() argument
2461 glTexParameterfvNULL(GLenum target, GLenum pname, const GLfloat *params) glTexParameterfvNULL() argument
2464 glTexParameteriNULL(GLenum target, GLenum pname, GLint param) glTexParameteriNULL() argument
2466 glTexParameterivNULL(GLenum target, GLenum pname, const GLint *params) glTexParameterivNULL() argument
2468 glTexStorage1DNULL(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width) glTexStorage1DNULL() argument
2474 glTexStorage2DNULL(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height) glTexStorage2DNULL() argument
2481 glTexStorage2DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations) glTexStorage2DMultisampleNULL() argument
2489 glTexStorage3DNULL(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth) glTexStorage3DNULL() argument
2497 glTexStorage3DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations) glTexStorage3DMultisampleNULL() argument
2506 glTexStorageMem2DEXTNULL(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset) glTexStorageMem2DEXTNULL() argument
2515 glTexStorageMem2DMultisampleEXTNULL(GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset) glTexStorageMem2DMultisampleEXTNULL() argument
2525 glTexStorageMem3DEXTNULL(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset) glTexStorageMem3DEXTNULL() argument
2535 glTexStorageMem3DMultisampleEXTNULL(GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset) glTexStorageMem3DMultisampleEXTNULL() argument
2546 glTexSubImage1DNULL(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels) glTexSubImage1DNULL() argument
2555 glTexSubImage2DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels) glTexSubImage2DNULL() argument
2566 glTexSubImage3DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels) glTexSubImage3DNULL() argument
2724 glTextureViewNULL(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers) glTextureViewNULL() argument
2938 glUnmapBufferNULL(GLenum target) glUnmapBufferNULL() argument
[all...]
H A Dnull_functions.h22 void INTERNAL_GL_APIENTRY glBeginQueryNULL(GLenum target, GLuint id);
23 void INTERNAL_GL_APIENTRY glBeginQueryIndexedNULL(GLenum target, GLuint index, GLuint id);
28 void INTERNAL_GL_APIENTRY glBindBufferNULL(GLenum target, GLuint buffer);
29 void INTERNAL_GL_APIENTRY glBindBufferBaseNULL(GLenum target, GLuint index, GLuint buffer);
31 glBindBufferRangeNULL(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
32 void INTERNAL_GL_APIENTRY glBindBuffersBaseNULL(GLenum target,
36 void INTERNAL_GL_APIENTRY glBindBuffersRangeNULL(GLenum target,
49 void INTERNAL_GL_APIENTRY glBindFramebufferNULL(GLenum target, GLuint framebuffer);
61 void INTERNAL_GL_APIENTRY glBindRenderbufferNULL(GLenum target, GLuint renderbuffer);
64 void INTERNAL_GL_APIENTRY glBindTextureNULL(GLenum target, GLuin
[all...]
/third_party/skia/third_party/externals/angle2/src/libGL/
H A Dentry_points_gl_3_autogen.h22 ANGLE_EXPORT void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer);
24 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
28 ANGLE_EXPORT void GL_APIENTRY GL_BindFramebuffer(GLenum target, GLuint framebuffer);
29 ANGLE_EXPORT void GL_APIENTRY GL_BindRenderbuffer(GLenum target, GLuint renderbuffer);
41 ANGLE_EXPORT GLenum GL_APIENTRY GL_CheckFramebufferStatus(GLenum target);
42 ANGLE_EXPORT void GL_APIENTRY GL_ClampColor(GLenum target, GLenum clamp);
59 ANGLE_EXPORT void GL_APIENTRY GL_Disablei(GLenum target, GLuint index);
60 ANGLE_EXPORT void GL_APIENTRY GL_Enablei(GLenum target, GLuint index);
63 ANGLE_EXPORT void GL_APIENTRY GL_FlushMappedBufferRange(GLenum target,
66 ANGLE_EXPORT void GL_APIENTRY GL_FramebufferRenderbuffer(GLenum target,
[all...]
/kernel/linux/linux-5.10/arch/parisc/math-emu/
H A Ddecode_exc.c94 int target, exception_index = 1; in decode_fpu() local
210 target = current_ir & fivebits; in decode_fpu()
223 Sgl_decrement(Fpu_sgl(target)); in decode_fpu()
226 sgl_denormalize(&Fpu_sgl(target),&inexact,Rounding_mode()); in decode_fpu()
235 Dbl_decrement(Fpu_dblp1(target),Fpu_dblp2(target)); in decode_fpu()
238 dbl_denormalize(&Fpu_dblp1(target),&Fpu_dblp2(target), in decode_fpu()
288 target = current_ir & fivebits; in decode_fpu()
291 Sgl_setoverflow(Fpu_sgl(target)); in decode_fpu()
[all...]
/kernel/linux/linux-6.6/arch/parisc/math-emu/
H A Ddecode_exc.c94 int target, exception_index = 1; in decode_fpu() local
210 target = current_ir & fivebits; in decode_fpu()
223 Sgl_decrement(Fpu_sgl(target)); in decode_fpu()
226 sgl_denormalize(&Fpu_sgl(target),&inexact,Rounding_mode()); in decode_fpu()
235 Dbl_decrement(Fpu_dblp1(target),Fpu_dblp2(target)); in decode_fpu()
238 dbl_denormalize(&Fpu_dblp1(target),&Fpu_dblp2(target), in decode_fpu()
288 target = current_ir & fivebits; in decode_fpu()
291 Sgl_setoverflow(Fpu_sgl(target)); in decode_fpu()
[all...]
/third_party/gn/src/gn/
H A Dconfig_values_extractors_unittest.cc9 #include "gn/target.h"
33 // Construct a chain of dependencies: target -> dep1 -> dep2 in TEST()
89 // Set up target, direct and all dependent configs. in TEST()
90 Config target_all(setup.settings(), Label(SourceDir("//target/"), "all")); in TEST()
92 target_all.own_values().cflags().push_back("--target-all"); in TEST()
93 target_all.own_values().include_dirs().push_back(SourceDir("//target/all/")); in TEST()
97 Label(SourceDir("//target/"), "direct")); in TEST()
99 target_direct.own_values().cflags().push_back("--target-direct"); in TEST()
101 SourceDir("//target/direct/")); in TEST()
104 // This config is applied directly to target in TEST()
[all...]
/third_party/node/lib/internal/bootstrap/
H A Dnode.js123 defineProperty(target, key, descriptor) {
125 return ObjectDefineProperty(target, key, descriptor);
128 deleteProperty(target, key) {
130 delete target[key];
133 preventExtensions(target) {
135 return ObjectPreventExtensions(target);
138 set(target, key, value) {
140 return ReflectSet(target, key, value);
143 get(target, key, receiver) {
144 const val = ReflectGet(target, ke
[all...]
/third_party/node/benchmark/napi/function_args/
H A Dbinding.cc126 void Initialize(Local<Object> target, in Initialize() argument
129 NODE_SET_METHOD(target, "callWithString", CallWithString); in Initialize()
130 NODE_SET_METHOD(target, "callWithLongString", CallWithString); in Initialize()
132 NODE_SET_METHOD(target, "callWithArray", CallWithArray); in Initialize()
133 NODE_SET_METHOD(target, "callWithLargeArray", CallWithArray); in Initialize()
134 NODE_SET_METHOD(target, "callWithHugeArray", CallWithArray); in Initialize()
136 NODE_SET_METHOD(target, "callWithNumber", CallWithNumber); in Initialize()
137 NODE_SET_METHOD(target, "callWithObject", CallWithObject); in Initialize()
138 NODE_SET_METHOD(target, "callWithTypedarray", CallWithTypedarray); in Initialize()
140 NODE_SET_METHOD(target, "callWith10Number in Initialize()
[all...]

Completed in 30 milliseconds

1...<<21222324252627282930>>...279