/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | BindGroupLayout.cpp | 60 case wgpu::TextureViewDimension::Undefined: in ValidateStorageTextureViewDimension() 75 if (entry.buffer.type != wgpu::BufferBindingType::Undefined) { in ValidateBindGroupLayoutEntry() 93 if (entry.sampler.type != wgpu::SamplerBindingType::Undefined) { in ValidateBindGroupLayoutEntry() 98 if (entry.texture.sampleType != wgpu::TextureSampleType::Undefined) { in ValidateBindGroupLayoutEntry() 106 if (texture.viewDimension != wgpu::TextureViewDimension::Undefined) { in ValidateBindGroupLayoutEntry() 116 if (entry.storageTexture.access != wgpu::StorageTextureAccess::Undefined) { in ValidateBindGroupLayoutEntry() 124 if (storageTexture.viewDimension != wgpu::TextureViewDimension::Undefined) { in ValidateBindGroupLayoutEntry() 213 return binding.buffer.type != wgpu::BufferBindingType::Undefined; in IsBufferBinding() 217 if (binding.buffer.type != wgpu::BufferBindingType::Undefined) { in BindingHasDynamicOffset() 228 if (binding.buffer.type != wgpu::BufferBindingType::Undefined) { in CreateBindGroupLayoutInfo() [all...] |
H A D | BindingInfo.cpp | 52 if (entry.buffer.type != wgpu::BufferBindingType::Undefined) { in IncrementBindingCounts() 77 case wgpu::BufferBindingType::Undefined: in IncrementBindingCounts() 82 } else if (entry.sampler.type != wgpu::SamplerBindingType::Undefined) { in IncrementBindingCounts() 84 } else if (entry.texture.sampleType != wgpu::TextureSampleType::Undefined) { in IncrementBindingCounts() 86 } else if (entry.storageTexture.access != wgpu::StorageTextureAccess::Undefined) { in IncrementBindingCounts()
|
H A D | PipelineLayout.cpp | 115 (modifiedEntry->texture.sampleType != wgpu::TextureSampleType::Undefined) == in CreateDefault() 116 (mergedEntry.texture.sampleType != wgpu::TextureSampleType::Undefined) && in CreateDefault() 120 if (modifiedEntry->buffer.type != wgpu::BufferBindingType::Undefined) { in CreateDefault() 125 if (modifiedEntry->texture.sampleType != wgpu::TextureSampleType::Undefined) { in CreateDefault() 142 if (modifiedEntry->storageTexture.access != wgpu::StorageTextureAccess::Undefined) { in CreateDefault()
|
H A D | RenderBundleEncoder.cpp | 70 descriptor->depthStencilFormat == wgpu::TextureFormat::Undefined, in ValidateRenderBundleEncoderDescriptor() 78 if (descriptor->depthStencilFormat != wgpu::TextureFormat::Undefined) { in ValidateRenderBundleEncoderDescriptor()
|
H A D | VertexFormat.cpp | 25 {wgpu::VertexFormat::Undefined, 0, 0, 0, VertexFormatBaseType::Float}, 63 ASSERT(format != wgpu::VertexFormat::Undefined); in GetVertexFormatInfo()
|
/third_party/jinja2/ |
H A D | exceptions.py | 4 from .runtime import Undefined namespace 22 If the given name is :class:`Undefined` and no message was 32 name: t.Optional[t.Union[str, "Undefined"]], 38 from .runtime import Undefined namespace 40 if isinstance(name, Undefined): 59 If a name in the list of names is :class:`Undefined`, a message 67 names: t.Sequence[t.Union[str, "Undefined"]] = (), 71 from .runtime import Undefined namespace 76 if isinstance(name, Undefined): 154 """Raised if a template tries to operate on :class:`Undefined` [all...] |
H A D | runtime.py | 58 "Undefined", 160 :class:`Undefined` object for missing variables. 186 ) -> t.Union["BlockReference", "Undefined"]: 210 def resolve(self, key: str) -> t.Union[t.Any, "Undefined"]: 211 """Look up a variable by name, or return an :class:`Undefined` 263 ) -> t.Union[t.Any, "Undefined"]: 355 def super(self) -> t.Union["BlockReference", "Undefined"]: 404 undefined: t.Type["Undefined"], 410 :param undefined: :class:`Undefined` class to use for next and 503 def previtem(self) -> t.Union[t.Any, "Undefined"] 789 class Undefined: global() class [all...] |
H A D | environment.py | 47 from .runtime import Undefined namespace 127 environment.undefined, Undefined 128 ), "'undefined' must be a subclass of 'jinja2.Undefined'." 212 :class:`Undefined` or a subclass of it that is used to represent 308 undefined: t.Type[Undefined] = Undefined, 343 self.undefined: t.Type[Undefined] = undefined 400 undefined: t.Type[Undefined] = missing, 463 ) -> t.Union[t.Any, Undefined]: 495 name: t.Union[str, Undefined], [all...] |
H A D | __init__.py | 29 from .runtime import Undefined as Undefined namespace
|
H A D | tests.py | 7 from .runtime import Undefined namespace 43 return not isinstance(value, Undefined) 48 return isinstance(value, Undefined)
|
H A D | sandbox.py | 18 from .runtime import Undefined namespace 300 ) -> t.Union[t.Any, Undefined]: 321 def getattr(self, obj: t.Any, attribute: str) -> t.Union[t.Any, Undefined]: 338 def unsafe_undefined(self, obj: t.Any, attribute: str) -> Undefined:
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | exceptions.py | 46 If the given name is :class:`Undefined` and no message was 58 from .runtime import Undefined namespace 60 if isinstance(name, Undefined): 79 If a name in the list of names is :class:`Undefined`, a message 87 from .runtime import Undefined namespace 92 if isinstance(name, Undefined): 165 """Raised if a template tries to operate on :class:`Undefined`."""
|
H A D | tests.py | 11 from .runtime import Undefined namespace 47 return not isinstance(value, Undefined) 52 return isinstance(value, Undefined)
|
H A D | runtime.py | 47 "Undefined", 175 :class:`Undefined` object for missing variables. 224 :class:`Undefined` object with the name of the name looked up. 240 if isinstance(rv, Undefined): 396 :param undefined: :class:`Undefined` class to use for next and 490 """The item in the previous iteration. Undefined during the 500 """The item in the next iteration. Undefined during the last 692 class Undefined(object): class 696 >>> foo = Undefined(name='foo') 826 return "Undefined" [all...] |
H A D | environment.py | 52 from .runtime import Undefined namespace 115 if isinstance(name, Undefined): 126 environment.undefined, Undefined 211 :class:`Undefined` or a subclass of it that is used to represent 304 undefined=Undefined, 664 Undefined 892 If names is :class:`Undefined`, an :exc:`UndefinedError` is 894 contains :class:`Undefined`, the message is more helpful. 902 if isinstance(names, Undefined): 929 if isinstance(template_name_or_list, (string_types, Undefined)) [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | exceptions.py | 46 If the given name is :class:`Undefined` and no message was 58 from .runtime import Undefined namespace 60 if isinstance(name, Undefined): 79 If a name in the list of names is :class:`Undefined`, a message 87 from .runtime import Undefined namespace 92 if isinstance(name, Undefined): 165 """Raised if a template tries to operate on :class:`Undefined`."""
|
H A D | tests.py | 11 from .runtime import Undefined namespace 47 return not isinstance(value, Undefined) 52 return isinstance(value, Undefined)
|
H A D | runtime.py | 47 "Undefined", 175 :class:`Undefined` object for missing variables. 224 :class:`Undefined` object with the name of the name looked up. 240 if isinstance(rv, Undefined): 396 :param undefined: :class:`Undefined` class to use for next and 490 """The item in the previous iteration. Undefined during the 500 """The item in the next iteration. Undefined during the last 692 class Undefined(object): class 696 >>> foo = Undefined(name='foo') 826 return "Undefined" [all...] |
H A D | environment.py | 52 from .runtime import Undefined namespace 115 if isinstance(name, Undefined): 126 environment.undefined, Undefined 211 :class:`Undefined` or a subclass of it that is used to represent 304 undefined=Undefined, 664 Undefined 892 If names is :class:`Undefined`, an :exc:`UndefinedError` is 894 contains :class:`Undefined`, the message is more helpful. 902 if isinstance(names, Undefined): 929 if isinstance(template_name_or_list, (string_types, Undefined)) [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | tests.py | 14 from jinja2.runtime import Undefined namespace 54 return not isinstance(value, Undefined) 59 return isinstance(value, Undefined)
|
H A D | runtime.py | 150 :class:`Undefined` object for missing variables. 198 :class:`Undefined` object with the name of the name looked up. 214 if isinstance(rv, Undefined): 592 class Undefined(object): class 596 >>> foo = Undefined(name='foo') 674 return 'Undefined' 687 base=Undefined 695 defaults to :class:`Undefined`. 702 base = Undefined 759 class DebugUndefined(Undefined) [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/ |
H A D | Symbol.h | 38 /// Undefined 39 Undefined = 1U << 3, member in llvm::MachO::SymbolFlags 84 return (Flags & SymbolFlags::Undefined) == SymbolFlags::Undefined; in isUndefined()
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/ |
H A D | Module.cpp | 27 return env.Undefined(); in CreateGPU() 38 return env.Undefined(); in CreateGPU()
|
/third_party/node/src/crypto/ |
H A D | crypto_common.cc | 38 using v8::Undefined; 253 return Undefined(env->isolate()); in GetValidationErrorReason() 260 return Undefined(env->isolate()); in GetValidationErrorCode() 268 return Undefined(env->isolate()); in GetCert() 298 // Undefined is ignored, but still considered successful in Set() 308 return Undefined(env->isolate()); in GetCipherValue() 423 MaybeLocal<Value>(Undefined(env->isolate())); in GetCurveName() 432 return Undefined(env->isolate()); in GetECPubKey() 447 return Undefined(env->isolate()); in GetECGroup() 451 return Undefined(en in GetECGroup() [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | SamplerD3D12.cpp | 73 descriptor->compare == wgpu::CompareFunction::Undefined in Sampler() 92 if (descriptor->compare != wgpu::CompareFunction::Undefined) { in Sampler()
|