Searched defs:description (Results 201 - 225 of 903) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/thunk/
H A Dppb_browser_font_trusted_thunk.cc25 const PP_BrowserFont_Trusted_Description* description) {
28 enter.functions()->CreateBrowserFont(instance, description) : 0;
37 PP_BrowserFont_Trusted_Description* description,
41 enter.object()->Describe(description, metrics) : PP_FALSE;
24 Create(PP_Instance instance, const PP_BrowserFont_Trusted_Description* description) argument
36 Describe(PP_Resource font_id, PP_BrowserFont_Trusted_Description* description, PP_BrowserFont_Trusted_Metrics* metrics) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
H A DJSArticle.js31 * @param {?WebInspector.WikiParser.Block} description
33 WebInspector.JSArticle.Parameter = function(name, dataType, optional, description)
39 this.description = description;
47 * @param {?WebInspector.WikiParser.Block} description
49 WebInspector.JSArticle.Example = function(language, code, liveUrl, description)
54 this.description = description;
115 var description = examples[i].values["Description"];
116 article.examples.push(new WebInspector.JSArticle.Example(language, code, liveUrl, description));
129 var description = parameters[i].values["Description"]; variable
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebUserMediaRequest.cpp102 void WebUserMediaRequest::requestDenied(const WebString& description) argument
105 m_private->failPermissionDenied(description);
108 void WebUserMediaRequest::requestFailedConstraint(const WebString& constraintName, const WebString& description) argument
111 m_private->failConstraint(constraintName, description);
114 void WebUserMediaRequest::requestFailedUASpecific(const WebString& name, const WebString& constraintName, const WebString& description) argument
117 m_private->failUASpecific(name, constraintName, description);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderTarget9.cpp27 D3DSURFACE_DESC description; local
28 mRenderTarget->GetDesc(&description);
30 mWidth = description.Width;
31 mHeight = description.Height;
34 const d3d9::D3DFormat &d3dFormatInfo = d3d9::GetD3DFormatInfo(description.Format);
37 mSamples = d3d9_gl::GetSamplesCount(description.MultiSampleType);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Djsep.h51 std::string description; member in struct:webrtc::SdpParseError
97 // Class representation of a Session description.
108 virtual cricket::SessionDescription* description() = 0;
109 virtual const cricket::SessionDescription* description() const = 0;
115 // Adds the specified candidate to the description.
117 // Returns false if the session description does not have a media section that
120 // Returns the number of m- lines in the session description.
125 // Serializes the description to SDP.
H A Djsepsessiondescription.h54 // Takes ownership of |description|.
55 bool Initialize(cricket::SessionDescription* description,
59 virtual cricket::SessionDescription* description() { function in class:webrtc::JsepSessionDescription
62 virtual const cricket::SessionDescription* description() const { function in class:webrtc::JsepSessionDescription
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
H A DGAEChannelClient.java62 public void onError(int code, String description); argument
80 WebView view, int errorCode, String description,
83 ", desc: " + description);
163 final int code, final String description) {
167 handler.onError(code, description);
162 onError( final int code, final String description) argument
/external/chromium_org/third_party/webrtc/base/
H A Dsysteminfo.h57 std::string description; member in struct:rtc::SystemInfo::GpuInfo
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dnormal_test.cc30 NormalTest::NormalTest(std::string name, std::string description, argument
33 CodecTest(name, description),
41 NormalTest::NormalTest(std::string name, std::string description, argument
44 CodecTest(name, description, bitRate),
/external/chromium_org/tools/json_schema_compiler/
H A Dcompiler.py149 description='Generates a C++ model of an API from JSON schema', variable
/external/chromium_org/tools/json_to_struct/
H A Djson_to_struct.py30 # Format for the JSON description file:
83 def _GenerateH(basepath, fileroot, head, namespace, schema, description):
94 description: A dict containing the description. See comment at the top of
122 for var_name, value in description.get('int_variables', []).items():
126 for element_name, element in description['elements'].items():
136 def _GenerateCC(basepath, fileroot, head, namespace, schema, description):
138 of the elements specified in the description.
147 description: A dict containing the description
178 description='Generates an C++ array of struct from a JSON description.', variable
207 description = _Load(description_filename) variable
[all...]
/external/chromium_org/v8/test/webkit/resources/
H A Dstandalone-pre.js31 function description(msg) function
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h65 BuiltinBug(class CheckName check, const char *name, const char *description) argument
66 : BugType(check, name, categories::LogicError), desc(description) {}
69 const char *description)
70 : BugType(checker, name, categories::LogicError), desc(description) {}
68 BuiltinBug(const CheckerBase *checker, const char *name, const char *description) argument
/external/deqp/executor/
H A DxeTestCaseListParser.cpp105 const char* description = m_xmlParser.hasAttribute("Description") ? m_xmlParser.getAttribute("Description") : DE_NULL; local
108 XE_CHECK_MSG(name && description && caseType, "Missing attribute in <TestCase>");
112 TestNode* node = isGroup ? static_cast<TestNode*>(static_cast<TestGroup*>(parent)->createGroup(name, description))
113 : static_cast<TestNode*>(static_cast<TestGroup*>(parent)->createCase(getTestCaseType(caseType), name, description));
/external/deqp/framework/common/
H A DtcuTestCase.cpp46 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description) argument
50 , m_description (description)
55 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const vector<TestNode*>& children) argument
59 , m_description (description)
106 TestCaseGroup::TestCaseGroup (TestContext& testCtx, const char* name, const char* description) argument
107 : TestNode(testCtx, NODETYPE_GROUP, name, description)
111 TestCaseGroup::TestCaseGroup (TestContext& testCtx, const char* name, const char* description, const vector<TestNode*>& children) argument
112 : TestNode(testCtx, NODETYPE_GROUP, name, description, children)
128 TestCase::TestCase (TestContext& testCtx, const char* name, const char* description) argument
129 : TestNode(testCtx, NODETYPE_SELF_VALIDATE, name, description)
133 TestCase(TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description) argument
[all...]
H A DtcuTestContext.cpp55 void TestContext::setTestResult (qpTestResult testResult, const char* description) argument
58 m_testResultDesc = description;
/external/deqp/framework/egl/
H A DegluNativeWindow.cpp82 NativeWindowFactory::NativeWindowFactory (const std::string& name, const std::string& description, NativeWindow::Capability capabilities) argument
83 : FactoryBase (name, description)
/external/deqp/modules/egl/
H A DteglApiCase.cpp34 ApiCase::ApiCase (EglTestContext& eglTestCtx, const char* name, const char* description) argument
35 : TestCase (eglTestCtx, name, description)
/external/deqp/modules/gles2/functional/
H A Des2fApiCase.cpp40 ApiCase::ApiCase (Context& context, const char* name, const char* description) argument
41 : TestCase (context, name, description)
H A Des2fRandomShaderTests.cpp38 gls::RandomShaderCase* createRandomShaderCase (Context& context, const char* description, const rsg::ProgramParameters& baseParams, deUint32 seed, bool vertex, bool fragment) argument
46 return new gls::RandomShaderCase(context.getTestContext(), context.getRenderContext(), de::toString(seed).c_str(), description, params);
H A Des2fShaderAlgorithmTests.cpp52 ShaderAlgorithmCase (Context& context, const char* name, const char* description, bool isVertexCase, ShaderEvalFunc evalFunc, const char* vertShaderSource, const char* fragShaderSource);
60 ShaderAlgorithmCase::ShaderAlgorithmCase (Context& context, const char* name, const char* description, bool isVertexCase, ShaderEvalFunc evalFunc, const char* vertShaderSource, const char* fragShaderSource) argument
61 : ShaderRenderCase(context.getTestContext(), context.getRenderContext(), context.getContextInfo(), name, description, isVertexCase, evalFunc)
73 static ShaderAlgorithmCase* createExpressionCase (Context& context, const char* caseName, const char* description, bool isVertexCase, ShaderEvalFunc evalFunc, LineStream& shaderBody) argument
136 return new ShaderAlgorithmCase(context, caseName, description, isVertexCase, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
/external/deqp/modules/gles2/performance/
H A Des2pRedundantStateChangeTests.cpp51 RedundantStateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description);
60 RedundantStateChangeCase::RedundantStateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description) argument
61 : gls::StateChangePerformanceCase(context.getTestContext(), context.getRenderContext(), name, description,
108 RedundantStateChangeCase_ ## NAME (Context& context, int drawCallCount, int triangleCount, const char* name, const char* description)\
109 : RedundantStateChangeCase(context, drawCallCount, triangleCount, (DRAWARRAYS), (INDEXBUFFER), name, description)\
H A Des2pStateChangeTests.cpp51 StateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description);
61 StateChangeCase::StateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description) argument
62 : gls::StateChangePerformanceCase(context.getTestContext(), context.getRenderContext(), name, description,
117 StateChangeCase_ ## NAME (Context& context, int drawCallCount, int triangleCount, const char* name, const char* description)\
118 : StateChangeCase(context, drawCallCount, triangleCount, (DRAWARRAYS), (INDEXBUFFER), name, description)\
/external/deqp/modules/gles2/
H A Dtes2InfoTests.cpp48 QueryStringCase (Context& context, const char* name, const char* description, deUint32 query) argument
49 : TestCase (context, name, description)
/external/deqp/modules/gles3/functional/
H A Des3fApiCase.cpp42 ApiCase::ApiCase (Context& context, const char* name, const char* description) argument
43 : TestCase (context, name, description)

Completed in 428 milliseconds

1234567891011>>