| /third_party/pcre2/pcre2/testdata/ |
| D | testinput26 | 3 # Unicode Script Extension tests. 9 /^\p{Script=Latn}/utf 12 # Script extension check 19 # Script extension only character 34 /^\p{Script=Grek}/utf 37 # Script extension check 44 # Script extension only character 59 /^\p{Script=Cyrl}/utf 62 # Script extension check 69 # Script extension only character [all …]
|
| D | testoutput26 | 3 # Unicode Script Extension tests. 10 /^\p{Script=Latn}/utf 14 # Script extension check 23 # Script extension only character 42 /^\p{Script=Grek}/utf 46 # Script extension check 55 # Script extension only character 74 /^\p{Script=Cyrl}/utf 78 # Script extension check 87 # Script extension only character [all …]
|
| /third_party/vk-gl-cts/external/amber/src/src/vkscript/ |
| D | command_parser_test.cc | 35 Script script; in TEST_F() 73 Script script; in TEST_F() 95 Script script; in TEST_F() 117 Script script; in TEST_F() 139 Script script; in TEST_F() 161 Script script; in TEST_F() 172 Script script; in TEST_F() 183 Script script; in TEST_F() 204 Script script; in TEST_F() 225 Script script; in TEST_F() [all …]
|
| /third_party/vk-gl-cts/external/amber/src/src/ |
| D | script_test.cc | 28 Script s; in TEST_F() 73 Script s; in TEST_F() 82 Script s; in TEST_F() 91 Script s; in TEST_F() 109 Script s; in TEST_F() 117 Script s; in TEST_F() 122 Script s; in TEST_F() 133 Script s; in TEST_F() 155 Script s; in TEST_F() 164 Script s; in TEST_F() [all …]
|
| D | script.cc | 22 Script::Script() : virtual_files_(MakeUnique<VirtualFileStore>()) {} in Script() function in amber::Script 24 Script::~Script() = default; 26 std::vector<ShaderInfo> Script::GetShaderInfo() const { in GetShaderInfo() 58 void Script::AddRequiredExtension(const std::string& ext) { in AddRequiredExtension() 66 bool Script::IsKnownFeature(const std::string& name) const { in IsKnownFeature() 134 type::Type* Script::ParseType(const std::string& str) { in ParseType()
|
| D | debug.cc | 29 class ScriptImpl : public Script { 125 Script::~Script() = default; 131 std::unique_ptr<Script> Script::Create() { in Create()
|
| D | amber.cc | 117 Script** script_ptr) { in CreateEngineAndCheckRequirements() 121 Script* script = static_cast<Script*>(recipe->GetImpl()); in CreateEngineAndCheckRequirements() 151 Script* script = nullptr; in AreAllRequirementsSupported() 166 Script* script = nullptr; in ExecuteWithShaderData()
|
| D | debug.h | 141 class Script : public Events { 143 ~Script() override; 150 static std::unique_ptr<Script> Create();
|
| /third_party/node/test/parallel/ |
| D | test-vm-options-validation.js | 18 new vm.Script('void 0', 42); 23 new vm.Script('void 0', { lineOffset: value }); 27 new vm.Script('void 0', { columnOffset: value }); 33 new vm.Script('void 0', { lineOffset: value }); 37 new vm.Script('void 0', { columnOffset: value }); 42 new vm.Script('void 0', { lineOffset: Number.MAX_SAFE_INTEGER }); 46 new vm.Script('void 0', { columnOffset: Number.MAX_SAFE_INTEGER }); 50 new vm.Script('void 0', { filename: 123 }); 54 new vm.Script('void 0', { produceCachedData: 1 }); 59 new vm.Script('void 0', { cachedData: value }); [all …]
|
| D | test-vm-new-script-new-context.js | 27 const Script = require('vm').Script; constant 30 const script = new Script('\'passed\';'); 38 const script = new Script('throw new Error(\'test\');'); 45 const script = new Script('foo.bar = 5;'); 53 const script = new Script('hello = 2'); 67 const script = new Script(global.code); 82 const script = new Script('f()'); 92 const script = new Script('f.a = 2'); 103 const script = new Script('');
|
| D | test-vm-new-script-this-context.js | 25 const Script = require('vm').Script; constant 28 let script = new Script('\'passed\';'); 33 script = new Script('throw new Error(\'test\');'); 39 script = new Script('hello = 2'); 50 script = new Script(global.code); 58 script = new Script('f()');
|
| D | test-vm-createcacheddata.js | 5 const { Script } = require('vm'); 10 const script = new Script(source); 14 assert(!new Script(source, { cachedData }).cachedDataRejected); 21 assert(!new Script(source, { cachedData }).cachedDataRejected);
|
| D | test-vm-cached-data.js | 46 const script = new vm.Script(source, { 68 const script = new vm.Script(getSource('invalid_1'), { 81 const script = new vm.Script(source, { 90 new vm.Script('function abc() {}', {
|
| D | test-vm-context.js | 27 const Script = vm.Script; constant 28 let script = new Script('"passed";'); 41 script = new Script('foo = 3;');
|
| D | test-vm-module-dynamic-import.js | 8 const { Script, SourceTextModule } = require('vm'); 34 const s = new Script('import("foo")', { 74 const s = new Script('import("bar")', { 91 () => new Script(
|
| /third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
| D | parserRealSource6.ts | 8 public script: Script = null; 35 private scriptFragment: Script; 38 public script: Script, 68 public getScriptFragment(): Script { 73 … TypeScript.quickParse(this.logger, ast, this.text, minChar, limChar, null/*errorCapture*/).Script; 120 if (ast.nodeType == NodeType.Script && context.pos > limChar) 126 case NodeType.Script: 127 var script = <Script>ast; 212 …export function findEnclosingScopeAt(logger: ILogger, script: Script, text: ISourceText, pos: numb…
|
| /third_party/node/test/cctest/ |
| D | test_linked_binding.cc | 33 v8::Local<v8::Script> script = v8::Script::Compile( in TEST_F() 74 v8::Local<v8::Script> script = v8::Script::Compile( in TEST_F() 118 v8::Local<v8::Script> script = v8::Script::Compile( in TEST_F() 175 v8::Local<v8::Script> script = v8::Script::Compile( in TEST_F() 212 v8::Local<v8::Script> script = v8::Script::Compile( in TEST_F()
|
| /third_party/typescript/tests/baselines/reference/ |
| D | parserRealSource6.js | 9 public script: Script = null; 36 private scriptFragment: Script; 39 public script: Script, 69 public getScriptFragment(): Script { 74 … TypeScript.quickParse(this.logger, ast, this.text, minChar, limChar, null/*errorCapture*/).Script; 121 if (ast.nodeType == NodeType.Script && context.pos > limChar) 127 case NodeType.Script: 128 var script = <Script>ast; 213 …export function findEnclosingScopeAt(logger: ILogger, script: Script, text: ISourceText, pos: numb… 291 …TypeScript.quickParse(this.logger, ast, this.text, minChar, limChar, null /*errorCapture*/).Script; [all …]
|
| D | parserRealSource6.errors.txt | 2 …conformance/parser/ecmascript5/parserRealSource6.ts(8,24): error TS2304: Cannot find name 'Script'. 17 …onformance/parser/ecmascript5/parserRealSource6.ts(35,33): error TS2304: Cannot find name 'Script'. 19 …onformance/parser/ecmascript5/parserRealSource6.ts(38,36): error TS2304: Cannot find name 'Script'. 24 …onformance/parser/ecmascript5/parserRealSource6.ts(68,37): error TS2304: Cannot find name 'Script'. 45 …nformance/parser/ecmascript5/parserRealSource6.ts(127,35): error TS2304: Cannot find name 'Script'. 58 …nformance/parser/ecmascript5/parserRealSource6.ts(212,67): error TS2304: Cannot find name 'Script'. 73 public script: Script = null; 75 !!! error TS2304: Cannot find name 'Script'. 130 private scriptFragment: Script; 132 !!! error TS2304: Cannot find name 'Script'. [all …]
|
| D | parserRealSource6.types | 13 public script: Script = null; 88 private scriptFragment: Script; 94 public script: Script, 168 public getScriptFragment(): Script { 207 … TypeScript.quickParse(this.logger, ast, this.text, minChar, limChar, null/*errorCapture*/).Script; 208 …Script.quickParse(this.logger, ast, this.text, minChar, limChar, null/*errorCapture*/).Script : any 212 >TypeScript.quickParse(this.logger, ast, this.text, minChar, limChar, null/*errorCapture*/).Script … 227 >Script : any 450 if (ast.nodeType == NodeType.Script && context.pos > limChar) 451 >ast.nodeType == NodeType.Script && context.pos > limChar : boolean [all …]
|
| /third_party/node/test/message/ |
| D | eval_messages.out | 6 at new Script (vm.js:*:*) 21 at Script.runInThisContext (vm.js:*:*) 34 at Script.runInThisContext (vm.js:*:*) 47 at Script.runInThisContext (vm.js:*:*)
|
| D | stdin_messages.out | 7 at new Script (vm.js:*) 25 at Script.runInThisContext (vm.js:*) 40 at Script.runInThisContext (vm.js:*) 56 at Script.runInThisContext (vm.js:*)
|
| /third_party/vk-gl-cts/external/amber/src/docs/ |
| D | debugger.md | 151 …)` then constructs a new `amber::debug::Script`, and parses the debugger command block. The `amber… 153 ### `amber::debug::Script` 155 `amber::debug::Script` implements the `amber::debug::Events` interface, and records the calls made … 156 These calls can be replayed to another `amber::debug::Events`, using the `amber::debug::Script::Run… 162 `amber::debug::Events` is the interface implemented by `amber::debug::Script` for recording the par… 172 … the `amber::debug::Thread` interface are returned by the `amber::debug::Script::BreakOn`XXX`()` m… 173 …ug::Script` implements this interface to record the `THREAD` commands in the Amber script, which w… 186 * The before executing the first `amber::Command` that holds a `amber::debug::Script`, a `amber::En… 187 …` holds a `amber::debug::Script`, then this script is executed on the `amber::Engine::Debugger` us…
|
| /third_party/node/test/addons/non-node-context/ |
| D | binding.cc | 12 using v8::Script; 39 Local<Script> script; in RunInNewContext() 41 if (!Script::Compile(context, args[0].As<String>()).ToLocal(&script) || in RunInNewContext()
|
| /third_party/musl/ndk-test/ |
| D | README.en.md | 27 │ ├── build.py # Script to compile ndk-test 32 │ ├── build.py # Script to compile sanitize 37 ├── script # Script Directory 39 │ ├── build.py # Total Compile Script
|