Lines Matching refs:kMethodName
95 const char* const kMethodName = "get ArrayBuffer.prototype.byteLength"; in BUILTIN() local
97 CHECK_RECEIVER(JSArrayBuffer, array_buffer, kMethodName); in BUILTIN()
98 CHECK_SHARED(false, array_buffer, kMethodName); in BUILTIN()
106 const char* const kMethodName = "get SharedArrayBuffer.prototype.byteLength"; in BUILTIN() local
110 CHECK_SHARED(true, array_buffer, kMethodName); in BUILTIN()
123 const char* kMethodName, bool is_shared) { in SliceHelper() argument
131 CHECK_RECEIVER(JSArrayBuffer, array_buffer, kMethodName); in SliceHelper()
134 CHECK_SHARED(is_shared, array_buffer, kMethodName); in SliceHelper()
141 kMethodName))); in SliceHelper()
213 isolate->factory()->NewStringFromAsciiChecked(kMethodName), in SliceHelper()
220 CHECK_SHARED(is_shared, new_array_buffer, kMethodName); in SliceHelper()
227 kMethodName))); in SliceHelper()
258 kMethodName))); in SliceHelper()
286 const char* const kMethodName = "SharedArrayBuffer.prototype.slice"; in BUILTIN() local
287 return SliceHelper(args, isolate, kMethodName, true); in BUILTIN()
293 const char* const kMethodName = "ArrayBuffer.prototype.slice"; in BUILTIN() local
294 return SliceHelper(args, isolate, kMethodName, false); in BUILTIN()