Lines Matching defs:getAttribute

382 const char* TestResultParser::getAttribute (const char* name)
387 return m_xmlParser.getAttribute(name);
449 const char* version = getAttribute("Version");
453 m_result->casePath = getAttribute("CasePath");
457 m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType"));
481 result->statusCode = getTestStatusCode(getAttribute("StatusCode"));
493 section->name = getAttribute("Name");
494 section->description = getAttribute("Description");
502 number->name = getAttribute("Name");
503 number->description = getAttribute("Description");
504 number->unit = getAttribute("Unit");
507 number->tag = m_xmlParser.getAttribute("Tag");
518 imageSet->name = getAttribute("Name");
519 imageSet->description = getAttribute("Description");
527 image->name = getAttribute("Name");
528 image->description = getAttribute("Description");
529 image->width = toInt(getAttribute("Width"));
530 image->height = toInt(getAttribute("Height"));
531 image->format = getImageFormat(getAttribute("Format"));
532 image->compression = getImageCompression(getAttribute("CompressionMode"));
540 shaderProgram->linkStatus = toBool(getAttribute("LinkStatus"));
553 shader->compileStatus = toBool(getAttribute("CompileStatus"));
584 info->name = getAttribute("Name");
585 info->description = getAttribute("Description");
586 info->compileStatus = toBool(getAttribute("CompileStatus"));
594 set->name = getAttribute("Name");
595 set->description = m_xmlParser.hasAttribute("Description") ? m_xmlParser.getAttribute("Description") : "";
603 config->bufferSize = toInt(getAttribute("BufferSize"));
604 config->redSize = toInt(getAttribute("RedSize"));
605 config->greenSize = toInt(getAttribute("GreenSize"));
606 config->blueSize = toInt(getAttribute("BlueSize"));
607 config->luminanceSize = toInt(getAttribute("LuminanceSize"));
608 config->alphaSize = toInt(getAttribute("AlphaSize"));
609 config->alphaMaskSize = toInt(getAttribute("AlphaMaskSize"));
610 config->bindToTextureRGB = toBool(getAttribute("BindToTextureRGB"));
611 config->bindToTextureRGBA = toBool(getAttribute("BindToTextureRGBA"));
612 config->colorBufferType = getAttribute("ColorBufferType");
613 config->configCaveat = getAttribute("ConfigCaveat");
614 config->configID = toInt(getAttribute("ConfigID"));
615 config->conformant = getAttribute("Conformant");
616 config->depthSize = toInt(getAttribute("DepthSize"));
617 config->level = toInt(getAttribute("Level"));
618 config->maxPBufferWidth = toInt(getAttribute("MaxPBufferWidth"));
619 config->maxPBufferHeight = toInt(getAttribute("MaxPBufferHeight"));
620 config->maxPBufferPixels = toInt(getAttribute("MaxPBufferPixels"));
621 config->maxSwapInterval = toInt(getAttribute("MaxSwapInterval"));
622 config->minSwapInterval = toInt(getAttribute("MinSwapInterval"));
623 config->nativeRenderable = toBool(getAttribute("NativeRenderable"));
624 config->renderableType = getAttribute("RenderableType");
625 config->sampleBuffers = toInt(getAttribute("SampleBuffers"));
626 config->samples = toInt(getAttribute("Samples"));
627 config->stencilSize = toInt(getAttribute("StencilSize"));
628 config->surfaceTypes = getAttribute("SurfaceTypes");
629 config->transparentType = getAttribute("TransparentType");
630 config->transparentRedValue = toInt(getAttribute("TransparentRedValue"));
631 config->transparentGreenValue = toInt(getAttribute("TransparentGreenValue"));
632 config->transparentBlueValue = toInt(getAttribute("TransparentBlueValue"));
640 list->name = getAttribute("Name");
641 list->description = getAttribute("Description");
666 valueInfo->name = getAttribute("Name");
667 valueInfo->description = getAttribute("Description");
668 valueInfo->tag = getSampleValueTag(getAttribute("Tag"));
671 valueInfo->unit = getAttribute("Unit");