Searched refs:loc (Results 1 - 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest__locale.py30 def accept(loc):
31 a = loc.split(".")
33 candidate_locales = [loc for loc in candidate_locales if accept(loc)]
71 for loc in candidate_locales:
73 setlocale(LC_NUMERIC, loc)
78 self.numeric_tester('nl_langinfo', nl_langinfo(li), lc, loc)
82 for loc in candidate_locales:
84 setlocale(LC_NUMERIC, loc)
[all...]
H A Dtest_pydoc.py195 loc = doc.getdocloc(pydoc_mod) or ""
196 if loc:
197 loc = "<br><a href=\"" + loc + "\">Module Docs</a>"
198 return output.strip(), loc
203 loc = doc.getdocloc(pydoc_mod) or ""
204 if loc:
205 loc = "\nMODULE DOCS\n " + loc + "\n"
212 return output.strip(), loc
[all...]
H A Dstring_tests.py208 loc = i.find(j)
209 r1 = (loc != -1)
212 if loc != -1:
213 self.assertEqual(i[loc:loc+len(j)], j)
252 loc = i.rfind(j)
253 r1 = (loc != -1)
256 if loc != -1:
257 self.assertEqual(i[loc:loc
[all...]
H A Dtest_support.py874 for loc in locales:
876 locale.setlocale(category, loc)
H A Dpickletester.py35 for loc in locales:
37 locale.setlocale(category, loc)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
H A Dgencjkcodecs.py58 for loc, encodings in codecs.iteritems():
62 owner=loc)
/device/google/contexthub/firmware/os/inc/
H A Dtoolchain.h46 #define PLACE_IN(loc, type, name) _Pragma(PRAGMA_HELPER(location,loc,)) type name
47 #define PLACE_IN_NAKED(loc, type, name) _Pragma(PRAGMA_HELPER(location,loc,)) __task type name
88 #define PLACE_IN(loc, type, name) type __attribute__ ((section(loc))) name
89 #define PLACE_IN_NAKED(loc, type, name) type __attribute__ ((naked, section(loc))) name
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dre.py237 p, loc = _cache[cachekey]
238 if loc is None or loc == _locale.setlocale(_locale.LC_CTYPE):
258 loc = _locale.setlocale(_locale.LC_CTYPE)
260 loc = None
261 _cache[cachekey] = p, loc
/device/generic/goldfish-opengl/system/GLESv1_enc/
H A DGLEncoder.cpp305 int loc = ctx->m_state->getLocation(GL_TEXTURE_COORD_ARRAY); local
306 ctx->m_state->setVertexAttribState(loc, size, type, false, stride, data);
313 int loc = ctx->m_state->getLocation(GL_MATRIX_INDEX_ARRAY_OES); local
314 ctx->m_state->setVertexAttribState(loc, size, type, false, stride, data);
321 int loc = ctx->m_state->getLocation(GL_WEIGHT_ARRAY_OES); local
322 ctx->m_state->setVertexAttribState(loc, size, type, false, stride, data);
329 int loc = ctx->m_state->getLocation(state); local
330 ctx->m_state->enable(loc, 1);
337 int loc = ctx->m_state->getLocation(state); local
338 ctx->m_state->enable(loc,
345 int loc = ctx->m_state->getLocation(cap); local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
H A Dsite.py463 loc = locale.getdefaultlocale()
464 if loc[1]:
465 encoding = loc[1]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
H A Dsite.py452 loc = locale.getdefaultlocale()
453 if loc[1]:
454 encoding = loc[1]
/device/google/contexthub/firmware/os/cpu/cortexm4/
H A Dcpu.c65 void *loc = platGetPersistentRamStore(&bytes); local
67 return bytes >= sizeof(struct RamPersistedDataAndDropbox) ? (struct RamPersistedDataAndDropbox*)loc : NULL;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
H A Dcjkcodecs.h389 #define I_AM_A_MODULE_FOR(loc) \
391 init_codecs_##loc(void) \
393 PyObject *m = Py_InitModule("_codecs_" #loc, __methods);\
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dsite.py495 loc = locale.getdefaultlocale()
496 if loc[1]:
497 encoding = loc[1]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
H A Dcjkcodecs.h389 #define I_AM_A_MODULE_FOR(loc) \
391 init_codecs_##loc(void) \
393 PyObject *m = Py_InitModule("_codecs_" #loc, __methods);\
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
H A DGLClientState.cpp284 int GLClientState::getLocation(GLenum loc) argument
288 switch(loc) {
311 retval = loc;
H A DGLClientState.h220 int getLocation(GLenum loc);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dast.c82 PyObject *type, *value, *tback, *errstr, *loc, *tmp; local
101 loc = PyErr_ProgramText(filename, lineno);
102 if (!loc) {
104 loc = Py_None;
106 tmp = Py_BuildValue("(zlOO)", filename, lineno, Py_None, loc);
107 Py_DECREF(loc);
H A Dcompile.c3226 PyObject *loc; local
3229 loc = PyErr_ProgramText(c->c_filename, c->u->u_lineno);
3230 if (!loc) {
3232 loc = Py_None;
3235 Py_None, loc);
3243 Py_DECREF(loc);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dast.c82 PyObject *type, *value, *tback, *errstr, *loc, *tmp; local
101 loc = PyErr_ProgramText(filename, lineno);
102 if (!loc) {
104 loc = Py_None;
106 tmp = Py_BuildValue("(zlOO)", filename, lineno, Py_None, loc);
107 Py_DECREF(loc);
H A Dcompile.c3206 PyObject *loc; local
3209 loc = PyErr_ProgramText(c->c_filename, c->u->u_lineno);
3210 if (!loc) {
3212 loc = Py_None;
3215 Py_None, loc);
3223 Py_DECREF(loc);
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregcomp.c1909 BitStatusType loc; local
1931 loc = env->capture_history;
1934 if (BIT_STATUS_AT(loc, i)) {

Completed in 378 milliseconds