/prebuilts/go/darwin-x86/src/runtime/ |
type.go | 351 elem *_type 365 elem *_type 372 elem *_type 378 elem *_type 389 elem *_type 587 return typesEqual(at.elem, av.elem, seen) && at.len == av.len 591 return ct.dir == cv.dir && typesEqual(ct.elem, cv.elem, seen) 643 return typesEqual(mt.key, mv.key, seen) && typesEqual(mt.elem, mv.elem, seen [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
type.go | 351 elem *_type 365 elem *_type 372 elem *_type 378 elem *_type 389 elem *_type 587 return typesEqual(at.elem, av.elem, seen) && at.len == av.len 591 return ct.dir == cv.dir && typesEqual(ct.elem, cv.elem, seen) 643 return typesEqual(mt.key, mv.key, seen) && typesEqual(mt.elem, mv.elem, seen [all...] |
/prebuilts/ndk/r16/sources/third_party/vulkan/src/ |
parameter_validation_generator.py | 284 typeElem = typeinfo.elem 310 members = typeinfo.elem.findall('.//member') 332 rawXml = etree.tostring(typeinfo.elem).decode('ascii') 374 groupElem = groupinfo.elem 378 for elem in groupElem.findall('enum'): 379 self.stypes.append(elem.get('name')) 382 for elem in groupElem.findall('enum'): 383 bits.append(elem.get('name')) 405 params = cmdinfo.elem.findall('param') 434 self.commands.append(self.CommandData(name=name, params=paramsInfo, cdecl=self.makeCDecls(cmdinfo.elem)[0]) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/ |
socket.rb | 307 elements.map! do |elem| 308 elem.empty? and next( nil ) 309 case elem 310 when /^\d+$/ then Integer( elem ) 311 when /^\d+\.\d+$/ then Float( elem )
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
shared_prefs.py | 33 elem: An xml ElementTree object holding the preference data. 40 def __init__(self, elem): 41 if elem.tag != type(self).tag_name: 43 (elem.get('name'), elem.tag, type(self).tag_name)) 44 self._elem = elem
|
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
fd2_program.c | 175 struct pipe_vertex_element *elem = &vtx->pipe[i]; local 177 &ctx->vtx.vertexbuf.vb[elem->vertex_buffer_index]; 178 enum pipe_format format = elem->src_format; 197 instr->fetch.offset = elem->src_offset; 210 elem->instance_divisor,
|
/external/valgrind/coregrind/ |
m_xarray.c | 190 Word VG_(addToXA) ( XArray* xa, const void* elem ) 193 vg_assert(elem); 200 elem, xa->elemSzB ); 331 void VG_(insertIndexXA)( XArray* xa, Word n, const void* elem ) 346 elem, xa->elemSzB );
|
/device/google/contexthub/firmware/os/drivers/orientation/ |
orientation.c | 367 initVec3(&g, R.elem[0][2], R.elem[1][2], R.elem[2][2]); 383 initVec3(&g, R.elem[0][2], R.elem[1][2], R.elem[2][2]); 406 float x = atan2f(-R.elem[0][1], R.elem[0][0]) * kRad2deg; 407 float y = atan2f(-R.elem[1][2], R.elem[2][2]) * kRad2deg [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
StylesheetHandler.java | 797 ElemForEach elem = (ElemForEach)m_elems.peek(); local 799 elem.m_doc_cache_off = true; 1681 ElemTemplateElement elem = getElemTemplateElement(); local [all...] |
/external/icu/icu4c/source/tools/toolutil/ |
xmlparser.cpp | 793 const UXMLElement *elem=dynamic_cast<const UXMLElement *>(node); local 794 if(elem!=NULL) { 795 return elem; 814 const UXMLElement *elem=dynamic_cast<const UXMLElement *>(node); local 815 if(elem!=NULL) { 816 if(p==elem->fName) { 817 return elem;
|
/external/tensorflow/tensorflow/core/lib/gtl/ |
inlined_vector.h | 75 // Create a vector with n copies of elem 76 InlinedVector(size_t n, const value_type& elem); 82 // arguments and a call to the preceding (n, elem) constructor. 224 // If "n" is larger than the initial size, enough copies of "elem" 225 // are appended to increase the size to "n". If "elem" is omitted, 228 void resize(size_t n, const value_type& elem) { Resize<Fill>(n, &elem); } 440 // Need to copy elem before discarding src since it might alias src. 453 // elem and the destination to Initializer. We pass the Initializer 457 void Resize(size_t n, const T* elem) { [all...] |
/libcore/ojluni/src/main/java/java/lang/invoke/ |
MethodType.java | [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
misc.c | 282 q = (ForcedToken *) p->elem;
300 q = (ForcedToken *) p->elem;
307 q = (ForcedToken *) p->elem;
576 * Any non-empty list has a sentinel node whose 'elem' pointer is really
594 p->elem = e;
601 sentinel->elem = (char *)p; /* set tail pointer */
605 tail = (ListNode *) (*list)->elem; /* get tail pointer */
607 (*list)->elem = (char *) p; /* reset tail */
630 if (freeData && p->elem != NULL) {
631 free( (char *) p->elem);
[all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerImpl.java | 2482 ElemTemplateElement elem = getCurrentElement(); local [all...] |
/system/core/liblog/tests/ |
liblog_test.cpp | 2428 android_log_list_element elem; local [all...] |
/external/python/cpython2/Lib/test/ |
test_collections.py | 647 for elem in elements: 648 if elem not in self.data: 649 self.data.append(elem) 650 def __contains__(self, elem): 651 return elem in self.data [all...] |
/external/tensorflow/tensorflow/python/ops/ |
array_ops.py | 958 for i, elem in enumerate(list_or_tuple): 959 if ops.is_dense_tensor_like(elem): 960 if dtype is not None and elem.dtype.base_dtype != dtype: 962 "%s to %s (Tensor is: %r)" % (elem.dtype, dtype, 963 elem)) 964 converted_elems.append(elem) 966 elif isinstance(elem, (list, tuple)): 967 converted_elem = _autopacking_helper(elem, dtype, str(i)) 972 converted_elems.append(elem) 975 for i, elem in enumerate(converted_elems) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
ASTTreeParser.stg | 182 <listLabel(elem=label,...)> 206 <listLabel(elem=label,...)> 293 <! <listLabel(elem = "["+label+" getTree]",...)> !> 294 <listLabel(elem = {[<label> getTree]},...)> 312 <listLabel(elem = {[<label> getTree]},...)>
|
/frameworks/base/cmds/incidentd/src/ |
Section.cpp | 734 android_log_list_element elem; local 749 elem = android_log_read_next(context); 751 switch (elem.type) { 753 proto.write(BinaryLogEntry::Elem::TYPE, 754 BinaryLogEntry::Elem::EVENT_TYPE_INT); 755 proto.write(BinaryLogEntry::Elem::VAL_INT32, (int)elem.data.int32); 758 proto.write(BinaryLogEntry::Elem::TYPE, 759 BinaryLogEntry::Elem::EVENT_TYPE_LONG); 760 proto.write(BinaryLogEntry::Elem::VAL_INT64, (long long)elem.data.int64) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/ |
CFG.h | 167 static bool isKind(const CFGElement &elem) { 168 return elem.getKind() == NewAllocator; 190 static bool isKind(const CFGElement &elem) { 191 return elem.getKind() == LoopExit; 212 static bool isKind(const CFGElement &elem) { 213 return elem.getKind() == LifetimeEnds; 259 static bool isKind(const CFGElement &elem) { 260 return elem.getKind() == AutomaticObjectDtor; 283 static bool isKind(const CFGElement &elem) { 284 return elem.getKind() == DeleteDtor [all...] |
/prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/ |
CFG.h | 167 static bool isKind(const CFGElement &elem) { 168 return elem.getKind() == NewAllocator; 190 static bool isKind(const CFGElement &elem) { 191 return elem.getKind() == LoopExit; 212 static bool isKind(const CFGElement &elem) { 213 return elem.getKind() == LifetimeEnds; 259 static bool isKind(const CFGElement &elem) { 260 return elem.getKind() == AutomaticObjectDtor; 283 static bool isKind(const CFGElement &elem) { 284 return elem.getKind() == DeleteDtor [all...] |
/prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Analysis/ |
CFG.h | 167 static bool isKind(const CFGElement &elem) { 168 return elem.getKind() == NewAllocator; 190 static bool isKind(const CFGElement &elem) { 191 return elem.getKind() == LoopExit; 212 static bool isKind(const CFGElement &elem) { 213 return elem.getKind() == LifetimeEnds; 259 static bool isKind(const CFGElement &elem) { 260 return elem.getKind() == AutomaticObjectDtor; 283 static bool isKind(const CFGElement &elem) { 284 return elem.getKind() == DeleteDtor [all...] |
/prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Analysis/ |
CFG.h | 167 static bool isKind(const CFGElement &elem) { 168 return elem.getKind() == NewAllocator; 190 static bool isKind(const CFGElement &elem) { 191 return elem.getKind() == LoopExit; 212 static bool isKind(const CFGElement &elem) { 213 return elem.getKind() == LifetimeEnds; 259 static bool isKind(const CFGElement &elem) { 260 return elem.getKind() == AutomaticObjectDtor; 283 static bool isKind(const CFGElement &elem) { 284 return elem.getKind() == DeleteDtor [all...] |
/prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Analysis/ |
CFG.h | 167 static bool isKind(const CFGElement &elem) { 168 return elem.getKind() == NewAllocator; 190 static bool isKind(const CFGElement &elem) { 191 return elem.getKind() == LoopExit; 212 static bool isKind(const CFGElement &elem) { 213 return elem.getKind() == LifetimeEnds; 259 static bool isKind(const CFGElement &elem) { 260 return elem.getKind() == AutomaticObjectDtor; 283 static bool isKind(const CFGElement &elem) { 284 return elem.getKind() == DeleteDtor [all...] |
/prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Analysis/ |
CFG.h | 167 static bool isKind(const CFGElement &elem) { 168 return elem.getKind() == NewAllocator; 190 static bool isKind(const CFGElement &elem) { 191 return elem.getKind() == LoopExit; 212 static bool isKind(const CFGElement &elem) { 213 return elem.getKind() == LifetimeEnds; 259 static bool isKind(const CFGElement &elem) { 260 return elem.getKind() == AutomaticObjectDtor; 283 static bool isKind(const CFGElement &elem) { 284 return elem.getKind() == DeleteDtor [all...] |