Home
last modified time | relevance | path

Searched refs:m_obj (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Modules/
Dmmapmodule.c117 mmap_object_dealloc(mmap_object *m_obj) in mmap_object_dealloc() argument
120 if (m_obj->data != NULL) in mmap_object_dealloc()
121 UnmapViewOfFile (m_obj->data); in mmap_object_dealloc()
122 if (m_obj->map_handle != NULL) in mmap_object_dealloc()
123 CloseHandle (m_obj->map_handle); in mmap_object_dealloc()
124 if (m_obj->file_handle != INVALID_HANDLE_VALUE) in mmap_object_dealloc()
125 CloseHandle (m_obj->file_handle); in mmap_object_dealloc()
126 if (m_obj->tagname) in mmap_object_dealloc()
127 PyMem_Free(m_obj->tagname); in mmap_object_dealloc()
131 if (m_obj->fd >= 0) in mmap_object_dealloc()
[all …]
/external/python/cpython3/Modules/
Dmmapmodule.c118 mmap_object_dealloc(mmap_object *m_obj) in mmap_object_dealloc() argument
122 if (m_obj->data != NULL) in mmap_object_dealloc()
123 UnmapViewOfFile (m_obj->data); in mmap_object_dealloc()
124 if (m_obj->map_handle != NULL) in mmap_object_dealloc()
125 CloseHandle (m_obj->map_handle); in mmap_object_dealloc()
126 if (m_obj->file_handle != INVALID_HANDLE_VALUE) in mmap_object_dealloc()
127 CloseHandle (m_obj->file_handle); in mmap_object_dealloc()
129 if (m_obj->tagname) in mmap_object_dealloc()
130 PyMem_Free(m_obj->tagname); in mmap_object_dealloc()
135 if (m_obj->fd >= 0) in mmap_object_dealloc()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXStringForChars.java89 fsb.append((char[])m_obj, m_start, m_length); in appendToFsb()
112 m_strCache = new String((char[])m_obj, m_start, m_length); in str()
143 ch.characters((char[])m_obj, m_start, m_length); in dispatchCharactersEvents()
158 lh.comment((char[])m_obj, m_start, m_length); in dispatchAsComment()
187 return ((char[])m_obj)[index+m_start]; in charAt()
213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd); in getChars()
DXObject.java56 protected Object m_obj; // This may be NULL!!! field in XObject
75 m_obj = obj; in setObject()
121 if (null != m_obj) in destruct()
301 return (m_obj != null) ? m_obj.toString() : ""; in str()
399 return m_obj; in object()
476 return (NodeSetDTM) m_obj; in mutableNodeset()
510 result = m_obj; in castToType()
642 if (null != m_obj) in equals()
644 return m_obj.equals(obj2.m_obj); in equals()
648 return obj2.m_obj == null; in equals()
DXNodeSet.java87 setObject(val.m_obj); in XNodeSet()
113 ((NodeSetDTM) m_obj).addNode(n); in XNodeSet()
291 if(null == m_obj) in object()
294 return m_obj; in object()
429 if(m_obj instanceof NodeSetDTM) in mutableNodeset()
431 mnl = (NodeSetDTM) m_obj; in mutableNodeset()
DXBoolean.java135 if(null == m_obj) in object()
137 return m_obj; in object()
DXRTreeFragSelectWrapper.java53 ((Expression)m_obj).fixupVariables(vars, globalsSize); in fixupVariables()
69 m_selected = ((Expression)m_obj).execute(xctxt); in execute()
DXNumber.java379 if(null == m_obj) in object()
381 return m_obj; in object()
DXRTreeFrag.java240 if (m_obj instanceof NodeList) in convertToNodeset()
241 return (NodeList) m_obj; in convertToNodeset()
DXNodeSetForDOM.java46 ((NodeSetDTM) m_obj).addNode(dtmHandle); in XNodeSetForDOM()
DXString.java169 return (null != m_obj) ? ((String) m_obj) : ""; in str()
DXStringForFSB.java90 return ((FastStringBuffer) m_obj); in fsb()
/external/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
DSymbolFileBreakpad.cpp36 : m_obj(&obj), m_section_type(toString(section_type)), in LineIterator()
46 : m_obj(&obj), in LineIterator()
47 m_next_section_idx(m_obj->GetSectionList()->GetNumSections(0)), in LineIterator()
52 assert(lhs.m_obj == rhs.m_obj); in operator !=()
71 ObjectFile *m_obj; member in SymbolFileBreakpad::LineIterator
91 : m_obj(&obj), m_section_type(toString(section_type)), in LineIterator()
107 const SectionList &list = *m_obj->GetSectionList(); in operator ++()
121 m_obj->ReadSectionData(&sect, data); in operator ++()
/external/tensorflow/tensorflow/python/keras/
Dmetrics_test.py1305 m_obj = metrics.MeanIoU(num_classes=2, name='mean_iou')
1306 self.assertEqual(m_obj.name, 'mean_iou')
1307 self.assertEqual(m_obj.num_classes, 2)
1309 m_obj2 = metrics.MeanIoU.from_config(m_obj.get_config())
1317 m_obj = metrics.MeanIoU(num_classes=2)
1318 self.evaluate(variables.variables_initializer(m_obj.variables))
1320 result = m_obj(y_true, y_pred)
1334 m_obj = metrics.MeanIoU(num_classes=2)
1335 self.evaluate(variables.variables_initializer(m_obj.variables))
1337 result = m_obj(y_true, y_pred, sample_weight=sample_weight)
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DXUnresolvedVariableSimple.java55 Expression expr = ((ElemVariable)m_obj).getSelect().getExpression(); in execute()
DXUnresolvedVariable.java120 ElemVariable velem = (ElemVariable)m_obj; in execute()
/external/llvm-project/compiler-rt/lib/asan/scripts/
Dasan_symbolize.py889 m_obj = matcher.match(line)
890 if not m_obj:
892 arch = m_obj.group('arch')
893 start_addr = int(m_obj.group('start_addr'), base=16)
894 end_addr = int(m_obj.group('end_addr'), base=16)
895 module_path = m_obj.group('path')
896 uuid = m_obj.group('uuid')