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

1 2 34 5 6 7 8 91011>>

  /external/freetype/src/autofit/
afglobal.h 114 AF_Module module; /* to access global properties */ member in struct:AF_FaceGlobalsRec_
127 AF_Module module );
  /external/google-breakpad/src/common/
dwarf_cfi_to_module_unittest.cc 43 using google_breakpad::Module;
59 : module("module name", "module os", "module arch", "module id"),
61 handler(&module, register_names, &reporter) {
79 Module module; member in struct:DwarfCFIToModuleFixture
83 vector<Module::StackFrameEntry *> entries
    [all...]
  /external/libxml2/
xmlmodule.c 2 * xmlmodule.c : basic API for dynamic module loading added 2.6.17
33 * module memory error handler *
44 xmlModuleErrMemory(xmlModulePtr module, const char *extra)
48 if (module != NULL) {
49 name = (const char *) module->name;
60 * @name: the module name
63 * Opens a module/shared library given its name or path
70 * Returns a handle for the module or NULL in case of error
75 xmlModulePtr module; local
77 module = (xmlModulePtr) xmlMalloc(sizeof(xmlModule))
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_printf.c 63 LLVMModuleRef module = gallivm->module; local
65 LLVMValueRef func = LLVMAddFunction(module, "test_printf", LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), args, 1, 0));
  /external/opencv3/3rdparty/libtiff/
tif_next.c 51 static const char module[] = "NeXTDecode"; local
71 TIFFErrorExt(tif->tif_clientdata, module, "Fractional scanlines cannot be read");
137 TIFFErrorExt(tif->tif_clientdata, module, "Not enough data for scanline %ld",
  /external/pdfium/third_party/libtiff/
tif_next.c 51 static const char module[] = "NeXTDecode"; local
71 TIFFErrorExt(tif->tif_clientdata, module, "Fractional scanlines cannot be read");
141 TIFFErrorExt(tif->tif_clientdata, module, "Not enough data for scanline %ld",
149 static const char module[] = "NeXTPreDecode"; local
155 TIFFErrorExt(tif->tif_clientdata, module, "Unsupported BitsPerSample = %d",
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DefaultPlacement.cpp 99 void CBC_DefaultPlacement::module(int32_t row, function in class:CBC_DefaultPlacement
116 module(row - 2, col - 2, pos, 1);
117 module(row - 2, col - 1, pos, 2);
118 module(row - 1, col - 2, pos, 3);
119 module(row - 1, col - 1, pos, 4);
120 module(row - 1, col, pos, 5);
121 module(row, col - 2, pos, 6);
122 module(row, col - 1, pos, 7);
123 module(row, col, pos, 8);
126 module(m_numrows - 1, 0, pos, 1);
    [all...]
  /external/v8/test/cctest/wasm/
test-run-wasm-js.cc 27 static uint32_t AddJsFunction(TestingModule* module, FunctionSig* sig,
31 module->AddFunction(sig, Handle<Code>::null());
32 uint32_t index = static_cast<uint32_t>(module->module->functions->size() - 1);
34 Handle<Code> code = CompileWasmToJSWrapper(isolate, module, jsfunc, index);
35 module->function_code->at(index) = code;
40 static Handle<JSFunction> WrapCode(ModuleEnv* module, uint32_t index) {
41 Isolate* isolate = module->module->shared_isolate;
45 Handle<Code> code = module->function_code->at(index)
74 TestingModule module; local
86 TestingModule module; local
98 TestingModule module; local
110 TestingModule module; local
128 TestingModule module; local
    [all...]
  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl.h 34 void WakeUp(Module* module) override;
37 void RegisterModule(Module* module) override;
38 void DeRegisterModule(Module* module) override;
46 ModuleCallback() : module(nullptr), next_callback(0) {}
48 : module(cb.module), next_callback(cb.next_callback) {}
49 ModuleCallback(Module* module) : module(module), next_callback(0) {
54 Module* const module; member in struct:webrtc::ProcessThreadImpl::ModuleCallback
    [all...]
  /frameworks/av/soundtrigger/
ISoundTriggerHwService.cpp 82 sp<ISoundTrigger>& module)
94 module = interface_cast<ISoundTrigger>(reply.readStrongBinder());
158 sp<ISoundTrigger> module; local
159 status_t status = attach(handle, client, module);
161 if (module != 0) {
163 reply->writeStrongBinder(IInterface::asBinder(module));
  /frameworks/base/data/fonts/
Android.mk 80 # It also serves as the module name and the dest file name.
81 define build-one-font-module
94 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
96 build-one-font-module :=
  /frameworks/compile/libbcc/bcinfo/
BitcodeTranslator.cpp 32 #include "llvm/IR/Module.h"
128 llvm::ErrorOr<llvm::Module *> MOrErr(nullptr);
145 // Module ownership is handled by the context, so we don't need to free it.
146 llvm::Module *module = MOrErr.get(); local
152 llvm_3_2::WriteBitcodeToFile(module, OS);
  /packages/apps/Camera2/src/com/android/camera/module/
ModuleController.java 17 package com.android.camera.module;
40 * Initializes the module.
49 * Resumes the module. Always call this method whenever it's being put in
55 * Pauses the module. Always call this method whenever it's being put in the
61 * Destroys the module. Always call this method to release the resources used
62 * by this module.
94 * Called by the app when the camera is available. The module should use
102 * Called by the app on startup or module switches, this allows the module
109 * based on the module's open camera device
    [all...]
ModulesInfo.java 17 package com.android.camera.module;
41 * A class holding the module information and registers them to
89 // capture module is using OneCamera. At some point we'll
90 // refactor all modules to use OneCamera, then the new module
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
bz2_codec.py 11 import bz2 # this codec needs the optional bz2 module ! namespace
91 ### encodings module API
zlib_codec.py 10 import zlib # this codec needs the optional zlib module ! namespace
91 ### encodings module API
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pickle.py 22 module = pickle variable in class:PickleTests
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
bz2_codec.py 11 import bz2 # this codec needs the optional bz2 module ! namespace
91 ### encodings module API
zlib_codec.py 10 import zlib # this codec needs the optional zlib module ! namespace
91 ### encodings module API
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pickle.py 22 module = pickle variable in class:PickleTests
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
bz2_codec.py 11 import bz2 # this codec needs the optional bz2 module ! namespace
91 ### encodings module API
zlib_codec.py 10 import zlib # this codec needs the optional zlib module ! namespace
91 ### encodings module API
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pickle.py 22 module = pickle variable in class:PickleTests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
bz2_codec.py 11 import bz2 # this codec needs the optional bz2 module ! namespace
91 ### encodings module API
zlib_codec.py 10 import zlib # this codec needs the optional zlib module ! namespace
91 ### encodings module API

Completed in 551 milliseconds

1 2 34 5 6 7 8 91011>>