/external/chromium_org/third_party/cython/src/Cython/Utility/ |
D | ObjectHandling.c | 250 #define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \ argument 252 __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) : \ 253 (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) : \ 257 #define __Pyx_GetItemInt_{{type}}(o, i, type, is_signed, to_py_func, is_list, wraparound, boundsche… 268 int is_list, int wraparound, int boundscheck); 298 int is_list, int wraparound, int boundscheck) { 300 if (is_list || PyList_CheckExact(o)) { 335 if (is_list || PySequence_Check(o)) { 344 #define __Pyx_SetItemInt(o, i, v, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \ 346 __Pyx_SetItemInt_Fast(o, (Py_ssize_t)i, v, is_list, wraparound, boundscheck) : \ [all …]
|
D | StringTools.c | 274 #define __Pyx_GetItemInt_ByteArray(o, i, type, is_signed, to_py_func, is_list, wraparound, boundsch… argument 304 #define __Pyx_SetItemInt_ByteArray(o, i, v, type, is_signed, to_py_func, is_list, wraparound, bound… argument 336 #define __Pyx_GetItemInt_Unicode(o, i, type, is_signed, to_py_func, is_list, wraparound, boundschec… argument
|
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
D | reg_writer.py | 50 is_list = policy['type'] in ('list', 'string-enum-list') 52 return (is_list, policy['name'])
|
/external/mesa3d/src/glsl/ |
D | s_expression.h | 69 virtual bool is_list() const { return false; } in is_list() function 141 virtual bool is_list() const { return true; } in is_list() function
|
D | s_expression.cpp | 182 case LIST: if (expr->is_list()) *p_list = (s_list *) expr; break; in match()
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
D | s_expression.h | 69 virtual bool is_list() const { return false; } in is_list() function 141 virtual bool is_list() const { return true; } in is_list() function
|
D | s_expression.cpp | 182 case LIST: if (expr->is_list()) *p_list = (s_list *) expr; break; in match()
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
D | xcodeproj_file.py | 480 (is_list, property_type, is_strong) = attributes[0:3] 482 if not is_list: 762 (is_list, property_type, is_strong) = self._schema[property][0:3] 763 if is_list: 816 if not is_list: 842 (is_list, property_type, is_strong) = self._schema[key][0:3] 843 if not is_list: 870 (is_list, property_type, is_strong, is_required) = attributes[0:4] 880 (is_list, property_type, is_strong, is_required) = attributes[0:4]
|
/external/chromium_org/components/search_engines/ |
D | default_search_policy_handler.cc | 32 bool is_list = policy_value->GetAsList(&policy_list); in SetListInPref() local 33 DCHECK(is_list); in SetListInPref()
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | Optimize.py | 2492 node, function, args, is_unbound_method, is_list=True) 2494 …def _handle_simple_method_object_pop(self, node, function, args, is_unbound_method, is_list=False): argument 2501 if is_list: 2520 if is_list or isinstance(index, ExprNodes.IntNode):
|
D | ExprNodes.py | 3407 is_list = self.base.type is list_type 3418 is_list, wraparound, boundscheck)
|