Home
last modified time | relevance | path

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

12

/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/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/google/dragon/audio/hal/
Ddictionary.h106 char * dictionary_get(dictionary * d, const char * key, char * def);
Diniparser.h155 char * iniparser_getstring(dictionary * d, const char * key, char * def);
Diniparser.c368 char * iniparser_getstring(dictionary * d, const char * key, char * def) in iniparser_getstring() argument
374 return def ; in iniparser_getstring()
377 sval = dictionary_get(d, lc_key, def); in iniparser_getstring()
Ddictionary.c175 char * dictionary_get(dictionary * d, const char * key, char * def) in dictionary_get() argument
192 return def ; in dictionary_get()
/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/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/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/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()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Ddescrobject.c749 PyObject *key, *def = Py_None; in proxy_get() local
751 if (!PyArg_UnpackTuple(args, "get", 1, 2, &key, &def)) in proxy_get()
753 return PyObject_CallMethod(pp->dict, "get", "(OO)", key, def); in proxy_get()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar25 funcdef: 'def' NAME parameters ':' suite
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt37 funcdef: 'def' NAME parameters ['->' test] ':' suite

12