| /third_party/typescript/tests/baselines/reference/ |
| D | tsxSpreadChildren.types | 16 todo: string; 17 >todo : string 23 function Todo(prop: { key: number, todo: string }) { 24 >Todo : (prop: { key: number; todo: string;}) => JSX.Element 25 >prop : { key: number; todo: string; } 27 >todo : string 29 return <div>{prop.key.toString() + prop.todo}</div>; 30 ><div>{prop.key.toString() + prop.todo}</div> : JSX.Element 32 >prop.key.toString() + prop.todo : string 36 >prop : { key: number; todo: string; } [all …]
|
| D | tsxSpreadChildrenInvalidType.types | 16 todo: string; 17 >todo : string 23 function Todo(prop: { key: number, todo: string }) { 24 >Todo : (prop: { key: number; todo: string;}) => JSX.Element 25 >prop : { key: number; todo: string; } 27 >todo : string 29 return <div>{prop.key.toString() + prop.todo}</div>; 30 ><div>{prop.key.toString() + prop.todo}</div> : JSX.Element 32 >prop.key.toString() + prop.todo : string 36 >prop : { key: number; todo: string; } [all …]
|
| D | tsxReactEmitNesting.types | 14 …todo" autofocus autocomplete="off" placeholder="What needs to be done?" value={model.newTodo} onKe… 19 …todo" autofocus autocomplete="off" placeholder="What needs to be done?" value={model.newTodo} onKe… 24 ><header class="header"> <h1>todos <x></h1> <input class="new-todo" aut… 33 …<input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" value={m… 34 ><input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" value={m… 58 …todo-list"> {model.filteredTodos.map((todo) => <li class={{todo:… 92 <ul class="todo-list"> 93 …todo-list"> {model.filteredTodos.map((todo) => <li class={{todo:… 97 {model.filteredTodos.map((todo) => 98 …todo) => <li class={{todo: true, completed: todo.completed, editing: todo == mo… [all …]
|
| D | tsxSpreadChildren.symbols | 24 todo: string; 25 >todo : Symbol(TodoProp.todo, Decl(tsxSpreadChildren.tsx, 9, 15)) 34 function Todo(prop: { key: number, todo: string }) { 35 >Todo : Symbol(Todo, Decl(tsxSpreadChildren.tsx, 14, 1)) 38 >todo : Symbol(todo, Decl(tsxSpreadChildren.tsx, 15, 34)) 40 return <div>{prop.key.toString() + prop.todo}</div>; 47 >prop.todo : Symbol(todo, Decl(tsxSpreadChildren.tsx, 15, 34)) 49 >todo : Symbol(todo, Decl(tsxSpreadChildren.tsx, 15, 34)) 60 {...todos.map(todo => <Todo key={todo.id} todo={todo.todo}/>)} 64 >todo : Symbol(todo, Decl(tsxSpreadChildren.tsx, 20, 22)) [all …]
|
| D | tsxSpreadChildrenInvalidType.symbols | 24 todo: string; 25 >todo : Symbol(TodoProp.todo, Decl(tsxSpreadChildrenInvalidType.tsx, 9, 15)) 34 function Todo(prop: { key: number, todo: string }) { 35 >Todo : Symbol(Todo, Decl(tsxSpreadChildrenInvalidType.tsx, 14, 1)) 38 >todo : Symbol(todo, Decl(tsxSpreadChildrenInvalidType.tsx, 15, 34)) 40 return <div>{prop.key.toString() + prop.todo}</div>; 47 >prop.todo : Symbol(todo, Decl(tsxSpreadChildrenInvalidType.tsx, 15, 34)) 49 >todo : Symbol(todo, Decl(tsxSpreadChildrenInvalidType.tsx, 15, 34)) 60 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 61 >Todo : Symbol(Todo, Decl(tsxSpreadChildrenInvalidType.tsx, 14, 1)) [all …]
|
| D | tsxSpreadChildren.js | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { property 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...todos.map(todo => <Todo key={todo.id} todo={todo.todo}/>)} field 30 function Todo(prop) { 31 return <div>{prop.key.toString() + prop.todo}</div>; 36 {...todos.map(function (todo) { return <Todo key={todo.id} todo={todo.todo}/>; })} argument
|
| D | tsxSpreadChildrenInvalidType.js | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { property 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 28 {...(<Todo key={todos[0].id} todo={todos[0].todo} /> as any)} 47 function Todo(prop) { 48 return React.createElement("div", null, prop.key.toString() + prop.todo); 52 … React.createElement("div", null, React.createElement(Todo, { key: todos[0].id, todo: todos[0].tod… property 57 … React.createElement("div", null, React.createElement(Todo, { key: todos[0].id, todo: todos[0].tod… property
|
| D | tsxReactEmitNesting.js | 11 …<input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" value={m… 15 <ul class="todo-list"> 16 {model.filteredTodos.map((todo) => 17 … <li class={{todo: true, completed: todo.completed, editing: todo == model.editedTodo}}> 19 {(!todo.editable) ? 23 <label onDoubleClick={()=>{ctrl.editTodo(todo)}}>{todo.title}</label> field 24 … <button class="destroy" onClick={ctrl.removeTodo.bind(ctrl,todo)}></button> 43 …vdom.createElement("input", { "class": "new-todo", autofocus: true, autocomplete: "off", placehold… 46 … vdom.createElement("ul", { "class": "todo-list" }, model.filteredTodos.map(function (todo) { argument 47 …return vdom.createElement("li", { "class": { todo: true, completed: todo.completed, editing: todo … property [all …]
|
| D | tsxReactEmitNesting.symbols | 24 …<input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" value={m… 51 <ul class="todo-list"> 54 {model.filteredTodos.map((todo) => 56 >todo : Symbol(todo, Decl(file.tsx, 14, 42)) 58 … <li class={{todo: true, completed: todo.completed, editing: todo == model.editedTodo}}> 60 >todo : Symbol(todo, Decl(file.tsx, 15, 32)) 62 >todo : Symbol(todo, Decl(file.tsx, 14, 42)) 64 >todo : Symbol(todo, Decl(file.tsx, 14, 42)) 70 {(!todo.editable) ? 71 >todo : Symbol(todo, Decl(file.tsx, 14, 42)) [all …]
|
| D | tsxSpreadChildrenInvalidType.errors.txt | 15 todo: string; 20 function Todo(prop: { key: number, todo: string }) { 21 return <div>{prop.key.toString() + prop.todo}</div>; 25 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 33 {...(<Todo key={todos[0].id} todo={todos[0].todo} /> as any)}
|
| /third_party/spirv-tools/test/ |
| D | text_to_binary.image_test.cpp | 56 // TODO(dneto): Rev32 adds many more values, and rearranges their 75 // TODO(dneto): Rev32 adds many more values, and rearranges their 243 // TODO(dneto): OpSampledImage 244 // TODO(dneto): OpImageSampleImplicitLod 245 // TODO(dneto): OpImageSampleExplicitLod 246 // TODO(dneto): OpImageSampleDrefImplicitLod 247 // TODO(dneto): OpImageSampleDrefExplicitLod 248 // TODO(dneto): OpImageSampleProjImplicitLod 249 // TODO(dneto): OpImageSampleProjExplicitLod 250 // TODO(dneto): OpImageSampleProjDrefImplicitLod [all …]
|
| D | text_to_binary.group_test.cpp | 61 // TODO(dneto): OpGroupAsyncCopy 62 // TODO(dneto): OpGroupWaitEvents 63 // TODO(dneto): OpGroupAll 64 // TODO(dneto): OpGroupAny 65 // TODO(dneto): OpGroupBroadcast 66 // TODO(dneto): OpGroupIAdd 67 // TODO(dneto): OpGroupFAdd 68 // TODO(dneto): OpGroupFMin 69 // TODO(dneto): OpGroupUMin 70 // TODO(dneto): OpGroupSMin [all …]
|
| /third_party/mindspore/mindspore/core/ir/ |
| D | graph_utils.cc | 39 static size_t DumpSortingCircleList(const std::deque<AnfNodePtr> &todo, const AnfNodePtr &next, siz… in DumpSortingCircleList() argument 41 auto circle_node_it = std::find(todo.begin(), todo.end(), next); in DumpSortingCircleList() 42 for (; circle_node_it != todo.end(); circle_node_it++) { in DumpSortingCircleList() 58 std::deque<AnfNodePtr> todo; in TopoSort() local 59 todo.push_back(root); in TopoSort() 61 while (!todo.empty()) { in TopoSort() 62 AnfNodePtr node = todo.back(); in TopoSort() 64 todo.pop_back(); in TopoSort() 69 todo.pop_back(); in TopoSort() 79 …(void)std::copy_if(succs.begin(), succs.end(), std::back_inserter(todo), [seen, &todo](const AnfNo… in TopoSort() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
| D | text_to_binary.image_test.cpp | 56 // TODO(dneto): Rev32 adds many more values, and rearranges their 75 // TODO(dneto): Rev32 adds many more values, and rearranges their 243 // TODO(dneto): OpSampledImage 244 // TODO(dneto): OpImageSampleImplicitLod 245 // TODO(dneto): OpImageSampleExplicitLod 246 // TODO(dneto): OpImageSampleDrefImplicitLod 247 // TODO(dneto): OpImageSampleDrefExplicitLod 248 // TODO(dneto): OpImageSampleProjImplicitLod 249 // TODO(dneto): OpImageSampleProjExplicitLod 250 // TODO(dneto): OpImageSampleProjDrefImplicitLod [all …]
|
| D | text_to_binary.group_test.cpp | 61 // TODO(dneto): OpGroupAsyncCopy 62 // TODO(dneto): OpGroupWaitEvents 63 // TODO(dneto): OpGroupAll 64 // TODO(dneto): OpGroupAny 65 // TODO(dneto): OpGroupBroadcast 66 // TODO(dneto): OpGroupIAdd 67 // TODO(dneto): OpGroupFAdd 68 // TODO(dneto): OpGroupFMin 69 // TODO(dneto): OpGroupUMin 70 // TODO(dneto): OpGroupSMin [all …]
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/test/ |
| D | text_to_binary.image_test.cpp | 53 // TODO(dneto): Rev32 adds many more values, and rearranges their 72 // TODO(dneto): Rev32 adds many more values, and rearranges their 241 // TODO(dneto): OpSampledImage 242 // TODO(dneto): OpImageSampleImplicitLod 243 // TODO(dneto): OpImageSampleExplicitLod 244 // TODO(dneto): OpImageSampleDrefImplicitLod 245 // TODO(dneto): OpImageSampleDrefExplicitLod 246 // TODO(dneto): OpImageSampleProjImplicitLod 247 // TODO(dneto): OpImageSampleProjExplicitLod 248 // TODO(dneto): OpImageSampleProjDrefImplicitLod [all …]
|
| D | text_to_binary.group_test.cpp | 58 // TODO(dneto): OpGroupAsyncCopy 59 // TODO(dneto): OpGroupWaitEvents 60 // TODO(dneto): OpGroupAll 61 // TODO(dneto): OpGroupAny 62 // TODO(dneto): OpGroupBroadcast 63 // TODO(dneto): OpGroupIAdd 64 // TODO(dneto): OpGroupFAdd 65 // TODO(dneto): OpGroupFMin 66 // TODO(dneto): OpGroupUMin 67 // TODO(dneto): OpGroupSMin [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/test/ |
| D | text_to_binary.image_test.cpp | 56 // TODO(dneto): Rev32 adds many more values, and rearranges their 75 // TODO(dneto): Rev32 adds many more values, and rearranges their 243 // TODO(dneto): OpSampledImage 244 // TODO(dneto): OpImageSampleImplicitLod 245 // TODO(dneto): OpImageSampleExplicitLod 246 // TODO(dneto): OpImageSampleDrefImplicitLod 247 // TODO(dneto): OpImageSampleDrefExplicitLod 248 // TODO(dneto): OpImageSampleProjImplicitLod 249 // TODO(dneto): OpImageSampleProjExplicitLod 250 // TODO(dneto): OpImageSampleProjDrefImplicitLod [all …]
|
| D | text_to_binary.group_test.cpp | 61 // TODO(dneto): OpGroupAsyncCopy 62 // TODO(dneto): OpGroupWaitEvents 63 // TODO(dneto): OpGroupAll 64 // TODO(dneto): OpGroupAny 65 // TODO(dneto): OpGroupBroadcast 66 // TODO(dneto): OpGroupIAdd 67 // TODO(dneto): OpGroupFAdd 68 // TODO(dneto): OpGroupFMin 69 // TODO(dneto): OpGroupUMin 70 // TODO(dneto): OpGroupSMin [all …]
|
| /third_party/typescript/tests/cases/conformance/jsx/ |
| D | tsxSpreadChildren.tsx | 13 todo: string; 18 function Todo(prop: { key: number, todo: string }) { 19 return <div>{prop.key.toString() + prop.todo}</div>; 23 {...todos.map(todo => <Todo key={todo.id} todo={todo.todo}/>)}
|
| D | tsxSpreadChildrenInvalidType.tsx | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 28 {...(<Todo key={todos[0].id} todo={todos[0].todo} /> as any)}
|
| D | tsxReactEmitNesting.tsx | 14 …<input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" value={m… 18 <ul class="todo-list"> 19 {model.filteredTodos.map((todo) => 20 … <li class={{todo: true, completed: todo.completed, editing: todo == model.editedTodo}}> 22 {(!todo.editable) ? 26 <label onDoubleClick={()=>{ctrl.editTodo(todo)}}>{todo.title}</label> 27 … <button class="destroy" onClick={ctrl.removeTodo.bind(ctrl,todo)}></button>
|
| /third_party/node/benchmark/http/ |
| D | _chunky_http_client.js | 15 let todo = []; 23 todo = []; 24 todo.push('GET / HTTP/1.1'); 25 todo.push('Host: localhost'); 26 todo.push('Connection: keep-alive'); 27 todo.push('Accept: text/html,application/xhtml+xml,' + 29 todo.push('User-Agent: Mozilla/5.0 (X11; Linux x86_64) ' + 32 todo.push('Accept-Encoding: gzip, deflate, sdch'); 33 todo.push('Accept-Language: en-US,en;q=0.8'); 37 todo.push(`X-Header-${i}: ${headers[i % 3]}`); [all …]
|
| /third_party/glslang/Test/ |
| D | hlsl.intrinsics.negative.frag | 3 // AllMemoryBarrier(); // TODO: expected error: invalid in fragment stage 4 // AllMemoryBarrierWithGroupSync(); // TODO: expected error: invalid in fragment stage 11 // DeviceMemoryBarrierWithGroupSync(); // TODO: expected error: only valid in compute stage 15 // fma(inF0, inF1, inF2); // TODO: this might auto-promote: need to check against FXC 16 …// InterlockedAdd(inI0, inI0, 3); // expected error: last parameter is out TODO: accept… 17 … is out TODO: accepted even though marked as out i // InterlockedMax(inI0, inI0, 3); … 18 …// InterlockedMin(inI0, inI0, 3); // expected error: last parameter is out TODO: accept… 19 …// InterlockedOor(inI0, inI0, 3); // expected error: last parameter is out TODO: accept… 20 …// InterlockedXor(inI0, inI0, 3); // expected error: last parameter is out TODO: accept… 21 // GroupMemoryBarrier(); // TODO: expected error: invalid in fragment stage [all …]
|
| D | hlsl.intrinsics.vert | 11 // asdouble(inU0, inU1); // TODO: enable when HLSL parser used for intrinsics 22 // TODO: EvaluateAttributeSnapped(inF0, int2(1,2)); 28 // TODO: fma(inD0, inD1, inD2); 40 // TODO: mul(inF0, inF1); 56 // TODO: sampler intrinsics, when we can declare the types. 64 // TODO: ... add when float1 prototypes are generated 78 // asdouble(inU0, inU1); // TODO: enable when HLSL parser used for intrinsics 91 // TODO: EvaluateAttributeSnapped(inF0, int2(1,2)); 98 // TODO: fma(inD0, inD1, inD2); 111 // TODO: mul(inF0, inF1); [all …]
|