HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 1 - 25 of 673) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr6/
script.py 1 import module namespace
  /external/v8/test/mjsunit/asm/
redundancy1.js 7 function module(stdlib, foreign, heap) { function
23 var foo = module(this, {}, new ArrayBuffer(64*1024)).foo;
redundancy2.js 7 function module(stdlib, foreign, heap) { function
28 var foo = module(this, {}, new ArrayBuffer(64*1024)).foo;
  /external/v8/test/mjsunit/compiler/
regress-439743.js 5 function module(stdlib, foreign, heap) { function
16 var foo = module(this, {}, new ArrayBuffer(64*1024)).foo;
  /external/v8/test/mjsunit/regress/
regress-458876.js 5 function module() { function
14 var foo = module();
regress-crbug-527364.js 7 function module() { function
24 var boom = module().f;
  /bionic/tests/libs/
Android.build.pthread_atfork.mk 23 module := libtest_pthread_atfork macro
Android.build.dlopen_check_order_reloc_main_executable.mk 30 module := libtest_check_order_reloc_root_1 macro
42 module := libtest_check_order_reloc_root_2 macro
55 module := libtest_check_order_reloc_root macro
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/
karma-config.js 0 module.exports = function(config) {
karma-config-ci.js 0 module.exports = function(config) {
  /external/chromium-trace/catapult/tracing/third_party/css-element-queries/
Gruntfile.js 2 module.exports = function(grunt) {
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
named_entity_trie.js 6 module.exports = {65:{l:{69:{l:{108:{l:{105:{l:{103:{l:{59:{c:[198]}},c:[198]}}}}}}},77:{l:{80:{l:{59:{c: (…)
    [all...]
  /external/v8/test/mjsunit/wasm/
calls.js 9 var module = (function () {
35 // Check the module exists.
36 assertFalse(module === undefined);
37 assertFalse(module === null);
38 assertFalse(module === 0);
39 assertEquals("object", typeof module);
42 var mem = module.memory;
49 module.memory = 0; // should be ignored
50 assertEquals(mem, module.memory);
53 assertEquals(4096, module.memory.byteLength)
139 var module = _WASMEXP_.instantiateModule(data); variable
    [all...]
  /system/extras/simpleperf/runtest/
Android.mk 19 module := simpleperf_runtest_one_function macro
23 module := simpleperf_runtest_two_functions macro
27 module := simpleperf_runtest_function_fork macro
31 module := simpleperf_runtest_function_pthread macro
35 module := simpleperf_runtest_comm_change macro
39 module := simpleperf_runtest_function_recursive macro
43 module := simpleperf_runtest_function_indirect_recursive macro
  /hardware/bsp/intel/peripheral/libupm/doxy/node/generators/yuidoc/
helper.js 50 moduleClasses[classes[i].module].push(i);
52 for (var module in moduleClasses) {
53 var classIndices = moduleClasses[module];
71 modulesByGroup[group].push(module);
73 modulesByGroup[group] = [module];
142 module.exports = {
  /external/autotest/client/site_tests/hardware_VideoDecodeCapable/src/
setup_vaapi.py 5 """Script to set up vaapi extension module.
9 module = Extension('vaapi', variable
13 setup(name = 'vaapi', version = '1.0', ext_modules = [module])
setup_vaapi_drm.py 5 """Script to set up vaapi extension module.
9 module = Extension('vaapi', variable
14 setup(name = 'vaapi', version = '1.0', ext_modules = [module])
  /external/autotest/utils/named_semaphore/
setup.py 4 module = distutils.core.Extension("namedsem", sources=["namedsem.c"]) variable
8 ext_modules=[module])
  /bootable/recovery/update_verifier/
update_verifier.cpp 50 SLOGE("Error getting bootctrl module.\n");
54 boot_control_module_t* module = reinterpret_cast<boot_control_module_t*>( local
56 module->init(module);
58 unsigned current_slot = module->getCurrentSlot(module);
59 int is_successful= module->isSlotMarkedSuccessful(module, current_slot);
71 int ret = module->markBootSuccessful(module);
    [all...]
  /build/core/tasks/
deps_licenses.mk 32 # Expand a module's dependencies transitively.
34 # $(2): the initial module name.
35 define get-module-all-dependencies
39 $(call get-module-all-dependencies,$(1),$(_gmad_new)))
47 $(eval $(call get-module-all-dependencies,deps,$(m)))\
  /external/hyphenation-patterns/
Android.mk 65 define build-one-pattern-module
79 $(foreach l, $(pattern_locales), $(call build-one-pattern-module, $(dir $(l)), $(notdir $l)))
80 build-one-pattern-module :=
  /external/libxml2/
testModule.c 45 xmlModulePtr module = NULL; local
48 /* build the module filename, and confirm the module exists */
54 module = xmlModuleOpen((const char*)filename, 0);
55 if (module)
57 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
68 xmlModuleClose(module);
79 printf("%s : Module support not compiled in\n", argv[0]);
  /external/noto-fonts/
Android.mk 21 # It also serves as the module name and the dest file name.
23 define build-one-font-module
44 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
187 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
188 build-one-font-module :=
  /external/opencv3/3rdparty/libtiff/
tif_dumpmode.c 80 static const char module[] = "DumpModeDecode"; local
84 TIFFErrorExt(tif->tif_clientdata, module,
90 TIFFErrorExt(tif->tif_clientdata, module,
  /external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/
dllmain.cpp 32 Module<InProc>::GetModule().Create();
36 Module<InProc>::GetModule().Terminate();
44 auto &module = Microsoft::WRL::Module< Microsoft::WRL::InProc >::GetModule(); local
45 return module.GetActivationFactory( activatibleClassId, factory );
50 auto &module = Microsoft::WRL::Module<Microsoft::WRL::InProc>::GetModule(); local
51 return (module.Terminate()) ? S_OK : S_FALSE;
56 auto &module = Microsoft::WRL::Module<Microsoft::WRL::InProc>::GetModule() local
    [all...]

Completed in 1325 milliseconds

1 2 3 4 5 6 7 8 91011>>