Lines Matching refs:getAttribute
384 const char* TestResultParser::getAttribute (const char* name) in getAttribute() function in xe::TestResultParser
389 return m_xmlParser.getAttribute(name); in getAttribute()
451 const char* version = getAttribute("Version"); in handleElementStart()
455 m_result->casePath = getAttribute("CasePath"); in handleElementStart()
459 m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType")); in handleElementStart()
483 result->statusCode = getTestStatusCode(getAttribute("StatusCode")); in handleElementStart()
495 section->name = getAttribute("Name"); in handleElementStart()
496 section->description = getAttribute("Description"); in handleElementStart()
504 number->name = getAttribute("Name"); in handleElementStart()
505 number->description = getAttribute("Description"); in handleElementStart()
506 number->unit = getAttribute("Unit"); in handleElementStart()
509 number->tag = m_xmlParser.getAttribute("Tag"); in handleElementStart()
520 imageSet->name = getAttribute("Name"); in handleElementStart()
521 imageSet->description = getAttribute("Description"); in handleElementStart()
529 image->name = getAttribute("Name"); in handleElementStart()
530 image->description = getAttribute("Description"); in handleElementStart()
531 image->width = toInt(getAttribute("Width")); in handleElementStart()
532 image->height = toInt(getAttribute("Height")); in handleElementStart()
533 image->format = getImageFormat(getAttribute("Format")); in handleElementStart()
534 image->compression = getImageCompression(getAttribute("CompressionMode")); in handleElementStart()
542 shaderProgram->linkStatus = toBool(getAttribute("LinkStatus")); in handleElementStart()
555 shader->compileStatus = toBool(getAttribute("CompileStatus")); in handleElementStart()
594 info->name = getAttribute("Name"); in handleElementStart()
595 info->description = getAttribute("Description"); in handleElementStart()
596 info->compileStatus = toBool(getAttribute("CompileStatus")); in handleElementStart()
604 set->name = getAttribute("Name"); in handleElementStart()
605 …set->description = m_xmlParser.hasAttribute("Description") ? m_xmlParser.getAttribute("Description… in handleElementStart()
613 config->bufferSize = toInt(getAttribute("BufferSize")); in handleElementStart()
614 config->redSize = toInt(getAttribute("RedSize")); in handleElementStart()
615 config->greenSize = toInt(getAttribute("GreenSize")); in handleElementStart()
616 config->blueSize = toInt(getAttribute("BlueSize")); in handleElementStart()
617 config->luminanceSize = toInt(getAttribute("LuminanceSize")); in handleElementStart()
618 config->alphaSize = toInt(getAttribute("AlphaSize")); in handleElementStart()
619 config->alphaMaskSize = toInt(getAttribute("AlphaMaskSize")); in handleElementStart()
620 config->bindToTextureRGB = toBool(getAttribute("BindToTextureRGB")); in handleElementStart()
621 config->bindToTextureRGBA = toBool(getAttribute("BindToTextureRGBA")); in handleElementStart()
622 config->colorBufferType = getAttribute("ColorBufferType"); in handleElementStart()
623 config->configCaveat = getAttribute("ConfigCaveat"); in handleElementStart()
624 config->configID = toInt(getAttribute("ConfigID")); in handleElementStart()
625 config->conformant = getAttribute("Conformant"); in handleElementStart()
626 config->depthSize = toInt(getAttribute("DepthSize")); in handleElementStart()
627 config->level = toInt(getAttribute("Level")); in handleElementStart()
628 config->maxPBufferWidth = toInt(getAttribute("MaxPBufferWidth")); in handleElementStart()
629 config->maxPBufferHeight = toInt(getAttribute("MaxPBufferHeight")); in handleElementStart()
630 config->maxPBufferPixels = toInt(getAttribute("MaxPBufferPixels")); in handleElementStart()
631 config->maxSwapInterval = toInt(getAttribute("MaxSwapInterval")); in handleElementStart()
632 config->minSwapInterval = toInt(getAttribute("MinSwapInterval")); in handleElementStart()
633 config->nativeRenderable = toBool(getAttribute("NativeRenderable")); in handleElementStart()
634 config->renderableType = getAttribute("RenderableType"); in handleElementStart()
635 config->sampleBuffers = toInt(getAttribute("SampleBuffers")); in handleElementStart()
636 config->samples = toInt(getAttribute("Samples")); in handleElementStart()
637 config->stencilSize = toInt(getAttribute("StencilSize")); in handleElementStart()
638 config->surfaceTypes = getAttribute("SurfaceTypes"); in handleElementStart()
639 config->transparentType = getAttribute("TransparentType"); in handleElementStart()
640 config->transparentRedValue = toInt(getAttribute("TransparentRedValue")); in handleElementStart()
641 config->transparentGreenValue = toInt(getAttribute("TransparentGreenValue")); in handleElementStart()
642 config->transparentBlueValue = toInt(getAttribute("TransparentBlueValue")); in handleElementStart()
650 list->name = getAttribute("Name"); in handleElementStart()
651 list->description = getAttribute("Description"); in handleElementStart()
676 valueInfo->name = getAttribute("Name"); in handleElementStart()
677 valueInfo->description = getAttribute("Description"); in handleElementStart()
678 valueInfo->tag = getSampleValueTag(getAttribute("Tag")); in handleElementStart()
681 valueInfo->unit = getAttribute("Unit"); in handleElementStart()