/external/chromium_org/third_party/libusb/src/libusb/os/ |
D | poll_windows.c | 103 static inline BOOL cancel_io(int _index) in cancel_io() argument 105 if ((_index < 0) || (_index >= MAX_FDS)) { in cancel_io() 109 if ( (poll_fd[_index].fd < 0) || (poll_fd[_index].handle == INVALID_HANDLE_VALUE) in cancel_io() 110 || (poll_fd[_index].handle == 0) || (poll_fd[_index].overlapped == NULL) ) { in cancel_io() 113 if (poll_fd[_index].itransfer && poll_fd[_index].cancel_fn) { in cancel_io() 115 (*poll_fd[_index].cancel_fn)(poll_fd[_index].itransfer); in cancel_io() 119 return (*pCancelIoEx)(poll_fd[_index].handle, poll_fd[_index].overlapped); in cancel_io() 121 if (_poll_fd[_index].thread_id == GetCurrentThreadId()) { in cancel_io() 122 return CancelIo(poll_fd[_index].handle); in cancel_io() 135 static __inline BOOL cancel_io(int _index) in cancel_io() argument [all …]
|
D | windows_usb.c | 262 HDEVINFO *dev_info, SP_DEVINFO_DATA *dev_info_data, const char* usb_class, unsigned _index) in get_devinfo_data() argument 264 if (_index <= 0) { in get_devinfo_data() 272 if (!pSetupDiEnumDeviceInfo(*dev_info, _index, dev_info_data)) { in get_devinfo_data() 275 _index, windows_error_str(0)); in get_devinfo_data() 298 HDEVINFO *dev_info, SP_DEVINFO_DATA *dev_info_data, const GUID* guid, unsigned _index) in get_interface_details() argument 304 if (_index <= 0) { in get_interface_details() 310 if (!pSetupDiEnumDeviceInfo(*dev_info, _index, dev_info_data)) { in get_interface_details() 313 _index, windows_error_str(0)); in get_interface_details() 322 if (!pSetupDiEnumDeviceInterfaces(*dev_info, NULL, guid, _index, &dev_interface_data)) { in get_interface_details() 325 _index, windows_error_str(0)); in get_interface_details() [all …]
|
/external/jmdns/src/javax/jmdns/impl/constants/ |
D | DNSResultCode.java | 99 private final int _index; field in DNSResultCode 103 _index = index; in DNSResultCode() 121 return _index; in indexValue() 131 if (aCode._index == maskedIndex) return aCode; in resultCodeForFlags() 139 if (aCode._index == maskedIndex) return aCode; in resultCodeForFlags()
|
D | DNSOptionCode.java | 36 private final int _index; field in DNSOptionCode 40 _index = index; in DNSOptionCode() 58 return _index; in indexValue() 68 if (aCode._index == maskedIndex) return aCode; in resultCodeForFlags()
|
D | DNSOperationCode.java | 44 private final int _index; field in DNSOperationCode 48 _index = index; in DNSOperationCode() 66 return _index; in indexValue() 76 if (aCode._index == maskedIndex) return aCode; in operationCodeForFlags()
|
D | DNSLabel.java | 37 private final int _index; field in DNSLabel 41 _index = index; in DNSLabel() 59 return _index; in indexValue() 69 if (aLabel._index == maskedIndex) return aLabel; in labelForByte()
|
D | DNSRecordClass.java | 70 private final int _index; field in DNSRecordClass 74 _index = index; in DNSRecordClass() 92 return _index; in indexValue() 127 if (aClass._index == maskedIndex) return aClass; in classForIndex()
|
D | DNSRecordType.java | 255 private final int _index; field in DNSRecordType 259 _index = index; in DNSRecordType() 277 return _index; in indexValue() 301 if (aType._index == index) return aType; in typeForIndex()
|
/external/chromium_org/third_party/closure_compiler/ |
D | processor.py | 80 self._index = 0 83 while self._index < len(self._lines): 84 current_line = self._lines[self._index] 90 self._index += 1 105 self._lines = self._lines[:self._index] + f + self._lines[self._index + 1:]
|
/external/libcxxabi/src/Unwind/ |
D | UnwindRegistersRestore.S | 185 #define LOAD_VECTOR_UNALIGNEDl(_index) \ argument 186 andis. r0,r5,(1<<(15-_index)) @\ 187 beq Ldone ## _index @\ 188 lwz r0, 424+_index*16(r3) @\ 190 lwz r0, 424+_index*16+4(r3) @\ 192 lwz r0, 424+_index*16+8(r3) @\ 194 lwz r0, 424+_index*16+12(r3)@\ 196 lvx v ## _index,0,r4 @\ 197 Ldone ## _index: 199 #define LOAD_VECTOR_UNALIGNEDh(_index) \ argument [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognitionException.cs | 80 private int _index; field in Antlr.Runtime.RecognitionException 147 this._index = input.Index; in RecognitionException() 170 _index = info.GetInt32("Index"); in RecognitionException() 241 return _index; 244 _index = value; 271 info.AddValue("Index", _index); in GetObjectData()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognitionException.cs | 82 private int _index; field in Antlr.Runtime.RecognitionException 156 this._index = input.Index; in RecognitionException() 192 _index = info.GetInt32("Index"); in RecognitionException() 284 return _index; 288 _index = value; 322 info.AddValue("Index", _index); in GetObjectData()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | BufferedTreeNodeStream.cs | 69 int _index; field in Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator 73 _index = -1; in StreamIterator() 80 if (_index < _outer.nodes.Count) 81 return _outer.nodes[_index]; 99 if (_index < _outer.nodes.Count) in MoveNext() 100 _index++; in MoveNext() 102 return _index < _outer.nodes.Count; in MoveNext() 106 _index = -1; in Reset()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | BufferedTreeNodeStream.cs | 72 int _index; field in Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator 77 _index = -1; in StreamIterator() 86 if ( _index < _outer.nodes.Count ) 87 return _outer.nodes[_index]; 107 if ( _index < _outer.nodes.Count ) in MoveNext() 108 _index++; in MoveNext() 110 return _index < _outer.nodes.Count; in MoveNext() 115 _index = -1; in Reset()
|
/external/pixman/pixman/ |
D | pixman-compiler.h | 129 static unsigned tls_ ## name ## _index; \ 136 TlsSetValue (tls_ ## name ## _index, value); \ 158 tls_ ## name ## _index = TlsAlloc (); \ 163 if (tls_ ## name ## _index == 0xFFFFFFFF) \ 165 value = TlsGetValue (tls_ ## name ## _index); \
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
D | HashList.cs | 65 private int _index; field in Antlr.Runtime.Collections.HashList.HashListEnumerator 74 _index = 0; in HashListEnumerator() 85 _index = 0; in HashListEnumerator() 140 _index = 0; in Reset() 170 if (_index < _orderList.Count) in MoveNext() 172 _key = _orderList[_index]; in MoveNext() 174 _index++; in MoveNext()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | CommonToken.as | 46 protected var _index:int = -1; 71 token._index = oldToken.tokenIndex; 150 return _index; 154 _index = index;
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
D | draw_llvm_sample.c | 134 #define DRAW_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ argument 140 return draw_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_tex_sample.c | 139 #define LP_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ argument 145 return lp_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_tex_sample.c | 139 #define LP_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ argument 145 return lp_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_llvm_sample.c | 134 #define DRAW_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ argument 140 return draw_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
D | IndexedDBViews.js | 145 var keyPath = this._isIndex ? this._index.keyPath : this._objectStore.keyPath; 260 this._index = index; 335 …this._model.loadIndexData(this._databaseId, this._objectStore.name, this._index.name, idbKeyRange,…
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeWizard.java | 176 _index(t, m); in index() 181 protected void _index(Object t, Map m) { in _index() method in TreeWizard 195 _index(child, m); in _index()
|
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/ |
D | handlers.c | 383 int32_t var##_index; \ 384 if (GetParamFile(params, index, &var, &var##_index, out_error)) { \ 390 int32_t var##_index; \ 391 if (GetParamDir(params, index, &var, &var##_index, out_error)) { \
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | treewizard.py | 378 self._index(tree, m) 382 def _index(self, t, m): member in TreeWizard 396 self._index(child, m)
|