/external/opencv3/3rdparty/include/dshow/ |
D | control.h | 141 HRESULT (WINAPI *QueryInterface)(IAMCollection *This,REFIID riid,void **ppvObject); 142 ULONG (WINAPI *AddRef)(IAMCollection *This); 143 ULONG (WINAPI *Release)(IAMCollection *This); 144 HRESULT (WINAPI *GetTypeInfoCount)(IAMCollection *This,UINT *pctinfo); 145 HRESULT (WINAPI *GetTypeInfo)(IAMCollection *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo); 146 …HRESULT (WINAPI *GetIDsOfNames)(IAMCollection *This,REFIID riid,LPOLESTR *rgszNames,UINT cNames,LC… 147 …HRESULT (WINAPI *Invoke)(IAMCollection *This,DISPID dispIdMember,REFIID riid,LCID lcid,WORD wFlags… 148 HRESULT (WINAPI *get_Count)(IAMCollection *This,LONG *plCount); 149 HRESULT (WINAPI *Item)(IAMCollection *This,long lItem,IUnknown **ppUnk); 150 HRESULT (WINAPI *get__NewEnum)(IAMCollection *This,IUnknown **ppUnk); [all …]
|
D | strmif.h | 14 #error This stub requires an updated version of <rpcndr.h> 742 HRESULT (WINAPI *QueryInterface)(ICreateDevEnum *This,REFIID riid,void **ppvObject); 743 ULONG (WINAPI *AddRef)(ICreateDevEnum *This); 744 ULONG (WINAPI *Release)(ICreateDevEnum *This); 745 …HRESULT (WINAPI *CreateClassEnumerator)(ICreateDevEnum *This,REFCLSID clsidDeviceClass,IEnumMonike… 752 #define ICreateDevEnum_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid… argument 753 #define ICreateDevEnum_AddRef(This) (This)->lpVtbl->AddRef(This) argument 754 #define ICreateDevEnum_Release(This) (This)->lpVtbl->Release(This) argument 755 …ateDevEnum_CreateClassEnumerator(This,clsidDeviceClass,ppEnumMoniker,dwFlags) (This)->lpVtbl->Crea… argument 758 …HRESULT WINAPI ICreateDevEnum_CreateClassEnumerator_Proxy(ICreateDevEnum *This,REFCLSID clsidDevic… [all …]
|
D | amvideo.h | 146 IDirectDrawVideo* This, 151 IDirectDrawVideo* This); 154 IDirectDrawVideo* This); 158 IDirectDrawVideo* This, 162 IDirectDrawVideo* This, 166 IDirectDrawVideo* This, 170 IDirectDrawVideo* This, 174 IDirectDrawVideo* This, 178 IDirectDrawVideo* This, 183 IDirectDrawVideo* This, [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBIDataWrapper.java | 167 RBBIDataWrapper This = new RBBIDataWrapper(); in get() local 170 This.isBigEndian = bytes.order() == ByteOrder.BIG_ENDIAN; in get() 173 This.fHeader = new RBBIDataHeader(); in get() 174 This.fHeader.fMagic = bytes.getInt(); in get() 178 This.fHeader.fVersion = bytes.getInt(bytes.position()); in get() 179 This.fHeader.fFormatVersion[0] = bytes.get(); in get() 180 This.fHeader.fFormatVersion[1] = bytes.get(); in get() 181 This.fHeader.fFormatVersion[2] = bytes.get(); in get() 182 This.fHeader.fFormatVersion[3] = bytes.get(); in get() 183 This.fHeader.fLength = bytes.getInt(); in get() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBIDataWrapper.java | 168 RBBIDataWrapper This = new RBBIDataWrapper(); in get() local 171 This.isBigEndian = bytes.order() == ByteOrder.BIG_ENDIAN; in get() 174 This.fHeader = new RBBIDataHeader(); in get() 175 This.fHeader.fMagic = bytes.getInt(); in get() 179 This.fHeader.fVersion = bytes.getInt(bytes.position()); in get() 180 This.fHeader.fFormatVersion[0] = bytes.get(); in get() 181 This.fHeader.fFormatVersion[1] = bytes.get(); in get() 182 This.fHeader.fFormatVersion[2] = bytes.get(); in get() 183 This.fHeader.fFormatVersion[3] = bytes.get(); in get() 184 This.fHeader.fLength = bytes.getInt(); in get() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | uspoof.cpp | 215 SpoofImpl *This = SpoofImpl::validateThis(sc, status); in uspoof_close() local 216 delete This; in uspoof_close() 222 SpoofImpl *This = SpoofImpl::validateThis(sc, *status); in uspoof_setChecks() local 223 if (This == NULL) { in uspoof_setChecks() 234 This->fChecks = checks; in uspoof_setChecks() 240 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status); in uspoof_getChecks() local 241 if (This == NULL) { in uspoof_getChecks() 244 return This->fChecks; in uspoof_getChecks() 250 SpoofImpl *This = SpoofImpl::validateThis(sc, status); in uspoof_setRestrictionLevel() local 251 if (This != NULL) { in uspoof_setRestrictionLevel() [all …]
|
D | uspoof_build.cpp | 73 SpoofImpl *This = new SpoofImpl(newSpoofData, *status); in uspoof_openFromSource() local 76 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource() 77 buildWSConfusableData(This, confusablesWholeScript, confusablesWholeScriptLen, pe, *status); in uspoof_openFromSource() 80 delete This; in uspoof_openFromSource() 81 This = NULL; in uspoof_openFromSource() 83 return (USpoofChecker *)This; in uspoof_openFromSource()
|
/external/icu/icu4c/source/common/ |
D | udatamem.c | 26 U_CFUNC void UDataMemory_init(UDataMemory *This) { in UDataMemory_init() argument 27 uprv_memset(This, 0, sizeof(UDataMemory)); in UDataMemory_init() 28 This->length=-1; in UDataMemory_init() 40 UDataMemory *This; in UDataMemory_createNewInstance() local 45 This = uprv_malloc(sizeof(UDataMemory)); in UDataMemory_createNewInstance() 46 if (This == NULL) { in UDataMemory_createNewInstance() 49 UDataMemory_init(This); in UDataMemory_createNewInstance() 50 This->heapAllocated = TRUE; in UDataMemory_createNewInstance() 52 return This; in UDataMemory_createNewInstance() 84 U_CFUNC void UDataMemory_setData (UDataMemory *This, const void *dataAddr) { in UDataMemory_setData() argument [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Trie2.java | 128 Trie2 This; in createFromSerialized() local 131 This = new Trie2_16(); in createFromSerialized() 134 This = new Trie2_32(); in createFromSerialized() 136 This.header = header; in createFromSerialized() 139 This.indexLength = header.indexLength; in createFromSerialized() 140 This.dataLength = header.shiftedDataLength << UTRIE2_INDEX_SHIFT; in createFromSerialized() 141 This.index2NullOffset = header.index2NullOffset; in createFromSerialized() 142 This.dataNullOffset = header.dataNullOffset; in createFromSerialized() 143 This.highStart = header.shiftedHighStart << UTRIE2_SHIFT_1; in createFromSerialized() 144 This.highValueIndex = This.dataLength - UTRIE2_DATA_GRANULARITY; in createFromSerialized() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Trie2.java | 126 Trie2 This; in createFromSerialized() local 129 This = new Trie2_16(); in createFromSerialized() 132 This = new Trie2_32(); in createFromSerialized() 134 This.header = header; in createFromSerialized() 137 This.indexLength = header.indexLength; in createFromSerialized() 138 This.dataLength = header.shiftedDataLength << UTRIE2_INDEX_SHIFT; in createFromSerialized() 139 This.index2NullOffset = header.index2NullOffset; in createFromSerialized() 140 This.dataNullOffset = header.dataNullOffset; in createFromSerialized() 141 This.highStart = header.shiftedHighStart << UTRIE2_SHIFT_1; in createFromSerialized() 142 This.highValueIndex = This.dataLength - UTRIE2_DATA_GRANULARITY; in createFromSerialized() [all …]
|
/external/icu/icu4c/source/test/testdata/ |
D | ra.txt | 23 * @note This resource is for test2 31 * @note This resource is for TestTable 37 * @note This resource is for test3 43 * @note This resource is for test4 49 * @note This resource is for test5 55 * @note This resource is for test6 62 * @note This resource is for Tag name: Array 68 * @note This resource is un-named string 74 * @note This resource is un-named int 80 * @note This resource is for un-named binary [all …]
|
/external/curl/tests/data/ |
D | test575 | 104 This file should have permissions 444 105 This file should have permissions 666 106 This file should have permissions 777 107 This is content of file "file.txt" 108 Some junk ;-) This file does not really exist. 109 This file should have permissions 444 110 This file should have permissions 666 111 This file should have permissions 777 112 This is content of file "file.txt" 113 Some junk ;-) This file does not really exist. [all …]
|
D | test1113 | 87 This file should have permissions 444 88 This file should have permissions 666 89 This file should have permissions 777 90 This is content of file "file.txt" 91 Some junk ;-) This file does not really exist. 92 This file should have permissions 444 93 This file should have permissions 666 94 This file should have permissions 777 95 This is content of file "file.txt" 96 Some junk ;-) This file does not really exist.
|
D | test574 | 86 This file should have permissions 444 87 This file should have permissions 666 88 This file should have permissions 777 89 This is content of file "file.txt" 90 Some junk ;-) This file does not really exist. 91 This file should have permissions 444 92 This file should have permissions 666 93 This file should have permissions 777 94 This is content of file "file.txt" 95 Some junk ;-) This file does not really exist.
|
/external/clang/test/Index/ |
D | complete-documentation-properties.m | 3 // This test is for when property accessors do not have their own code 9 \brief This is ReadonlyProperty 14 \brief This is GeneralProperty 19 \brief This is PropertyInPrimaryClass 31 \brief This is Record 38 \brief This is PropertyInClassExtension 57 // CHECK-CC1: {TypedText ReadonlyGetter}{{.*}}(brief comment: This is ReadonlyProperty) 60 // CHECK-CC2: {TypedText GetterInClassExtension}{{.*}}(brief comment: This is PropertyInClassExtens… 63 // CHECK-CC3: {TypedText PropertyInPrimaryClass}{{.*}}(brief comment: This is PropertyInPrimaryClas… 66 // CHECK-CC4: {TypedText Record}{{.*}}(brief comment: This is Record) [all …]
|
D | annotate-comments-property-accessor.m | 13 \brief This is ReadonlyProperty 16 …ty</USR><Declaration>- (int)ReadonlyGetter;</Declaration><Abstract><Para> This is ReadonlyProperty… 19 \brief This is GeneralProperty 22 …y</USR><Declaration>- (int)GeneralProperty;</Declaration><Abstract><Para> This is GeneralProperty<… 23 …id)setGeneralProperty:(int)GeneralProperty;</Declaration><Abstract><Para> This is GeneralProperty<… 26 \brief This is PropertyInPrimaryClass 32 …><Declaration>- (id)PropertyInPrimaryClass;</Declaration><Abstract><Para> This is PropertyInPrimar… 33 …yInPrimaryClass:(id)PropertyInPrimaryClass;</Declaration><Abstract><Para> This is PropertyInPrimar… 38 \brief This is Record 42 …><Declaration>- (id)GetterInClassExtension;</Declaration><Abstract><Para> This is PropertyInClassE… [all …]
|
/external/markdown/tests/misc/ |
D | two-spaces.txt | 1 This line has two spaces at the end 7 * This list item has two spaces. 8 * This has none. 9 This line has three. 10 This line has none. 13 This line has none. 15 * This line has none.
|
/external/icu/icu4c/source/samples/uresb/ |
D | sr.txt | 29 udata { "This is udata help topic" } 30 resourcebundles { "This is resource bundle help topic" } 31 collation { "This is collation help topic" } 32 breakit { "This is break iterator help topic" } 33 translit { "This is transliteration help topic" } 34 unicode { "This is unicode help topic" } 35 format { "This is format help topic" }
|
D | en.txt | 28 udata { "This is udata help topic" } 29 resourcebundles { "This is resource bundle help topic" } 30 collation { "This is collation help topic" } 31 breakit { "This is break iterator help topic" } 32 translit { "This is transliteration help topic" } 33 unicode { "This is unicode help topic" } 34 format { "This is format help topic" }
|
/external/valgrind/none/tests/ |
D | ioctl_moans.stderr.exp | 2 This could cause spurious value errors to appear. 5 This could cause spurious value errors to appear. 8 This could cause spurious value errors to appear. 11 This could cause spurious value errors to appear. 14 This could cause spurious value errors to appear. 17 This could cause spurious value errors to appear. 20 This could cause spurious value errors to appear. 23 This could cause spurious value errors to appear. 26 This could cause spurious value errors to appear. 29 This could cause spurious value errors to appear.
|
/external/llvm/docs/ |
D | Passes.rst | 26 This (real) one-liner can also be helpful when converting comments to HTML: 40 This document serves as a high level summary of the optimization features that 56 This section describes the LLVM Analysis Passes. 61 This is a simple N^2 alias analysis accuracy evaluator. Basically, for each 66 This is inspired and adapted from code by: Naveen Neelakantam, Francesco 95 This simple pass checks alias analysis users to ensure that if they create a 105 This pass is a simple dominator construction algorithm for finding forward 111 This pass is a simple dominator construction algorithm for finding forward 118 This pass, only available in ``opt``, prints the call graph into a ``.dot`` 119 graph. This graph can then be processed with the "dot" tool to convert it to [all …]
|
/external/pdfium/testing/resources/ |
D | weblinks.in | 43 (Hello, world! This is not a link.) Tj 45 (http://example.com?q=foo. This might be a link.) Tj 48 (https://example.com?q=foo. This might be a link in another font.) Tj 50 (javascript:alert(0). This might be a JS link.) Tj 52 (ftp://example.org. This might be a FTP link.) Tj 54 (file:///home/foo/example.txt. This might be a file link.) Tj 56 (This is a rather long and pointless piece of non-link text.) Tj
|
/external/chromium-trace/catapult/third_party/beautifulsoup4/scripts/ |
D | demonstration_markup.txt | 11 <div>This numeric entity is missing the final semicolon: <x t="piñata"></div> 14 <! This document starts with a bogus declaration ><div>a</div> 15 <div>This document contains <!an incomplete declaration <div>(do you see it?)</div> 16 <div>This document ends with <!an incomplete declaration 21 <div>This document ends before the entity finishes: > 26 <div>This tag contains nothing but whitespace: <b> </b></div> 27 <div><blockquote><p><b>This p tag is cut off by</blockquote></p>the end of the blockquote tag</div> 28 <div><table><div>This table contains bare markup</div></table></div> 29 …><div id="1">\n <a href="link1">This link is never closed.\n</div>\n<div id="2">\n <div id="3">\n … 30 <div>This document contains a <!DOCTYPE surprise>surprise doctype</div>
|
/external/mp4parser/ |
D | NOTICE | 7 This product includes software developed by 10 This product includes software developed by 13 This product includes software developed by 16 This product includes software (Base64 Encoder extracted from commons-codec) developed by 19 This product includes software (Hex Encoder extracted from commons-codec) developed by 22 This product includes software (package com.googlecode.mp4parser.h264) developed by
|
/external/mp4parser/isoparser/src/main/resources/ |
D | NOTICE.txt | 7 This product includes software developed by 10 This product includes software developed by 13 This product includes software developed by 16 This product includes software (Base64 Encoder extracted from commons-codec) developed by 19 This product includes software (Hex Encoder extracted from commons-codec) developed by 22 This product includes software (package com.googlecode.mp4parser.h264) developed by
|