HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 201 - 225 of 435) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
qunit.js 49 if (this.module != config.previousModule) {
58 config.previousModule = this.module;
61 name: this.module
157 sessionStorage.setItem("qunit-" + this.module + "-" + this.testName, bad);
159 sessionStorage.removeItem("qunit-" + this.module + "-" + this.testName);
242 var bad = QUnit.config.reorder && defined.sessionStorage && +sessionStorage.getItem("qunit-" + this.module + "-" + this.testName);
254 // call on start of module test to prepend name to all tests
255 module: function(name, testEnvironment) {
283 name = '<span class="module-name">' + config.currentModule + "</span>: " + name;
291 test.module = config.currentModule
    [all...]
  /external/chromium_org/third_party/codesighs/
nm2tsv.c 152 char* module = NULL; local
173 module = strrchr(lineBuffer, '/');
174 if(NULL == module)
176 module = lineBuffer;
180 *module = '\0';
181 module++;
245 ** Module name, segment.
247 fprintf(inOptions->mOutput, "%s\t", module);
253 fprintf(inOptions->mOutput, "UNDEF:%s:%c\t", module, toupper(*type));
  /external/chromium_org/third_party/jinja2/
sandbox.py 36 warnings.filterwarnings('ignore', 'the sets module', DeprecationWarning,
37 module='jinja2.sandbox') variable
274 affect the `unsafe` decorator from this module.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 34 * out into from the SoA code into a common module and shared.
1099 LLVMModuleRef module = LLVMGetGlobalParent( local
1101 LLVMDumpModule(module);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_arit.c 255 LLVMModuleRef module = gallivm->module; local
258 LLVMValueRef func = LLVMAddFunction(module, test->name,
lp_test_conv.c 104 LLVMModuleRef module = gallivm->module; local
119 func = LLVMAddFunction(module, "test",
  /external/chromium_org/third_party/skia/src/utils/win/
SkWGL_win.cpp 163 HMODULE module = GetModuleHandle(NULL); local
177 wc.hInstance = module;
201 module,
203 UnregisterClass(DUMMY_CLASS, module);
213 HMODULE module = GetModuleHandle(NULL); local
214 UnregisterClass(DUMMY_CLASS, module);
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.h 33 char *module; member in struct:__tsan::ReportStack
71 char *module; member in struct:__tsan::ReportLocation
  /external/grub/docs/
multiboot.h 98 /* The module structure. */
99 typedef struct module struct
  /external/kernel-headers/original/linux/
binfmts.h 57 struct module *module; member in struct:linux_binfmt
personality.h 103 struct module *module; /* module context of the ed. */ member in struct:exec_domain
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 34 * out into from the SoA code into a common module and shared.
1099 LLVMModuleRef module = LLVMGetGlobalParent( local
1101 LLVMDumpModule(module);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 255 LLVMModuleRef module = gallivm->module; local
258 LLVMValueRef func = LLVMAddFunction(module, test->name,
lp_test_conv.c 104 LLVMModuleRef module = gallivm->module; local
119 func = LLVMAddFunction(module, "test",
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 3 * Dealing with the kernel and kernel module samples
29 /* kernel module */
40 /* kernel and module support */
73 * opd_create_module - allocate and initialise a module description
74 * @param name module name
81 struct opd_module * module = xmalloc(sizeof(struct opd_module)); local
83 module->name = xstrdup(name);
84 module->image = NULL;
85 module->start = start;
86 module->end = end
101 struct opd_module * module; local
117 struct opd_module * module; local
324 struct opd_module * module; local
354 struct opd_module * module; local
413 struct opd_module * module; local
    [all...]
  /external/skia/src/utils/win/
SkWGL_win.cpp 163 HMODULE module = GetModuleHandle(NULL); local
177 wc.hInstance = module;
201 module,
203 UnregisterClass(DUMMY_CLASS, module);
213 HMODULE module = GetModuleHandle(NULL); local
214 UnregisterClass(DUMMY_CLASS, module);
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dec_defs.h 54 ; Define module specific macros here
56 #define module(x, POW2) ((x)&(POW2-1)) macro
98 ; Declare variables used in this module but defined elsewhere
  /hardware/libhardware/modules/audio/
audio_policy.c 31 struct audio_policy_module module; member in struct:default_ap_module
310 static int default_ap_dev_open(const hw_module_t* module, const char* name,
326 dev->device.common.module = (hw_module_t *)module;
341 .module = {
  /hardware/libhardware_legacy/audio/
audio_policy_hal.cpp 37 struct audio_policy_module module; member in struct:android_audio_legacy::legacy_ap_module
431 static int legacy_ap_dev_open(const hw_module_t* module, const char* name,
445 dev->device.common.module = const_cast<hw_module_t*>(module);
460 module: {
  /hardware/qcom/audio/legacy/alsa_sound/
audio_policy_hal.cpp 37 struct audio_policy_module module; member in struct:android_audio_legacy::qcom_ap_module
422 static int qcom_ap_dev_open(const hw_module_t* module, const char* name,
436 dev->device.common.module = const_cast<hw_module_t*>(module);
451 module: {
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Android.cpp 64 int getIonFd(gralloc_module_t const *module)
66 private_module_t* m = const_cast<private_module_t*>(reinterpret_cast<const private_module_t*>(module));
296 gralloc_module_t* module = NULL; local
305 hw_get_module(GRALLOC_HARDWARE_MODULE_ID, (const hw_module_t **)&module);
312 ion_decRef(getIonFd(module), phREF->SharedBuffer[i].pIonHandle);
314 ion_decRef(getIonFd(module), phREF->SharedBuffer[i].pIonHandle1);
316 ion_decRef(getIonFd(module), phREF->SharedBuffer[i].pIonHandle2);
368 gralloc_module_t* module = NULL; local
381 hw_get_module(GRALLOC_HARDWARE_MODULE_ID, (const hw_module_t **)&module);
386 ion_incRef(getIonFd(module), priv_hnd->fd, &pIonHandle)
436 gralloc_module_t* module = NULL; local
    [all...]
  /hardware/samsung_slsi/exynos5/gralloc/
gralloc.cpp 69 int fb_device_open(const hw_module_t* module, const char* name,
72 static int gralloc_device_open(const hw_module_t* module, const char* name,
75 extern int gralloc_lock(gralloc_module_t const* module,
80 extern int gralloc_unlock(gralloc_module_t const* module,
83 extern int gralloc_register_buffer(gralloc_module_t const* module,
86 extern int gralloc_unregister_buffer(gralloc_module_t const* module,
102 name: "Graphics Memory Allocator Module",
351 (dev->common.module);
352 gralloc_module_t* module = reinterpret_cast<gralloc_module_t*> local
353 (dev->common.module);
387 gralloc_module_t* module = reinterpret_cast<gralloc_module_t*>( local
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_rt.c 460 unsigned long module = eModuleAndFlags & PERF_ModuleMask; local
465 if (me->detailed < 2 && module == PERF_ModuleHLMM)
467 module = PERF_ModuleLLMM;
474 ((module == PERF_ModuleHardware || module == PERF_ModuleLLMM)));
485 if (module >= PERF_ModuleCommonLayer &&
486 module <= PERF_ModuleSocketNode)
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_h264_enc/src/
omx_proxy_h264enc.c 855 hw_module_t const* module = NULL; local
859 nErr = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
863 *hCC = (void *) ((IMG_gralloc_module_public_t const *)module);
868 %s module err = %x", GRALLOC_HARDWARE_MODULE_ID, nErr);
871 gralloc_open(module, &(pProxy->mAllocDev));
882 IMG_gralloc_module_public_t const* module = hCC; local
887 nErr = module->Blit(module, pSrc[0], pDst, HAL_PIXEL_FORMAT_TI_NV12);
891 nErr = module->Blit2(module, pSrc[0], pDst[0], nWidth, nHeight, 0, 0)
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_mpeg4_enc/src/
omx_proxy_mpeg4enc.c 842 hw_module_t const* module = NULL; local
846 nErr = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
850 *hCC = (void *) ((IMG_gralloc_module_public_t const *)module);
855 %s module err = %x", GRALLOC_HARDWARE_MODULE_ID, nErr);
858 gralloc_open(module, &(pProxy->mAllocDev));
869 IMG_gralloc_module_public_t const* module = hCC; local
874 nErr = module->Blit(module, pSrc[0], pDst, HAL_PIXEL_FORMAT_TI_NV12);
879 nErr = module->Blit2(module, pSrc[0], pDst[0], nWidth, nHeight, 0, 0)
    [all...]

Completed in 1860 milliseconds

1 2 3 4 5 6 7 891011>>