/external/lzma/CPP/7zip/UI/FileManager/ |
D | BrowseDialog.cpp | 92 NControl::CListView _list; member in CBrowseDialog 129 if (!_list.GetItemParam(indexInListView, param)) in GetRealItemIndex() 186 _list.Attach(GetItem(IDL_BROWSE)); in OnInit() 196 _list.SetUnicodeFormat(); in OnInit() 203 _list.SetExtendedListViewStyle(LVS_EX_ONECLICKACTIVATE | LVS_EX_TRACKSELECT); in OnInit() 226 _list.SetImageList(GetSysImageList(true), LVSIL_SMALL); in OnInit() 227 _list.SetImageList(GetSysImageList(false), LVSIL_NORMAL); in OnInit() 229 _list.InsertColumn(0, LangString(IDS_PROP_NAME), 100); in OnInit() 230 _list.InsertColumn(1, LangString(IDS_PROP_MTIME), 100); in OnInit() 239 _list.InsertColumn(2, &column); in OnInit() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | regalloc-reconcile-broken-hints.ll | 12 %struct._list = type { i32*, %struct._list* } 43 define %struct._list* @make_list(i32* nocapture readonly %data, i32* nocapture %value, i32* nocaptu… 47 %tmp = bitcast i8* %next to %struct._list** 48 %tmp2 = bitcast i8* %call to %struct._list* 54 %current.077 = phi %struct._list* [ %tmp2, %entry ], [ %current.1.lcssa, %for.inc32 ] 59 …%current.173 = phi %struct._list* [ %current.2, %if.end31 ], [ %current.077, %for.cond1.preheader ] 98 %next7 = getelementptr inbounds %struct._list, %struct._list* %current.173, i64 0, i32 1 99 %tmp14 = load %struct._list*, %struct._list** %next7, align 8 100 %next12 = getelementptr inbounds %struct._list, %struct._list* %tmp14, i64 0, i32 1 101 store %struct._list* null, %struct._list** %next12, align 8 [all …]
|
/external/kmod/libkmod/python/kmod/ |
D | module.pyx | 23 cimport list as _list namespace 24 import list as _list namespace 42 cpdef from_mod_list_item(self, _list.ModListItem item): 80 cdef _list.ModList ml = _list.ModList() 81 cdef _list.ModListItem mli 88 mli = <_list.ModListItem> item 101 cdef _list.ModList ml = _list.ModList() 102 cdef _list.ModListItem mli 108 mli = <_list.ModListItem> item
|
D | kmod.pyx | 25 cimport list as _list namespace 26 import list as _list namespace 62 cdef _list.ModList ml = _list.ModList() 63 cdef _list.ModListItem mli 68 mli = <_list.ModListItem> item 75 cdef _list.ModList ml = _list.ModList() 76 cdef _list.ModListItem mli 84 mli = <_list.ModListItem> item
|
D | module.pxd | 18 cimport list as _list namespace 24 cpdef from_mod_list_item(self, _list.ModListItem item)
|
/external/swiftshader/third_party/LLVM/test/Transforms/GlobalOpt/ |
D | 2006-11-01-ShrinkGlobalPhiCrash.ll | 3 %struct._list = type { i32*, %struct._list* } 4 %struct._play = type { i32, i32*, %struct._list*, %struct._play* }
|
/external/llvm/test/Transforms/GlobalOpt/ |
D | 2006-11-01-ShrinkGlobalPhiCrash.ll | 3 %struct._list = type { i32*, %struct._list* } 4 %struct._play = type { i32, i32*, %struct._list*, %struct._play* }
|
/external/python/cpython2/Demo/pdist/ |
D | FSProxy.py | 173 def _list(self, function, list): member in FSProxyLocal 185 return self._list(self.sum, list) 188 return self._list(self.stat, list) 191 return self._list(self.mtime, list) 194 return self._list(self.size, list) 197 return self._list(self.info, list)
|
D | RCSProxy.py | 84 return self._list(self.sum, list) 115 def _list(self, function, list = None): member in RCSProxyLocal
|
/external/python/cpython2/Lib/test/ |
D | test_index.py | 185 self._list = list(iterable) 188 return repr(self._list) 191 return self._list == other 194 return len(self._list) 197 return self.__class__(self._list*n) 201 return self._list[index] 207 return self._list.__getslice__(i, j)
|
/external/clang/test/Rewriter/ |
D | modern-write-bf-abi.mm | 32 id *_list; field 49 newArray->_list = 0; 50 return *newArray->_list;
|
/external/protobuf/cmake/ |
D | install.cmake | 51 set(_list) variable 60 list(APPEND _list "${_item}") 64 set(${VARIABLE} ${_list} PARENT_SCOPE)
|
/external/eigen/cmake/ |
D | FindLAPACK.cmake | 31 # given by _list. If the combination is found, this macro checks (using the 40 macro(check_lapack_libraries DEFINITIONS LIBRARIES _prefix _name _flags _list _blas _path) 41 #message("DEBUG: check_lapack_libraries(${_list} in ${_path} with ${_blas})") 43 # Check for the existence of the libraries given by _list 49 foreach(_library ${_list}) 79 endforeach(_library ${_list})
|
D | FindBLAS.cmake | 168 macro(Check_Fortran_Libraries LIBRARIES _prefix _name _flags _list _thread) 170 # given by _list. If the combination is found, this macro checks (using the 238 message("${Cyan}Try to find BLAS libraries: ${_list}") 241 foreach(_library ${_list}) 274 endforeach(_library ${_list})
|
/external/openssh/ |
D | addrmatch.c | 377 addr_match_list(const char *addr, const char *_list) in addr_match_list() argument 388 if ((o = list = strdup(_list)) == NULL) in addr_match_list() 437 addr_match_cidr_list(const char *addr, const char *_list) in addr_match_cidr_list() argument 448 if ((o = list = strdup(_list)) == NULL) in addr_match_cidr_list()
|
/external/squashfs-tools/squashfs-tools/ |
D | caches-queues-lists.h | 28 void insert_##NAME##_list(TYPE **list, TYPE *entry) { \ 42 void remove_##NAME##_list(TYPE **list, TYPE *entry) { \
|
/external/clang/test/SemaObjC/ |
D | property-method-lookup-impl.m | 6 id _list; field
|
/external/libunwind/doc/ |
D | unw_create_addr_space.tex | 59 \Type{int} \Func{get\_dyn\_info\_list\_addr}(\Type{unw\_addr\_space\_t} \Var{as},\\ 113 \subsection{get\_dyn\_info\_list\_addr} 115 \Prog{Libunwind} invokes the \Func{get\_dyn\_info\_list\_addr}() 118 have a type of \Type{unw\_dyn\_info\_list\_t} (see 124 value returned by \Func{get\_dyn\_info\_list\_addr}() if caching is 128 On successful completion, the \Func{get\_dyn\_info\_list\_addr}()
|
D | unw_step.tex | 51 \Func{find\_proc\_info}(), \Func{get\_dyn\_info\_list\_addr}(),
|
D | libunwind-ptrace.tex | 27 \Type{int} \Func{\_UPT\_get\_dyn\_info\_list\_addr}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t~…
|
/external/protobuf/python/google/protobuf/internal/ |
D | message_test.py | 854 self._list = values or [] 857 size = len(self._list) 861 return bool(self._list[0]) 865 return len(self._list) 868 return self._list.__iter__()
|
/external/kmod/libkmod/ |
D | libkmod-module.c | 501 #define CHECK_ERR_AND_FINISH(_err, _label_err, _list, label_finish) \ argument 505 if (*(_list) != NULL) \
|
/external/v8/src/ast/ |
D | ast.h | 3139 auto _list = (list); \ 3141 AST_REWRITE(Type, _list->at(_index), _list->Set(_index, replacement)); \
|
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/ |
D | breakpad_unittests.sym | 122 FILE 120 /s/clank/src/third_party/android_tools/ndk/sources/cxx-stl/stlport/stlport/stl/_list.c 123 FILE 121 /s/clank/src/third_party/android_tools/ndk/sources/cxx-stl/stlport/stlport/stl/_list.h 148 …146 /s/clank/src/third_party/android_tools/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/_list.h
|
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/D6D1FEC9A15DE7F38A236898871A2E770/ |
D | breakpad_unittests.sym | 117 FILE 115 /s/clank/src/third_party/android_tools/ndk/sources/cxx-stl/stlport/stlport/stl/_list.c 118 FILE 116 /s/clank/src/third_party/android_tools/ndk/sources/cxx-stl/stlport/stlport/stl/_list.h 143 …141 /s/clank/src/third_party/android_tools/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/_list.h
|