/external/clang/test/Index/ |
comment-cplus11-specific.cpp | 9 struct Opaque; 15 typedef inner::Opaque Typedef; 19 using Alias = inner::Opaque; 22 typedef inner::Opaque NoDocTypedef; 25 using NoDocAlias = inner::Opaque;
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p12.cpp | 11 template <unsigned n> struct Opaque {}; 12 template <unsigned n> void expect(Opaque<n> _) {} 30 Opaque<0> foo(Opaque<0>); 31 Opaque<0> foo(Opaque<1>); 32 Opaque<0> foo(Opaque<2>); 38 Opaque<1> foo(Opaque<1>) [all...] |
/external/skia/src/gpu/ |
GrPipelineAnalysis.h | 19 enum class Opaque { 24 GrPipelineAnalysisColor(Opaque opaque = Opaque::kNo) 25 : fFlags(opaque == Opaque::kYes ? kIsOpaque_Flag : 0) {} 133 return GrPipelineAnalysisColor(fIsOpaque ? GrPipelineAnalysisColor::Opaque::kYes 134 : GrPipelineAnalysisColor::Opaque::kNo);
|
/prebuilts/go/darwin-x86/src/image/ |
names.go | 12 // Black is an opaque black uniform image. 14 // White is an opaque white uniform image. 18 // Opaque is a fully opaque uniform image. 19 Opaque = NewUniform(color.Opaque) 44 // Opaque scans the entire image and reports whether it is fully opaque. 45 func (c *Uniform) Opaque() bool {
|
image_test.go | 14 Opaque() bool 37 Opaque, 49 m.Set(6, 3, Opaque) 50 if !cmp(t, m.ColorModel(), Opaque, m.At(6, 3)) { 54 if !m.SubImage(Rect(6, 3, 7, 4)).(image).Opaque() { 55 t.Errorf("%T: at (6, 3) was not opaque", m) 63 if !cmp(t, m.ColorModel(), Opaque, m.At(6, 3)) { 71 m.Set(3, 3, Opaque) 72 if !cmp(t, m.ColorModel(), Opaque, m.At(3, 3)) {
|
image.go | 133 // Opaque scans the entire image and reports whether it is fully opaque. 134 func (p *RGBA) Opaque() bool { 245 // Opaque scans the entire image and reports whether it is fully opaque. 246 func (p *RGBA64) Opaque() bool { 344 // Opaque scans the entire image and reports whether it is fully opaque. 345 func (p *NRGBA) Opaque() bool { 456 // Opaque scans the entire image and reports whether it is fully opaque [all...] |
ycbcr.go | 137 func (p *YCbCr) Opaque() bool { 258 // Opaque scans the entire image and reports whether it is fully opaque. 259 func (p *NYCbCrA) Opaque() bool {
|
geom.go | 83 // returns color.Opaque for points in the rectangle and color.Transparent 237 return color.Opaque
|
/prebuilts/go/linux-x86/src/image/ |
names.go | 12 // Black is an opaque black uniform image. 14 // White is an opaque white uniform image. 18 // Opaque is a fully opaque uniform image. 19 Opaque = NewUniform(color.Opaque) 44 // Opaque scans the entire image and reports whether it is fully opaque. 45 func (c *Uniform) Opaque() bool {
|
image_test.go | 14 Opaque() bool 37 Opaque, 49 m.Set(6, 3, Opaque) 50 if !cmp(t, m.ColorModel(), Opaque, m.At(6, 3)) { 54 if !m.SubImage(Rect(6, 3, 7, 4)).(image).Opaque() { 55 t.Errorf("%T: at (6, 3) was not opaque", m) 63 if !cmp(t, m.ColorModel(), Opaque, m.At(6, 3)) { 71 m.Set(3, 3, Opaque) 72 if !cmp(t, m.ColorModel(), Opaque, m.At(3, 3)) {
|
image.go | 133 // Opaque scans the entire image and reports whether it is fully opaque. 134 func (p *RGBA) Opaque() bool { 245 // Opaque scans the entire image and reports whether it is fully opaque. 246 func (p *RGBA64) Opaque() bool { 344 // Opaque scans the entire image and reports whether it is fully opaque. 345 func (p *NRGBA) Opaque() bool { 456 // Opaque scans the entire image and reports whether it is fully opaque [all...] |
ycbcr.go | 137 func (p *YCbCr) Opaque() bool { 258 // Opaque scans the entire image and reports whether it is fully opaque. 259 func (p *NYCbCrA) Opaque() bool {
|
/external/llvm/include/llvm-c/ |
ExecutionEngine.h | 156 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 159 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 162 void *Opaque, char **ErrMsg); 163 typedef void (*LLVMMemoryManagerDestroyCallback)(void *Opaque); 170 * @param Opaque An opaque client object to pass back to the callbacks. 177 void *Opaque,
|
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngineBindings.cpp | 323 void *Opaque); 338 void *Opaque; 343 void *Opaque) 344 : Functions(Functions), Opaque(Opaque) { 356 Functions.Destroy(Opaque); 362 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, 369 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID, 376 bool result = Functions.FinalizeMemory(Opaque, &errMsgCString); 390 void *Opaque, [all...] |
/prebuilts/go/darwin-x86/src/image/png/ |
writer_test.go | 136 // Set all pixels to 0xFF alpha to force opaque mode. 143 if !img.Opaque() { 144 b.Fatal("expected image to be opaque") 156 if img.Opaque() { 157 b.Fatal("expected image not to be opaque") 182 // Set all pixels to 0xFF alpha to force opaque mode. 189 if !img.Opaque() { 190 b.Fatal("expected image to be opaque") 202 if img.Opaque() { 203 b.Fatal("expected image not to be opaque") [all...] |
/prebuilts/go/linux-x86/src/image/png/ |
writer_test.go | 136 // Set all pixels to 0xFF alpha to force opaque mode. 143 if !img.Opaque() { 144 b.Fatal("expected image to be opaque") 156 if img.Opaque() { 157 b.Fatal("expected image not to be opaque") 182 // Set all pixels to 0xFF alpha to force opaque mode. 189 if !img.Opaque() { 190 b.Fatal("expected image to be opaque") 202 if img.Opaque() { 203 b.Fatal("expected image not to be opaque") [all...] |
/external/clang/test/Analysis/ |
reinterpret-cast.cpp | 5 typedef struct Opaque *Data;
|
/external/ImageMagick/PerlMagick/ |
Magick.pm | 35 Success Transparent Opaque QuantumDepth QuantumRange MaxRGB
|
/external/ImageMagick/PerlMagick/quantum/ |
quantum.pm | 34 Success Transparent Opaque QuantumDepth QuantumRange MaxRGB
|
/prebuilts/go/darwin-x86/src/net/url/ |
example_test.go | 70 Opaque: "/%2f/",
|
url_test.go | 139 Opaque: "www.google.com/", 149 Opaque: "%2f%2fwww.google.com/", 168 Opaque: "webmaster@golang.org", 299 Opaque: "webmaster@golang.org", 582 return fmt.Sprintf("opaque=%q, scheme=%q, user=%#v, pass=%#v, host=%q, path=%q, rawpath=%q, rawq=%q, frag=%q, forcequery=%v", 583 u.Opaque, u.Scheme, user, pass, u.Host, u.Path, u.RawPath, u.RawQuery, u.Fragment, u.ForceQuery) 1125 opaque := &URL{Scheme: "scheme", Opaque: "opaque"} 1147 // Ensure Opaque resets the URL [all...] |
/prebuilts/go/linux-x86/src/net/url/ |
example_test.go | 70 Opaque: "/%2f/",
|
url_test.go | 139 Opaque: "www.google.com/", 149 Opaque: "%2f%2fwww.google.com/", 168 Opaque: "webmaster@golang.org", 299 Opaque: "webmaster@golang.org", 582 return fmt.Sprintf("opaque=%q, scheme=%q, user=%#v, pass=%#v, host=%q, path=%q, rawpath=%q, rawq=%q, frag=%q, forcequery=%v", 583 u.Opaque, u.Scheme, user, pass, u.Host, u.Path, u.RawPath, u.RawQuery, u.Fragment, u.ForceQuery) 1125 opaque := &URL{Scheme: "scheme", Opaque: "opaque"} 1147 // Ensure Opaque resets the URL [all...] |
/frameworks/rs/script_api/ |
rs_graphics.spec | 124 Opaque handle to a RenderScript font object. 136 Opaque handle to a RenderScript mesh object. 147 Opaque handle to a RenderScript ProgramFragment object. 158 Opaque handle to a RenderScript ProgramVertex object. 169 Opaque handle to a RenderScript ProgramRaster object. 180 Opaque handle to a RenderScript ProgramStore object.
|
/external/clang/include/clang/AST/ |
TemplateBase.h | 435 TemplateArgumentLocInfo Opaque) 436 : Argument(Argument), LocInfo(Opaque) {
|