Home
last modified time | relevance | path

Searched refs:apiName (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/extensions/renderer/resources/
Dbinding.js32 APIFunctions.prototype.register = function(apiName, apiFunction) { argument
33 this.apiFunctions_[apiName] = apiFunction;
39 APIFunctions.prototype.registerUnavailable = function(apiName) { argument
40 this.unavailableApiFunctions_[apiName] = apiName;
44 function(apiName, propertyName, customizedFunction) { argument
45 if ($Object.hasOwnProperty(this.unavailableApiFunctions_, apiName))
47 if (!$Object.hasOwnProperty(this.apiFunctions_, apiName))
48 throw new Error('Tried to set hook for unknown API "' + apiName + '"');
49 this.apiFunctions_[apiName][propertyName] = customizedFunction;
53 function(apiName, customizedFunction) { argument
[all …]
/external/chromium_org/third_party/WebKit/Source/web/
DWebDOMActivityLogger.cpp50 virtual void logGetter(const String& apiName) OVERRIDE in logGetter() argument
52 m_domActivityLogger->logGetter(WebString(apiName), getURL(), getTitle()); in logGetter()
55 virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) OVERRIDE in logSetter() argument
57 m_domActivityLogger->logSetter(WebString(apiName), newValue, getURL(), getTitle()); in logSetter()
60 …virtual void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) OVERRIDE in logMethod() argument
62 m_domActivityLogger->logMethod(WebString(apiName), argc, argv, getURL(), getTitle()); in logMethod()
/external/chromium_org/chrome/renderer/resources/extensions/
Dfile_entry_binding_util.js19 function getFileBindingsForApi(apiName) { argument
43 apiName + '.' + functionName,
74 apiName + '.' + functionName, request, callback,
78 apiName + '.' + functionName, request, callback,
95 lastError.run(apiName + '.' + functionName,
112 apiName).bindFileEntryCallback;
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLX509CertPath.java49 private final String apiName; field in OpenSSLX509CertPath.Encoding
51 Encoding(String apiName) { in Encoding() argument
52 this.apiName = apiName; in Encoding()
55 static Encoding findByApiName(String apiName) throws CertificateEncodingException { in findByApiName() argument
57 if (element.apiName.equals(apiName)) { in findByApiName()
69 Encoding.PKI_PATH.apiName,
70 Encoding.PKCS7.apiName,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DV8DOMActivityLogger.h46 virtual void logGetter(const String& apiName) { } in logGetter() argument
47 virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) { } in logSetter() argument
48 virtual void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) { } in logMethod() argument
/external/chromium_org/third_party/WebKit/public/web/
DWebDOMActivityLogger.h45 virtual void logGetter(const WebString& apiName, const WebURL& url, const WebString& title) { } in logGetter() argument
46 …virtual void logSetter(const WebString& apiName, const v8::Handle<v8::Value>& newValue, const WebU… in logSetter() argument
47 …virtual void logMethod(const WebString& apiName, int argc, const v8::Handle<v8::Value>* argv, cons… in logMethod() argument
/external/chromium_org/third_party/WebKit/Source/web/tests/
DActivityLoggerTest.cpp27 void logGetter(const String& apiName) OVERRIDE in logGetter() argument
29 m_loggedActivities.append(apiName); in logGetter()
32 void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) OVERRIDE in logSetter() argument
34 m_loggedActivities.append(apiName + " | " + toCoreStringWithUndefinedOrNullCheck(newValue)); in logSetter()
37 void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) OVERRIDE in logMethod() argument
39 String activityString = apiName; in logMethod()
/external/deqp/modules/egl/
DteglRenderCase.cpp244 const char* apiName = DE_NULL; in executeForSurface() local
252 apiName = "OpenGL ES 2.x"; in executeForSurface()
259 apiName = "OpenGL ES 3.x"; in executeForSurface()
266 apiName = "OpenGL ES 1.x"; in executeForSurface()
273 apiName = "OpenVG"; in executeForSurface()
282 log << TestLog::Message << apiName << TestLog::EndMessage; in executeForSurface()
/external/jdiff/src/jdiff/
DAPIHandler.java78 String apiName = attributes.getValue("name"); in startElement() local
80 XMLToAPI.nameAPI(apiName); in startElement()
DXMLToAPI.java42 String apiName) { in readFile() argument
45 api_.name_ = apiName; // Checked later in readFile()
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp1149 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateCompareSrc() local
1150 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateCompareSrc()
1233 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateWriteSrc() local
1234 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateWriteSrc()
1592 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in copyNonWrittenData() local
1593 const int varNdx = layout.getVariableIndex(apiName); in copyNonWrittenData()
1865 const string apiName = getBlockAPIName(block, instanceNdx); in computeBufferSizes() local
1866 const int blockNdx = layout.getBlockIndex(apiName); in computeBufferSizes()
Des31fGeometryShaderTests.cpp4359 …Context& context, const char* name, const char* description, glw::GLenum apiName, const std::strin…
4370 …Context& context, const char* name, const char* description, glw::GLenum apiName, const std::strin… in GeometryProgramLimitCase() argument
4372 , m_apiName (apiName) in GeometryProgramLimitCase()
/external/deqp/modules/glshared/
DglsUniformBlockCase.cpp1000 …t char* resultVar, const VarType& type, const char* srcName, const char* apiName, const UniformLay… in generateCompareSrc() argument
1008 …std::string fullApiName = string(apiName) + (isArray ? "[0]" : ""); // Arrays are always post… in generateCompareSrc()
1035 …generateCompareSrc(src, resultVar, elementType, (string(srcName) + op).c_str(), (string(apiName) +… in generateCompareSrc()
1048 …esultVar, memberIter->getType(), (string(srcName) + op).c_str(), (string(apiName) + op).c_str(), l… in generateCompareSrc()