Home
last modified time | relevance | path

Searched refs:def (Results 1 – 25 of 47) sorted by relevance

12

/device/generic/goldfish-opengl/system/codecs/omx/plugin/
DGoldfishVideoDecoderOMXComponent.cpp102 OMX_PARAM_PORTDEFINITIONTYPE def; in initPorts() local
103 InitOMXParams(&def); in initPorts()
105 def.nPortIndex = kInputPortIndex; in initPorts()
106 def.eDir = OMX_DirInput; in initPorts()
107 def.nBufferCountMin = numMinInputBuffers; in initPorts()
108 def.nBufferCountActual = numInputBuffers; in initPorts()
109 def.nBufferSize = inputBufferSize; in initPorts()
110 def.bEnabled = OMX_TRUE; in initPorts()
111 def.bPopulated = OMX_FALSE; in initPorts()
112 def.eDomain = OMX_PortDomainVideo; in initPorts()
[all …]
DSimpleGoldfishOMXComponent.h74 void addPort(const OMX_PARAM_PORTDEFINITIONTYPE &def);
DSimpleGoldfishOMXComponent.cpp719 void SimpleGoldfishOMXComponent::addPort(const OMX_PARAM_PORTDEFINITIONTYPE &def) { in addPort() argument
720 CHECK_EQ(def.nPortIndex, mPorts.size()); in addPort()
724 info->mDef = def; in addPort()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dcommand_template25 def initialize_options (self):
33 def finalize_options (self):
40 def run (self):
/device/google/sunfish/vibrator/common/
Dutils.h85 inline Enable_If_Signed<T, T> getProperty(const std::string &key, const T def) { in getProperty() argument
86 return base::GetIntProperty(key, def); in getProperty()
90 inline Enable_If_Unsigned<T, T> getProperty(const std::string &key, const T def) { in getProperty() argument
91 return base::GetUintProperty(key, def); in getProperty()
95 inline bool getProperty<bool>(const std::string &key, const bool def) {
96 return base::GetBoolProperty(key, def);
/device/google/trout/agl_services_build/yocto-layer/meta-google/recipes-trout/agl-services/
Dcommon.inc15 def trout_compile_targets(d):
20 def trout_do_install(d):
Dsources.inc17 def trout_git_uri(d, remote, name, path, revision):
53 def force_create_symlink(src, dst):
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlauxlib.h39 const char *def, size_t *l);
41 LUALIB_API lua_Number (luaL_optnumber) (lua_State *L, int nArg, lua_Number def);
45 lua_Integer def);
48 lua_Unsigned def);
62 LUALIB_API int (luaL_checkoption) (lua_State *L, int narg, const char *def,
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlauxlib.c320 LUALIB_API int luaL_checkoption (lua_State *L, int narg, const char *def, in luaL_checkoption() argument
322 const char *name = (def) ? luaL_optstring(L, narg, def) : in luaL_checkoption()
365 const char *def, size_t *len) { in luaL_optlstring() argument
368 *len = (def ? strlen(def) : 0); in luaL_optlstring()
369 return def; in luaL_optlstring()
384 LUALIB_API lua_Number luaL_optnumber (lua_State *L, int narg, lua_Number def) { in luaL_optnumber() argument
385 return luaL_opt(L, luaL_checknumber, narg, def); in luaL_optnumber()
408 lua_Integer def) { in luaL_optinteger() argument
409 return luaL_opt(L, luaL_checkinteger, narg, def); in luaL_optinteger()
414 lua_Unsigned def) { in luaL_optunsigned() argument
[all …]
Dloadlib.c638 const char *envname2, const char *def) { in setpath() argument
643 lua_pushstring(L, def); /* use default */ in setpath()
648 luaL_gsub(L, path, AUXMARK, def); in setpath()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/comparisons/
Dpatterns1 ^def
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtokenize_tests.txt146 def d22(a, b, c=1, d=2): pass
147 def d01v(a=1, *restt, **restd): pass
177 def foo(): pass
Dieee754.txt14 >>> def equal(x, y):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
DREADME.txt11 def leak():
12 def inner_leak():
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DC.g69 def printTokenInfo(self, line, offset, tokenText):
72 def StorePredicateExpression(self, StartLine, StartOffset, EndLine, EndOffset, Text):
76 def StoreEnumerationDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
80 def StoreStructUnionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
84 def StoreTypedefDefinition(self, StartLine, StartOffset, EndLine, EndOffset, FromText, ToText):
88def StoreFunctionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, ModifierText, DeclTe…
92def StoreVariableDeclaration(self, StartLine, StartOffset, EndLine, EndOffset, ModifierText, DeclT…
96 def StoreFunctionCalling(self, StartLine, StartOffset, EndLine, EndOffset, FuncName, ParamList):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
DREADME86 def __init__(self): ...
87 def _close(self): ...
91 def __init__(self, address):
95 def _close(self):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Dmeta-vladimir.txt35 def method1(self, *args): pass # method1 of A
36 def method2(self, *args): pass # method2 of A
92 def method2(self, arg1): pass # method2 is redefined
93 def method3(self, *args): pass # additional method3
164 def method1(self, *args): pass # method1 of M
165 def method2(self, *args): pass # method2 of M
225 def method2(self, arg1): pass # method2 is redefined
226 def method3(self, *args): pass # additional method3
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
DREADME37 ifdef.py Remove #if(n)def groups from C sources
44 methfix.py Fix old method syntax def f(self, (a1, ..., aN)):
47 nm2def.py Create a template for PC/python_nt.def (Marc Lemburg)
/device/linaro/bootloader/arm-trusted-firmware/lib/compiler-rt/builtins/
Dassembly.h59 .def name SEPARATOR \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
D_sre.c3208 match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def) in match_getslice_by_index() argument
3223 Py_INCREF(def); in match_getslice_by_index()
3224 return def; in match_getslice_by_index()
3256 match_getslice(MatchObject* self, PyObject* index, PyObject* def) in match_getslice() argument
3258 return match_getslice_by_index(self, match_getindex(self, index), def); in match_getslice()
3312 PyObject* def = Py_None; in match_groups() local
3314 if (!PyArg_ParseTupleAndKeywords(args, kw, "|O:groups", kwlist, &def)) in match_groups()
3323 item = match_getslice_by_index(self, index, def); in match_groups()
3341 PyObject* def = Py_None; in match_groupdict() local
3343 if (!PyArg_ParseTupleAndKeywords(args, kw, "|O:groupdict", kwlist, &def)) in match_groupdict()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_sre.c3208 match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def) in match_getslice_by_index() argument
3223 Py_INCREF(def); in match_getslice_by_index()
3224 return def; in match_getslice_by_index()
3256 match_getslice(MatchObject* self, PyObject* index, PyObject* def) in match_getslice() argument
3258 return match_getslice_by_index(self, match_getindex(self, index), def); in match_getslice()
3312 PyObject* def = Py_None; in match_groups() local
3314 if (!PyArg_ParseTupleAndKeywords(args, kw, "|O:groups", kwlist, &def)) in match_groups()
3323 item = match_getslice_by_index(self, index, def); in match_groups()
3341 PyObject* def = Py_None; in match_groupdict() local
3343 if (!PyArg_ParseTupleAndKeywords(args, kw, "|O:groupdict", kwlist, &def)) in match_groupdict()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
D_sre.c3289 match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def) in match_getslice_by_index() argument
3304 Py_INCREF(def); in match_getslice_by_index()
3305 return def; in match_getslice_by_index()
3337 match_getslice(MatchObject* self, PyObject* index, PyObject* def) in match_getslice() argument
3339 return match_getslice_by_index(self, match_getindex(self, index), def); in match_getslice()
3393 PyObject* def = Py_None; in match_groups() local
3395 if (!PyArg_ParseTupleAndKeywords(args, kw, "|O:groups", kwlist, &def)) in match_groups()
3404 item = match_getslice_by_index(self, index, def); in match_groups()
3422 PyObject* def = Py_None; in match_groupdict() local
3424 if (!PyArg_ParseTupleAndKeywords(args, kw, "|O:groupdict", kwlist, &def)) in match_groupdict()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcodecs.c769 PyMethodDef def; in _PyCodecRegistry_Init() member
841 PyObject *func = PyCFunction_New(&methods[i].def, NULL); in _PyCodecRegistry_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcodecs.c786 PyMethodDef def; in _PyCodecRegistry_Init() member
858 PyObject *func = PyCFunction_New(&methods[i].def, NULL); in _PyCodecRegistry_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Ddescrobject.c712 PyObject *key, *def = Py_None; in proxy_get() local
714 if (!PyArg_UnpackTuple(args, "get", 1, 2, &key, &def)) in proxy_get()
716 return PyObject_CallMethod(pp->dict, "get", "(OO)", key, def); in proxy_get()

12