/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_adapters/ |
D | default.js | 4 exports.createDocument = function () { 12 exports.createDocumentFragment = function () { 20 exports.createElement = function (tagName, namespaceURI, attrs) { 31 exports.createCommentNode = function (data) { 49 exports.setDocumentType = function (document, name, publicId, systemId) { 75 exports.setQuirksMode = function (document) { 79 exports.isQuirksMode = function (document) { 83 var appendChild = exports.appendChild = function (parentNode, newNode) { 88 var insertBefore = exports.insertBefore = function (parentNode, newNode, referenceNode) { 95 exports.detachNode = function (node) { [all …]
|
D | htmlparser2.js | 62 exports.createDocument = 63 exports.createDocumentFragment = function () { 74 exports.createElement = function (tagName, namespaceURI, attrs) { 101 exports.createCommentNode = function (data) { 123 exports.setDocumentType = function (document, name, publicId, systemId) { 154 exports.setQuirksMode = function (document) { 158 exports.isQuirksMode = function (document) { 162 var appendChild = exports.appendChild = function (parentNode, newNode) { 174 var insertBefore = exports.insertBefore = function (parentNode, newNode, referenceNode) { 190 exports.detachNode = function (node) { [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/ |
D | gl-matrix.js | 29 exports.glMatrix = require("./gl-matrix/common.js"); 30 exports.mat2 = require("./gl-matrix/mat2.js"); 31 exports.mat2d = require("./gl-matrix/mat2d.js"); 32 exports.mat3 = require("./gl-matrix/mat3.js"); 33 exports.mat4 = require("./gl-matrix/mat4.js"); 34 exports.quat = require("./gl-matrix/quat.js"); 35 exports.vec2 = require("./gl-matrix/vec2.js"); 36 exports.vec3 = require("./gl-matrix/vec3.js"); 37 exports.vec4 = require("./gl-matrix/vec4.js");
|
/external/chromium-trace/trace-viewer/tracing/third_party/mocha/ |
D | mocha.js | 9 if (!mod.exports) { 10 mod.exports = {}; 11 mod.call(mod.exports, mod, mod.exports, require.relative(path)); 13 return mod.exports; 50 require.register("browser/debug.js", function(module, exports, require){ argument 51 module.exports = function(type){ function 58 require.register("browser/diff.js", function(module, exports, require){ argument 426 module.exports = JsDiff; 431 require.register("browser/escape-string-regexp.js", function(module, exports, require){ argument 436 module.exports = function (str) { [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/ |
D | index.js | 3 exports.Parser = require('./lib/tree_construction/parser'); 4 exports.SimpleApiParser = require('./lib/simple_api/simple_api_parser'); 5 exports.TreeSerializer = 6 exports.Serializer = require('./lib/serialization/serializer'); 7 exports.JsDomParser = require('./lib/jsdom/jsdom_parser'); 9 exports.TreeAdapters = {
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/ |
D | serializer_test.js | 9 exports['Backward compatibility - parse5.TreeSerializer'] = function () { function 13 exports['Regression - Get text node\'s parent tagName only if it\'s an Element node (GH-38)'] = { variable 34 exports['Regression - SYSTEM-only doctype serialization'] = function () { 45 exports['Regression - Escaping of doctypes with quotes in them'] = function () { 70 exports['Regression - new line in <pre> tag'] = function () { 93 exports['Options - encodeHtmlEntities'] = function () { 130 TestUtils.generateTestsForEachTreeAdapter(module.exports, function (_test, treeAdapter) {
|
D | jsdom_parser_test.js | 8 exports['State guard'] = function () { function 34 exports['Reentrancy'] = function (done) { 80 TestUtils.generateTestsForEachTreeAdapter(module.exports, function (_test, treeAdapter) {
|
D | parser_test.js | 10 TestUtils.generateTestsForEachTreeAdapter(module.exports, function (_test, treeAdapter) { 111 …exports['Regression - location info for the implicitly generated <body>, <html> and <head> (GH-44)… function 128 exports['Regression - HTML5 Legacy Doctype Misparsed with htmlparser2 tree adapter (GH-45)'] = func… function
|
/external/icu/icu4c/source/test/depstest/ |
D | depstest.py | 94 exports = item.get("exports") 95 if exports != None: return item 99 exports = set() 107 exports |= obj_file["exports"] 108 imports -= exports | _ignored_symbols 122 exports |= dep_exports 124 item["exports"] = exports 126 imports -= exports | system_symbols
|
D | dependencies.py | 118 exports = item.get("system_symbols") 119 if exports == None: exports = item["system_symbols"] = set() 120 exports.add(symbol)
|
/external/v8/src/ |
D | interface.h | 128 ZoneHashMap* exports = Chase()->exports_; in Length() local 129 return exports ? exports->occupancy() : 0; in Length() 163 explicit Iterator(const ZoneHashMap* exports) in Iterator() argument 164 : exports_(exports), entry_(exports ? exports->Start() : NULL) {} in Iterator()
|
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/ |
D | webpack.config.min.js | 22 module.exports = require('./webpack.config.js'); 24 module.exports.plugins.unshift( 28 module.exports.output.filename = 'gl-matrix-min.js';
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/common/ |
D | foreign_content.js | 190 exports.causesExit = function (startTagToken) { 203 exports.adjustTokenMathMLAttrs = function (token) { 212 exports.adjustTokenSVGAttrs = function (token) { 221 exports.adjustTokenXMLAttrs = function (token) { 233 exports.adjustTokenSVGTagName = function (token) { 241 exports.isMathMLTextIntegrationPoint = function (tn, ns) { 245 exports.isHtmlIntegrationPoint = function (tn, ns, attrs) {
|
D | unicode.js | 3 exports.REPLACEMENT_CHARACTER = '\uFFFD'; 5 exports.CODE_POINTS = { 40 exports.CODE_POINT_SEQUENCES = {
|
D | doctype.js | 94 exports.isQuirks = function (name, publicId, systemId) { 121 exports.serializeContent = function (name, publicId, systemId) {
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/ |
D | test_utils.js | 24 exports.generateTestsForEachTreeAdapter = function (moduleExports, ctor) { 37 exports.getStringDiffMsg = function (actual, expected) { 59 exports.removeNewLines = function (str) { 69 exports.loadSerializationTestData = function (dataDirPath) { 89 exports.loadTreeConstructionTestData = function (dataDirs, treeAdapter) { 141 exports.serializeToTestDataFormat = function (rootNode, treeAdapter) { 232 exports.prettyPrintParserAssertionArgs = function (actual, expected) {
|
/external/llvm/test/Object/ |
D | objdump-export-list.test | 1 RUN: llvm-objdump -exports-trie %p/Inputs/macho-no-exports.dylib | FileCheck %s 4 CHECK: macho-no-exports.dylib: file format Mach-O 64-bit x86-64
|
/external/llvm/test/tools/llvm-readobj/ |
D | coff-exports.test | 1 RUN: llvm-readobj -coff-exports %p/Inputs/export-x86.dll | FileCheck %s -check-prefix CHECK -check-… 2 RUN: llvm-readobj -coff-exports %p/Inputs/export-x64.dll | FileCheck %s -check-prefix CHECK -check-… 3 RUN: llvm-readobj -coff-exports %p/Inputs/export-arm.dll | FileCheck %s -check-prefix CHECK -check-…
|
/external/chromium-trace/trace-viewer/tracing/third_party/chai/ |
D | chai.js | 1 …exports={},t),delete t.definition),t.exports}require.loader="component",require.helper={},require.… argument 2 …exports=r;var v=function(e){return"object"==typeof HTMLElement?e instanceof HTMLElement:e&&"object…
|
/external/v8/test/promises-aplus/lib/ |
D | require.js | 33 var exports = {}; 49 return exports;
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/jsdom/ |
D | jsdom_parser.js | 7 exports.parseDocument = function (html, treeAdapter) { 34 exports.parseInnerHtml = function (innerHtml, contextElement, treeAdapter) {
|
/external/llvm/test/tools/llvm-objdump/ |
D | macho-exports-trie.test | 1 # RUN: llvm-objdump -macho -exports-trie -arch x86_64 \ 2 # RUN: %p/Inputs/exports-trie.macho-x86_64 2>/dev/null | FileCheck %s
|
/external/llvm/tools/llvm-shlib/ |
D | CMakeLists.txt | 3 # commandline. By default the shared library only exports the LLVM C API. 54 # nm ${LIB_PATH} | awk "/T _LLVM/ { print $3 }" | sort -u | sed -e "s/^_//g" > ${LIB_PATH}.exports 56 set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_BINARY_DIR}/libllvm.exports) 63 set(LIB_EXPORTS_PATH ${LIB_NAME}.exports)
|
D | Makefile | 23 EXPORTED_SYMBOL_FILE = $(ObjDir)/$(LIBRARYNAME).exports 89 $(ObjDir)/$(LIBRARYNAME).exports: $(SHLIB_FRAGS) $(ObjDir)/.dir 90 $(Echo) Generating exports for $(LIBRARYNAME)
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-3.2 | 17 -no-exports 19 Squashfs now supports NFS exports. By default the additional
|