HomeSort by relevance Sort by last modified time
    Searched refs:co (Results 151 - 175 of 508) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/PC/VS7.1/
rt.bat 7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
  /external/python/cpython2/PC/VS8.0/
rt.bat 7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
  /external/python/cpython2/Python/
ceval.c 667 PyEval_EvalCode(PyCodeObject *co, PyObject *globals, PyObject *locals)
669 return PyEval_EvalCodeEx(co,
803 PyCodeObject *co; local
937 assert(STACK_LEVEL() <= co->co_stacksize); }
942 assert(STACK_LEVEL() <= co->co_stacksize); }
1012 co = f->f_code;
1013 names = co->co_names;
1014 consts = co->co_consts;
1016 freevars = f->f_localsplus + co->co_nlocals;
1017 first_instr = (unsigned char*) PyString_AS_STRING(co->co_code)
4403 PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); local
    [all...]
  /external/python/cpython3/Modules/
itertoolsmodule.c 2381 combinationsobject *co; local
2720 cwrobject *co; local
    [all...]
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_secy_ops.h 28 enum confidentiality_offset co);
ieee802_1x_secy_ops.c 109 enum confidentiality_offset co)
111 kay->co = co;
235 return ops->create_receive_sc(ops->ctx, rxsc, kay->vf, kay->co);
360 return ops->create_transmit_sc(ops->ctx, txsc, kay->co);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
BaseInputView.java 2 * Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
17 package jp.co.omronsoft.openwnn;
WnnDictionary.java 2 * Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
17 package jp.co.omronsoft.openwnn;
23 * @author Copyright (C) 2008-2009, OMRON SOFTWARE CO., LTD. All Rights Reserved.
179 * @see jp.co.omronsoft.openwnn.WnnDictionary#APPROX_PATTERN_EN_TOUPPER
180 * @see jp.co.omronsoft.openwnn.WnnDictionary#APPROX_PATTERN_EN_TOLOWER
181 * @see jp.co.omronsoft.openwnn.WnnDictionary#APPROX_PATTERN_EN_QWERTY_NEAR
182 * @see jp.co.omronsoft.openwnn.WnnDictionary#APPROX_PATTERN_EN_QWERTY_NEAR_UPPER
215 * @see jp.co.omronsoft.openwnn.WnnDictionary#SEARCH_EXACT
216 * @see jp.co.omronsoft.openwnn.WnnDictionary#SEARCH_PREFIX
218 * @see jp.co.omronsoft.openwnn.WnnDictionary#ORDER_BY_FREQUENC
    [all...]
WnnWord.java 2 * Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
17 package jp.co.omronsoft.openwnn;
22 * @author Copyright (C) 2008-2009, OMRON SOFTWARE CO., LTD. All Rights Reserved.
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
RomkanFullKatakana.java 2 * Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
17 package jp.co.omronsoft.openwnn.JAJP;
19 import jp.co.omronsoft.openwnn.LetterConverter;
20 import jp.co.omronsoft.openwnn.ComposingText;
21 import jp.co.omronsoft.openwnn.StrSegment;
28 * @author Copyright (C) 2009 OMRON SOFTWARE CO., LTD. All Rights Reserved.
58 put("ge", "\u30b2"); put("co", "\u30b3"); put("ko", "\u30b3");
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DevicePolicyManagerServiceTestable.java 102 ContentObserver co = mMockInjector.mContentObservers.get(new Pair<>(uri, userHandle)); local
103 if (co != null) {
104 co.onChange(false, uri, userHandle); // notify synchronously
108 co = mMockInjector.mContentObservers.get(new Pair<>(uri, UserHandle.USER_ALL));
109 if (co != null) {
110 co.onChange(false, uri, userHandle); // notify synchronously
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities.h 484 double sp,so,sk,om_sp2,om_so2,om_sk2,cp,co,ck,sp_so,cp_so; local
493 co=(om_so2>=0.0)?sqrt(om_so2):1.0;
498 R[0]=sp_so*sk+cp*ck; R[1]=co*sk; R[2]=cp_so*sk-sp*ck;
499 R[3]=sp_so*ck-cp*sk; R[4]=co*ck; R[5]=cp_so*ck+sp*sk;
500 R[6]=sp*co; R[7]= -so; R[8]=cp*co;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
inspect.py 744 def getargs(co):
751 if not iscode(co):
752 raise TypeError('{!r} is not a code object'.format(co))
754 nargs = co.co_argcount
755 names = co.co_varnames
763 while step < len(co.co_code):
764 op = ord(co.co_code[step])
768 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
794 if co.co_flags & CO_VARARGS:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
inspect.py 741 def getargs(co):
748 if not iscode(co):
749 raise TypeError('{!r} is not a code object'.format(co))
751 nargs = co.co_argcount
752 names = co.co_varnames
760 while step < len(co.co_code):
761 op = ord(co.co_code[step])
765 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
791 if co.co_flags & CO_VARARGS:
    [all...]
  /external/python/cpython2/Lib/
inspect.py 743 def getargs(co):
750 if not iscode(co):
751 raise TypeError('{!r} is not a code object'.format(co))
753 nargs = co.co_argcount
754 names = co.co_varnames
762 while step < len(co.co_code):
763 op = ord(co.co_code[step])
767 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
793 if co.co_flags & CO_VARARGS
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
inspect.py 743 def getargs(co):
750 if not iscode(co):
751 raise TypeError('{!r} is not a code object'.format(co))
753 nargs = co.co_argcount
754 names = co.co_varnames
762 while step < len(co.co_code):
763 op = ord(co.co_code[step])
767 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
793 if co.co_flags & CO_VARARGS
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
inspect.py 743 def getargs(co):
750 if not iscode(co):
751 raise TypeError('{!r} is not a code object'.format(co))
753 nargs = co.co_argcount
754 names = co.co_varnames
762 while step < len(co.co_code):
763 op = ord(co.co_code[step])
767 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
793 if co.co_flags & CO_VARARGS
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 743 def getargs(co):
750 if not iscode(co):
751 raise TypeError('{!r} is not a code object'.format(co))
753 nargs = co.co_argcount
754 names = co.co_varnames
762 while step < len(co.co_code):
763 op = ord(co.co_code[step])
767 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
793 if co.co_flags & CO_VARARGS
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 743 def getargs(co):
750 if not iscode(co):
751 raise TypeError('{!r} is not a code object'.format(co))
753 nargs = co.co_argcount
754 names = co.co_varnames
762 while step < len(co.co_code):
763 op = ord(co.co_code[step])
767 value = ord(co.co_code[step]) + ord(co.co_code[step+1])*256
793 if co.co_flags & CO_VARARGS
    [all...]
  /external/python/cpython2/PC/os2emx/
Makefile 525 find ../../Lib -name "*.py[co]" -exec rm {} ";"
698 -find ../../Lib -name "*.py[co]" -exec rm {} ";"
  /external/python/cpython3/Lib/test/
test_opcodes.py 29 co = compile(txt, ann_module.__file__, 'exec')
30 self.assertEqual(co.co_firstlineno, 6)
  /cts/tests/openglperf2/
cob_exporter.py 50 v = vertex.co.xyz
  /external/python/cpython2/PC/VS9.0/
rt.bat 7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
  /external/python/cpython2/PCbuild/
rt.bat 7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
  /external/python/cpython3/Include/
code.h 129 PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject* co,

Completed in 1215 milliseconds

1 2 3 4 5 67 8 91011>>