OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fieldlist
(Results
1 - 3
of
3
) sorted by null
/external/python/cpython2/Modules/_ctypes/
stgdict.c
193
PyObject *
fieldlist
;
local
198
fieldlist
= PySequence_Fast(fields, "_fields_ must be a sequence");
200
if (
fieldlist
== NULL)
203
for (i = 0; i < PySequence_Fast_GET_SIZE(
fieldlist
); ++i) {
204
PyObject *pair = PySequence_Fast_GET_ITEM(
fieldlist
, i); /* borrowed */
210
Py_DECREF(
fieldlist
);
215
Py_DECREF(
fieldlist
);
221
Py_DECREF(
fieldlist
);
230
Py_DECREF(
fieldlist
);
238
Py_DECREF(
fieldlist
);
[
all
...]
/external/python/cpython3/Modules/_ctypes/
stgdict.c
209
PyObject *
fieldlist
;
local
214
fieldlist
= PySequence_Fast(fields, "_fields_ must be a sequence");
216
if (
fieldlist
== NULL)
219
for (i = 0; i < PySequence_Fast_GET_SIZE(
fieldlist
); ++i) {
220
PyObject *pair = PySequence_Fast_GET_ITEM(
fieldlist
, i); /* borrowed */
226
Py_DECREF(
fieldlist
);
231
Py_DECREF(
fieldlist
);
237
Py_DECREF(
fieldlist
);
246
Py_DECREF(
fieldlist
);
254
Py_DECREF(
fieldlist
);
[
all
...]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DescriptorsTest.java
519
List<FieldDescriptor>
fieldlist
= desc.getFields();
local
520
assertNotNull(
fieldlist
);
521
assertTrue(
fieldlist
.size() == 1);
522
assertTrue(
fieldlist
.get(0).getType() == FieldDescriptor.Type.MESSAGE);
523
assertTrue(
fieldlist
.get(0).getMessageType().getName().equals("Foo"));
714
List<FieldDescriptor>
fieldlist
= desc.getFields();
local
715
assertNotNull(
fieldlist
);
716
assertTrue(
fieldlist
.size() == 1);
717
FieldDescriptor field =
fieldlist
.get(0);
[
all
...]
Completed in 2475 milliseconds