Home
last modified time | relevance | path

Searched defs:sub (Results 1 – 25 of 26) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
Dsplit.h63 PyObject *sub; in stringlib_split_whitespace() local
112 PyObject *sub; in stringlib_split_char() local
154 PyObject *list, *sub; in stringlib_split() local
202 PyObject *sub; in stringlib_rsplit_whitespace() local
253 PyObject *sub; in stringlib_rsplit_char() local
296 PyObject *list, *sub; in stringlib_rsplit() local
354 PyObject *sub; in stringlib_splitlines() local
Dfind.h12 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_find()
32 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_rfind()
67 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_find_slice()
76 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_rfind_slice()
86 stringlib_contains_obj(PyObject* str, PyObject* sub) in stringlib_contains_obj()
Dcount.h12 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_count()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
Dsplit.h63 PyObject *sub; in stringlib_split_whitespace() local
112 PyObject *sub; in stringlib_split_char() local
154 PyObject *list, *sub; in stringlib_split() local
202 PyObject *sub; in stringlib_rsplit_whitespace() local
253 PyObject *sub; in stringlib_rsplit_char() local
296 PyObject *list, *sub; in stringlib_rsplit() local
354 PyObject *sub; in stringlib_splitlines() local
Dfind.h12 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_find()
32 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_rfind()
67 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_find_slice()
76 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_rfind_slice()
86 stringlib_contains_obj(PyObject* str, PyObject* sub) in stringlib_contains_obj()
Dcount.h12 const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, in stringlib_count()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DUserString.py65 def count(self, sub, start=0, end=sys.maxint): argument
87 def find(self, sub, start=0, end=sys.maxint): argument
89 def index(self, sub, start=0, end=sys.maxint): argument
109 def rfind(self, sub, start=0, end=sys.maxint): argument
111 def rindex(self, sub, start=0, end=sys.maxint): argument
157 def __setitem__(self, index, sub): argument
193 def __setslice__(self, start, end, sub): argument
Dre.py144 def sub(pattern, repl, string, count=0, flags=0): function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dstropmodule.c101 char *s, *sub; in strop_splitfields() local
306 char *s, *sub; in strop_find() local
349 char *s, *sub; in strop_rfind() local
676 char *s, *sub; in strop_count() local
1091 const char *sub, Py_ssize_t sub_len, /* substitution string */ in mymemreplace()
1165 char *str, *pat,*sub,*new_s; in strop_replace() local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dstropmodule.c101 char *s, *sub; in strop_splitfields() local
306 char *s, *sub; in strop_find() local
349 char *s, *sub; in strop_rfind() local
674 char *s, *sub; in strop_count() local
1089 const char *sub, Py_ssize_t sub_len, /* substitution string */ in mymemreplace()
1163 char *str, *pat,*sub,*new_s; in strop_replace() local
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dfset.c580 ( Junction *alt1, Junction *alt2, char *sub, Tree *ambig ) in ensure_predicates_cover_ambiguous_lookahead_sequences()
674 void MR_doPredicatesHelp(int inGuessBlock,Junction *alt1,Junction *alt2,int jtype,char *sub) in MR_doPredicatesHelp()
936 char *sub = ""; local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dmailerdaemon.py91 def emparse_list(fp, sub): argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_defaultdict.py153 class sub(defaultdict): class
Dtest_typechecks.py14 def __subclasscheck__(cls, sub): argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dre.py148 def sub(pattern, repl, string, count=0, flags=0): function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dmsvccompiler.py148 def sub(self, s): member in MacroExpander
Dmsvc9compiler.py167 def sub(self, s): member in MacroExpander
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dstringobject.c1440 const char *s = PyString_AS_STRING(self), *sub; in string_split() local
1539 const char *s = PyString_AS_STRING(self), *sub; in string_rsplit() local
1693 const char *sub; in string_find_internal() local
2106 const char *str = PyString_AS_STRING(self), *sub; in string_count() local
2852 const char* sub; in _string_tailmatch() local
Dbytearrayobject.c2065 const char *s = PyByteArray_AS_STRING(self), *sub; in bytearray_split() local
2158 const char *s = PyByteArray_AS_STRING(self), *sub; in bytearray_rsplit() local
Dunicodeobject.c5303 PyObject *sub, in PyUnicode_Find()
6231 PyObject *str, *sub; in PyUnicode_Contains() local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dstringobject.c1457 const char *s = PyString_AS_STRING(self), *sub; in string_split() local
1556 const char *s = PyString_AS_STRING(self), *sub; in string_rsplit() local
1710 const char *sub; in string_find_internal() local
2123 const char *str = PyString_AS_STRING(self), *sub; in string_count() local
2871 const char* sub; in _string_tailmatch() local
Dbytearrayobject.c2069 const char *s = PyByteArray_AS_STRING(self), *sub; in bytearray_split() local
2162 const char *s = PyByteArray_AS_STRING(self), *sub; in bytearray_rsplit() local
Dunicodeobject.c5398 PyObject *sub, in PyUnicode_Find()
6326 PyObject *str, *sub; in PyUnicode_Contains() local
/device/google/contexthub/firmware/os/core/
Dseos.c1230 static bool osEventsSubscribeUnsubscribeV(bool sub, uint32_t numEvts, va_list ap) in osEventsSubscribeUnsubscribeV()
1255 static bool osEventsSubscribeUnsubscribe(bool sub, uint32_t numEvts, ...) in osEventsSubscribeUnsubscribe()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcompile.c3391 slice_ty sub = (slice_ty)asdl_seq_GET( in compiler_visit_slice() local

12