Lines Matching refs:getAttribute
399 const char* TestResultParser::getAttribute (const char* name) in getAttribute() function in xe::TestResultParser
404 return m_xmlParser.getAttribute(name); in getAttribute()
466 const char* version = getAttribute("Version"); in handleElementStart()
471 m_result->casePath = getAttribute("CasePath"); in handleElementStart()
475 m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType")); in handleElementStart()
499 result->statusCode = getTestStatusCode(getAttribute("StatusCode")); in handleElementStart()
511 section->name = getAttribute("Name"); in handleElementStart()
512 section->description = getAttribute("Description"); in handleElementStart()
520 number->name = getAttribute("Name"); in handleElementStart()
521 number->description = getAttribute("Description"); in handleElementStart()
522 number->unit = getAttribute("Unit"); in handleElementStart()
525 number->tag = m_xmlParser.getAttribute("Tag"); in handleElementStart()
536 imageSet->name = getAttribute("Name"); in handleElementStart()
537 imageSet->description = getAttribute("Description"); in handleElementStart()
545 image->name = getAttribute("Name"); in handleElementStart()
546 image->description = getAttribute("Description"); in handleElementStart()
547 image->width = toInt(getAttribute("Width")); in handleElementStart()
548 image->height = toInt(getAttribute("Height")); in handleElementStart()
549 image->format = getImageFormat(getAttribute("Format")); in handleElementStart()
550 image->compression = getImageCompression(getAttribute("CompressionMode")); in handleElementStart()
558 shaderProgram->linkStatus = toBool(getAttribute("LinkStatus")); in handleElementStart()
571 shader->compileStatus = toBool(getAttribute("CompileStatus")); in handleElementStart()
610 info->name = getAttribute("Name"); in handleElementStart()
611 info->description = getAttribute("Description"); in handleElementStart()
612 info->compileStatus = toBool(getAttribute("CompileStatus")); in handleElementStart()
620 set->name = getAttribute("Name"); in handleElementStart()
621 …set->description = m_xmlParser.hasAttribute("Description") ? m_xmlParser.getAttribute("Description… in handleElementStart()
629 config->bufferSize = toInt(getAttribute("BufferSize")); in handleElementStart()
630 config->redSize = toInt(getAttribute("RedSize")); in handleElementStart()
631 config->greenSize = toInt(getAttribute("GreenSize")); in handleElementStart()
632 config->blueSize = toInt(getAttribute("BlueSize")); in handleElementStart()
633 config->luminanceSize = toInt(getAttribute("LuminanceSize")); in handleElementStart()
634 config->alphaSize = toInt(getAttribute("AlphaSize")); in handleElementStart()
635 config->alphaMaskSize = toInt(getAttribute("AlphaMaskSize")); in handleElementStart()
636 config->bindToTextureRGB = toBool(getAttribute("BindToTextureRGB")); in handleElementStart()
637 config->bindToTextureRGBA = toBool(getAttribute("BindToTextureRGBA")); in handleElementStart()
638 config->colorBufferType = getAttribute("ColorBufferType"); in handleElementStart()
639 config->configCaveat = getAttribute("ConfigCaveat"); in handleElementStart()
640 config->configID = toInt(getAttribute("ConfigID")); in handleElementStart()
641 config->conformant = getAttribute("Conformant"); in handleElementStart()
642 config->depthSize = toInt(getAttribute("DepthSize")); in handleElementStart()
643 config->level = toInt(getAttribute("Level")); in handleElementStart()
644 config->maxPBufferWidth = toInt(getAttribute("MaxPBufferWidth")); in handleElementStart()
645 config->maxPBufferHeight = toInt(getAttribute("MaxPBufferHeight")); in handleElementStart()
646 config->maxPBufferPixels = toInt(getAttribute("MaxPBufferPixels")); in handleElementStart()
647 config->maxSwapInterval = toInt(getAttribute("MaxSwapInterval")); in handleElementStart()
648 config->minSwapInterval = toInt(getAttribute("MinSwapInterval")); in handleElementStart()
649 config->nativeRenderable = toBool(getAttribute("NativeRenderable")); in handleElementStart()
650 config->renderableType = getAttribute("RenderableType"); in handleElementStart()
651 config->sampleBuffers = toInt(getAttribute("SampleBuffers")); in handleElementStart()
652 config->samples = toInt(getAttribute("Samples")); in handleElementStart()
653 config->stencilSize = toInt(getAttribute("StencilSize")); in handleElementStart()
654 config->surfaceTypes = getAttribute("SurfaceTypes"); in handleElementStart()
655 config->transparentType = getAttribute("TransparentType"); in handleElementStart()
656 config->transparentRedValue = toInt(getAttribute("TransparentRedValue")); in handleElementStart()
657 config->transparentGreenValue = toInt(getAttribute("TransparentGreenValue")); in handleElementStart()
658 config->transparentBlueValue = toInt(getAttribute("TransparentBlueValue")); in handleElementStart()
666 list->name = getAttribute("Name"); in handleElementStart()
667 list->description = getAttribute("Description"); in handleElementStart()
692 valueInfo->name = getAttribute("Name"); in handleElementStart()
693 valueInfo->description = getAttribute("Description"); in handleElementStart()
694 valueInfo->tag = getSampleValueTag(getAttribute("Tag")); in handleElementStart()
697 valueInfo->unit = getAttribute("Unit"); in handleElementStart()