| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 } | 329 } |
| 330 static void Load(const v8::FunctionCallbackInfo<v8::Value>& args); | 330 static void Load(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 331 static void ArrayBuffer(const v8::FunctionCallbackInfo<v8::Value>& args); | 331 static void ArrayBuffer(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 332 static void Int8Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 332 static void Int8Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 333 static void Uint8Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 333 static void Uint8Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 334 static void Int16Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 334 static void Int16Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 335 static void Uint16Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 335 static void Uint16Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 336 static void Int32Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 336 static void Int32Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 337 static void Uint32Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 337 static void Uint32Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 338 static void Float32Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 338 static void Float32Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 339 static void Float32x4Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 340 static void Int32x4Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 339 static void Float64Array(const v8::FunctionCallbackInfo<v8::Value>& args); | 341 static void Float64Array(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 340 static void Uint8ClampedArray( | 342 static void Uint8ClampedArray( |
| 341 const v8::FunctionCallbackInfo<v8::Value>& args); | 343 const v8::FunctionCallbackInfo<v8::Value>& args); |
| 342 static void ArrayBufferSlice(const v8::FunctionCallbackInfo<v8::Value>& args); | 344 static void ArrayBufferSlice(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 343 static void ArraySubArray(const v8::FunctionCallbackInfo<v8::Value>& args); | 345 static void ArraySubArray(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 344 static void ArraySet(const v8::FunctionCallbackInfo<v8::Value>& args); | 346 static void ArraySet(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 345 // The OS object on the global object contains methods for performing | 347 // The OS object on the global object contains methods for performing |
| 346 // operating system calls: | 348 // operating system calls: |
| 347 // | 349 // |
| 348 // os.system("program_name", ["arg1", "arg2", ...], timeout1, timeout2) will | 350 // os.system("program_name", ["arg1", "arg2", ...], timeout1, timeout2) will |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 static void ExternalArrayWeakCallback(Isolate* isolate, | 426 static void ExternalArrayWeakCallback(Isolate* isolate, |
| 425 Persistent<Object>* object, | 427 Persistent<Object>* object, |
| 426 uint8_t* data); | 428 uint8_t* data); |
| 427 }; | 429 }; |
| 428 | 430 |
| 429 | 431 |
| 430 } // namespace v8 | 432 } // namespace v8 |
| 431 | 433 |
| 432 | 434 |
| 433 #endif // V8_D8_H_ | 435 #endif // V8_D8_H_ |
| OLD | NEW |