Lines Matching refs:getAttribute

401 const char* TestResultParser::getAttribute (const char* name)
406 return m_xmlParser.getAttribute(name);
468 const char* version = getAttribute("Version");
473 m_result->casePath = getAttribute("CasePath");
477 m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType"));
501 result->statusCode = getTestStatusCode(getAttribute("StatusCode"));
513 section->name = getAttribute("Name");
514 section->description = getAttribute("Description");
522 number->name = getAttribute("Name");
523 number->description = getAttribute("Description");
524 number->unit = getAttribute("Unit");
527 number->tag = m_xmlParser.getAttribute("Tag");
538 imageSet->name = getAttribute("Name");
539 imageSet->description = getAttribute("Description");
547 image->name = getAttribute("Name");
548 image->description = getAttribute("Description");
549 image->width = toInt(getAttribute("Width"));
550 image->height = toInt(getAttribute("Height"));
551 image->format = getImageFormat(getAttribute("Format"));
552 image->compression = getImageCompression(getAttribute("CompressionMode"));
560 shaderProgram->linkStatus = toBool(getAttribute("LinkStatus"));
573 shader->compileStatus = toBool(getAttribute("CompileStatus"));
612 info->name = getAttribute("Name");
613 info->description = getAttribute("Description");
614 info->compileStatus = toBool(getAttribute("CompileStatus"));
622 set->name = getAttribute("Name");
623 set->description = m_xmlParser.hasAttribute("Description") ? m_xmlParser.getAttribute("Description") : "";
631 config->bufferSize = toInt(getAttribute("BufferSize"));
632 config->redSize = toInt(getAttribute("RedSize"));
633 config->greenSize = toInt(getAttribute("GreenSize"));
634 config->blueSize = toInt(getAttribute("BlueSize"));
635 config->luminanceSize = toInt(getAttribute("LuminanceSize"));
636 config->alphaSize = toInt(getAttribute("AlphaSize"));
637 config->alphaMaskSize = toInt(getAttribute("AlphaMaskSize"));
638 config->bindToTextureRGB = toBool(getAttribute("BindToTextureRGB"));
639 config->bindToTextureRGBA = toBool(getAttribute("BindToTextureRGBA"));
640 config->colorBufferType = getAttribute("ColorBufferType");
641 config->configCaveat = getAttribute("ConfigCaveat");
642 config->configID = toInt(getAttribute("ConfigID"));
643 config->conformant = getAttribute("Conformant");
644 config->depthSize = toInt(getAttribute("DepthSize"));
645 config->level = toInt(getAttribute("Level"));
646 config->maxPBufferWidth = toInt(getAttribute("MaxPBufferWidth"));
647 config->maxPBufferHeight = toInt(getAttribute("MaxPBufferHeight"));
648 config->maxPBufferPixels = toInt(getAttribute("MaxPBufferPixels"));
649 config->maxSwapInterval = toInt(getAttribute("MaxSwapInterval"));
650 config->minSwapInterval = toInt(getAttribute("MinSwapInterval"));
651 config->nativeRenderable = toBool(getAttribute("NativeRenderable"));
652 config->renderableType = getAttribute("RenderableType");
653 config->sampleBuffers = toInt(getAttribute("SampleBuffers"));
654 config->samples = toInt(getAttribute("Samples"));
655 config->stencilSize = toInt(getAttribute("StencilSize"));
656 config->surfaceTypes = getAttribute("SurfaceTypes");
657 config->transparentType = getAttribute("TransparentType");
658 config->transparentRedValue = toInt(getAttribute("TransparentRedValue"));
659 config->transparentGreenValue = toInt(getAttribute("TransparentGreenValue"));
660 config->transparentBlueValue = toInt(getAttribute("TransparentBlueValue"));
668 list->name = getAttribute("Name");
669 list->description = getAttribute("Description");
694 valueInfo->name = getAttribute("Name");
695 valueInfo->description = getAttribute("Description");
696 valueInfo->tag = getSampleValueTag(getAttribute("Tag"));
699 valueInfo->unit = getAttribute("Unit");