Searched defs:validate (Results 101 - 125 of 299) sorted by relevance

1234567891011>>

/external/junit/src/org/junit/internal/runners/
H A DJUnit4ClassRunner.java37 validate();
44 protected void validate() throws InitializationError { method in class:JUnit4ClassRunner
/external/mesa3d/src/mesa/main/
H A DAPIspec.py229 self.checker.validate(self, param_nodes)
349 def validate(self, func, param_nodes): member in class:Checker
356 if desc.validate(func, param_nodes):
558 def validate(self, func, param_nodes): member in class:Description
585 if not self.checker.validate(func, param_nodes):
/external/skia/src/animator/
H A DSkDisplayList.cpp32 validate();
45 validate();
49 validate();
152 void SkDisplayList::validate() { function in class:SkDisplayList
155 draw->validate();
/external/skia/src/core/
H A DSkGlyphCache_Globals.h63 void validate() const;
65 void validate() const {} function in class:SkGlyphCache_Globals
H A DSkRasterClip.cpp15 SkDEBUGCODE(this->validate();)
30 SkDEBUGCODE(this->validate();)
37 SkDEBUGCODE(this->validate();)
41 SkDEBUGCODE(this->validate();)
117 clip.validate();
229 void SkRasterClip::validate() const { function in class:SkRasterClip
235 fBW.validate();
236 fAA.validate();
H A DSkRasterClip.h74 void validate() const;
76 void validate() const {} function in class:SkRasterClip
107 fRC.validate();
110 fRC.validate();
/external/skia/src/gpu/
H A DGrTHashTable.h21 * static bool Equals(const Entry&, const Entry&); for SK_DEBUG if GrTHashTable::validate() is called
22 * static bool LessThan(const Entry&, const Entry&); for SK_DEBUG if GrTHashTable::validate() is called
50 void validate() const;
199 void GrTHashTable<T, Key, kHashBits>::validate() const { function in class:GrTHashTable
H A DGrTextStrike.h101 void validate() const;
103 void validate() const {} function in class:GrFontCache
/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.cpp15 #define VALIDATE this->validate()
284 void GrTextureStripAtlas::validate() { function in class:GrTextureStripAtlas
/external/smack/src/org/xbill/DNS/
H A DGPOSRecord.java27 validate(double longitude, double latitude) throws IllegalArgumentException method in class:GPOSRecord
51 validate(longitude, latitude);
72 validate(getLongitude(), getLatitude());
86 validate(getLongitude(), getLatitude());
104 validate(getLongitude(), getLatitude());
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
H A Dopenid.php20 * echo $openid->validate() ? 'Logged in.' : 'Failed';
447 function validate() function
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPreserveAspectRatio.cpp58 bool SVGPreserveAspectRatio::parseInternal(const CharType*& ptr, const CharType* end, bool validate) argument
157 if (end != ptr && validate)
189 bool SVGPreserveAspectRatio::parse(const LChar*& ptr, const LChar* end, bool validate) argument
191 return parseInternal(ptr, end, validate);
194 bool SVGPreserveAspectRatio::parse(const UChar*& ptr, const UChar* end, bool validate) argument
196 return parseInternal(ptr, end, validate);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DSettingsUI.js124 validate();
165 function validate() function
198 validate();
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIOutput.cpp54 static bool validate(Uint8Array* array, ExceptionState& exceptionState, bool sysexEnabled) function in class:blink::__anon11224::MessageValidator
200 if (MessageValidator::validate(array, exceptionState, midiAccess()->sysexEnabled()))
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer.h133 enum pipe_error (*validate)( struct pb_buffer *buf, member in struct:pb_vtbl
209 assert(buf->vtbl->validate);
210 return buf->vtbl->validate(buf, vl, flags);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_state_validate.c465 struct state_validate *validate; local
480 validate = hwtnl_validate_list;
482 validate = swtnl_validate_list;
485 while (validate->func) {
486 if (nv30->dirty & validate->mask)
487 validate->func(nv30);
488 validate++;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_state_validate.c383 struct state_validate *validate = &validate_list[i]; local
385 if (state_mask & validate->states)
386 validate->func(nv50);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_state_validate.c533 struct state_validate *validate = &validate_list[i]; local
535 if (state_mask & validate->states)
536 validate->func(nvc0);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
H A Dnative.h141 boolean (*validate)(struct native_surface *nsurf, uint attachment_mask, member in struct:native_surface
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
H A Dvmw_context.c90 struct pb_validate *validate; member in struct:vmw_svga_winsys_context
137 ret = pb_validate_validate(vswc->validate);
162 pb_validate_fence(vswc->validate, fence);
293 ret = pb_validate_add_buffer(vswc->validate, reloc->buffer, translated_flags);
358 pb_validate_destroy(vswc->validate);
389 vswc->validate = pb_validate_create();
390 if(!vswc->validate) {
/external/chromium_org/third_party/skia/include/core/
H A DSkTDArray.h342 void validate() const { function in class:SkTDArray
H A DSkTInternalLList.h227 void validate() const { function in class:SkTInternalLList
/external/chromium_org/third_party/skia/include/gpu/
H A DGrGpuResource.h56 // pre-validate once internal_dispose is removed (and therefore 0 ref cnt is not allowed).
57 this->validate();
61 this->validate();
74 void validate() const { function in class:GrIORef
93 this->validate();
98 this->validate();
106 this->validate();
111 this->validate();
H A DGrTexture.h91 void validate() const { function in class:GrTexture
92 this->INHERITED::validate();
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateMaker.h102 void validate() { fDisplayList.validate(); } function in class:SkAnimateMaker
104 void validate() {} function in class:SkAnimateMaker

Completed in 602 milliseconds

1234567891011>>