Searched refs:TransformationState (Results 1 – 3 of 3) sorted by relevance
/third_party/typescript/src/compiler/ |
D | transformer.ts | 20 const enum TransformationState { enum 173 let state = TransformationState.Uninitialized; 204 …Debug.assert(state < TransformationState.Initialized, "Cannot modify transformation hooks after in… 210 …Debug.assert(state < TransformationState.Initialized, "Cannot modify transformation hooks after in… 236 state = TransformationState.Initialized; 247 state = TransformationState.Completed; 269 …Debug.assert(state < TransformationState.Completed, "Cannot modify the transformation context afte… 289 …Debug.assert(state < TransformationState.Disposed, "Cannot substitute a node after the result is d… 297 …Debug.assert(state < TransformationState.Completed, "Cannot modify the transformation context afte… 318 …Debug.assert(state < TransformationState.Disposed, "Cannot invoke TransformationResult callbacks a… [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | glslang_wrapper_utils.cpp | 1038 enum class TransformationState enum 1432 TransformationState transformMemberDecorate(const SpirvIDDiscoverer &ids, 1436 TransformationState transformMemberName(const SpirvIDDiscoverer &ids, 1440 TransformationState transformTypeStruct(const SpirvIDDiscoverer &ids, 1446 TransformationState SpirvPerVertexTrimmer::transformMemberDecorate(const SpirvIDDiscoverer &ids, in transformMemberDecorate() 1460 return TransformationState::Unchanged; in transformMemberDecorate() 1464 return member > ids.getPerVertexMaxActiveMember(typeId) ? TransformationState::Transformed in transformMemberDecorate() 1465 : TransformationState::Unchanged; in transformMemberDecorate() 1468 TransformationState SpirvPerVertexTrimmer::transformMemberName(const SpirvIDDiscoverer &ids, in transformMemberName() 1475 ? TransformationState::Transformed in transformMemberName() [all …]
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 114214 var TransformationState; 114215 (function (TransformationState) { argument 114216 TransformationState[TransformationState["Uninitialized"] = 0] = "Uninitialized"; 114217 TransformationState[TransformationState["Initialized"] = 1] = "Initialized"; 114218 TransformationState[TransformationState["Completed"] = 2] = "Completed"; 114219 TransformationState[TransformationState["Disposed"] = 3] = "Disposed"; 114220 })(TransformationState || (TransformationState = {}));
|