/external/icu/icu4c/source/test/intltest/ |
D | simplethread.cpp | 145 Win32ThreadImplementation *imp = new Win32ThreadImplementation; in SimpleThread() local 146 imp->fHandle = 0; in SimpleThread() 147 fImplementation = imp; in SimpleThread() 155 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation; in ~SimpleThread() local 156 if (imp != 0) { in ~SimpleThread() 157 if (imp->fHandle != 0) { in ~SimpleThread() 158 CloseHandle(imp->fHandle); in ~SimpleThread() 159 imp->fHandle = 0; in ~SimpleThread() 167 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation; in start() local 168 if(imp->fHandle != NULL) { in start() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2010-05-12-FastAllocKills.ll | 11 ; FP_REG_KILL %FP0<imp-def>, %FP1<imp-def>, %FP2<imp-def>, %FP3<imp-def>, %FP4<imp-def>, %FP5<imp-d… 25 ; FP_REG_KILL %FP0<imp-def>, %FP1<imp-def>, %FP2<imp-def>, %FP3<imp-def>, %FP4<imp-def>, %FP5<imp-d…
|
D | 2010-04-08-CoalescerBug.ll | 5 ; %RDI<def,dead> = MOV64rr %RAX<kill>, %EDI<imp-def> 6 ; REP_MOVSD %ECX<imp-def,dead>, %EDI<imp-def,dead>, %ESI<imp-def,dead>, %ECX<imp-use,kill>, %EDI<im…
|
D | handle-move.ll | 11 ; 144B -> 180B: DIV32r %vreg4, %EAX<imp-def>, %EDX<imp-def,dead>, %EFLAGS<imp-def,dead>, %EAX<imp-u… 28 ; 144B -> 180B: DIV32r %vreg4, %EAX<imp-def,dead>, %EDX<imp-def>, %EFLAGS<imp-def,dead>, %EAX<imp-u… 62 ; handleMove 208B -> 36B: %EDX<def> = MOV32r0 %EFLAGS<imp-def,dead>
|
D | remat-phys-dead.ll | 12 ; CHECK: Remat: %EAX<def,dead> = MOV32r0 %EFLAGS<imp-def,dead>, %AL<imp-def> 21 ; CHECK: Remat: %EAX<def> = MOV32r0 %EFLAGS<imp-def,dead>
|
D | misched-copy.ll | 13 ; CHECK-NEXT: MUL32r %vreg{{[0-9]+}}, %EAX<imp-def>, %EDX<imp-def>, %EFLAGS<imp-def,dead>, %EAX<imp…
|
D | coalescer-dce.ll | 15 ; 272L %vreg10:sub_32bit<def> = COPY %vreg7:sub_32bit<kill>, %vreg10<imp-def>; GR64:%vreg10,%vre… 19 ; Remat: %vreg10<def> = MOV64r0 %vreg10<imp-def>, %EFLAGS<imp-def,dead>, %vreg10<imp-def>; GR64:%vr…
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | 2010-05-12-FastAllocKills.ll | 11 ; FP_REG_KILL %FP0<imp-def>, %FP1<imp-def>, %FP2<imp-def>, %FP3<imp-def>, %FP4<imp-def>, %FP5<imp-d… 25 ; FP_REG_KILL %FP0<imp-def>, %FP1<imp-def>, %FP2<imp-def>, %FP3<imp-def>, %FP4<imp-def>, %FP5<imp-d…
|
D | 2010-04-08-CoalescerBug.ll | 5 ; %RDI<def,dead> = MOV64rr %RAX<kill>, %EDI<imp-def> 6 ; REP_MOVSD %ECX<imp-def,dead>, %EDI<imp-def,dead>, %ESI<imp-def,dead>, %ECX<imp-use,kill>, %EDI<im…
|
D | coalescer-dce.ll | 15 ; 272L %vreg10:sub_32bit<def> = COPY %vreg7:sub_32bit<kill>, %vreg10<imp-def>; GR64:%vreg10,%vre… 19 ; Remat: %vreg10<def> = MOV64r0 %vreg10<imp-def>, %EFLAGS<imp-def,dead>, %vreg10<imp-def>; GR64:%vr…
|
/external/libcxx/test/std/strings/basic.string/string.cons/ |
D | copy_alloc.pass.cpp | 46 alloc_imp<T> *imp; member 48 poca_alloc(alloc_imp<T> *imp_) : imp (imp_) {} in poca_alloc() 51 poca_alloc(const poca_alloc<U>& other) : imp(other.imp) {} in poca_alloc() 53 T* allocate (std::size_t n) { return imp->allocate(n);} in allocate() 54 void deallocate(T* p, std::size_t n) { imp->deallocate(p, n); } in deallocate() 60 return lhs.imp == rhs.imp; in operator ==() 66 return lhs.imp != rhs.imp; in operator !=()
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/ |
D | util.py | 4 import imp 34 result = imp.find_module(name, path) 57 return imp.find_module(name, [path_item]) 71 yield name, (None, None, ("", "", imp.C_BUILTIN)) 81 res = (fp, res.path, ('.py', 'rU', imp.PY_SOURCE)) 84 fp = BytesIO(imp.get_magic() + b'\0\0\0\0' + marshal.dumps(co)) 85 res = (fp, res.path, ('.pyc', 'rb', imp.PY_COMPILED)) 88 … res = (None, loader.path, (os.path.splitext(loader.path)[-1], 'rb', imp.C_EXTENSION))
|
D | modulegraph.py | 15 import imp 147 imp.get_magic() + b'\0\0\0\0' + marshal.dumps(co)) 198 description = ('.pyc', 'rb', imp.PY_COMPILED) 209 description = ('.py', _READ_MODE, imp.PY_SOURCE) 213 for _sfx, _mode, _type in imp.get_suffixes(): 214 if _type == imp.C_EXTENSION and filename.endswith(_sfx): 215 description = (_sfx, 'rb', imp.C_EXTENSION) 218 description = ('', '', imp.PKG_DIRECTORY) 225 description = ('.pyc', 'rb', imp.PY_COMPILED) 252 for _sfx, _mode, _type in imp.get_suffixes(): [all …]
|
/external/autotest/client/cros/ |
D | factory_setup_modules.py | 9 import imp, logging, os, sys 22 cros = imp.load_module('cros', None, '', ('', '', imp.PKG_DIRECTORY)) 25 cros.factory = imp.load_module( 27 *imp.find_module('cros/factory', sys.path + extra_path))
|
/external/autotest/site_utils/autoupdate/ |
D | import_common.py | 7 import imp 21 return imp.load_module(module_name, *imp.find_module(module_name)) 30 return imp.load_module(module_name, *imp.find_module(module_name))
|
/external/llvm/test/CodeGen/ARM/ |
D | vldm-liveness.ll | 4 ; s1 = VLDRS [r0, 1], Q0<imp-def> 5 ; s3 = VLDRS [r0, 2], Q0<imp-use,kill>, Q0<imp-def> 6 ; s0 = VLDRS [r0, 0], Q0<imp-use,kill>, Q0<imp-def> 7 ; s2 = VLDRS [r0, 4], Q0<imp-use,kill>, Q0<imp-def> 11 ; imp-use of Q0, which is undefined.
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-objc-meta-data.test | 27 OBJC2_64BIT_EXE: imp 0x100001350 30 OBJC2_64BIT_EXE: imp 0x100001390 69 OBJC2_64BIT_EXE: imp 0x100001430 72 OBJC2_64BIT_EXE: imp 0x100001470 151 OBJC2_64BIT_OBJ: imp -[AppDelegate applicationDidFinishLaunching:] 154 OBJC2_64BIT_OBJ: imp -[AppDelegate applicationWillTerminate:] 232 OBJC2_32BIT_EXE: imp 0x23c0 235 OBJC2_32BIT_EXE: imp 0x25f0 238 OBJC2_32BIT_EXE: imp 0x2640 241 OBJC2_32BIT_EXE: imp 0x2690 [all …]
|
/external/libxml2/result/schemas/ |
D | import1_0_0.err | 1 I/O warning : failed to load external entity "test/schemas/import1_0bc.imp" 2 …a}import': Failed to locate a schema at location 'test/schemas/import1_0bc.imp'. Skipping the impo… 3 …mport1_0b.imp' for the namespace 'http://BAR', since this namespace was already imported with the …
|
/external/curl/src/ |
D | Makefile.netware | 274 IMPORTS = @$(CURL_LIB)/libcurl.imp 282 IMPORTS += @$(LIBSSH2_PATH)/nw/libssh2.imp 303 IMPORTS += $(AXTLS_PATH)/lib/libaxtls.imp 313 IMPORTS += @$(ZLIB_PATH)/nw/$(LIBARCH)/libz.imp 331 IMPORTS += @$(LIBEXPAT_PATH)/imports/expatlbc.imp 334 IMPORTS += @$(LIBEXPAT_PATH)/imports/expatlib.imp 339 IMPORTS += @$(LIBXML2_PATH)/lib/libxml2.imp
|
/external/antlr/antlr-3.4/runtime/Python/ |
D | setup.py | 91 import imp 110 = imp.find_module(testID, [testDir]) 112 testMod = imp.load_module( 179 import imp 244 = imp.find_module(testID, [testDir]) 246 testMod = imp.load_module(
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/ |
D | generator_unittest.py | 5 import imp 21 imp.find_module("mojom")
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | mbim_test_runner.py | 11 import imp 43 test_module = imp.load_source(subtest_name, module_name)
|
/external/boringssl/src/util/bot/go/ |
D | env.py | 24 import imp 30 bootstrap = imp.load_source(
|
/external/icu/icu4c/source/data/unit/ |
D | pt_PT.txt | 200 dnam{"milhas/gal imp."} 305 dnam{"gal imp."} 306 one{"{0} gal imp."} 307 other{"{0} gal imp."} 308 per{"{0}/gal imp."}
|
/external/libxml2/os400/dlfcn/ |
D | dlfcn.c | 298 Qmh_Rtvm_RTVM0300_t * imp; in dlseterror_from_exception() local 310 imp = offset_by(Qmh_Rtvm_RTVM0300_t, rtvmbuf, 0); in dlseterror_from_exception() 317 if (i = imp->Length_Message_Returned) in dlseterror_from_exception() 318 cp = offset_by(char, imp, imp->Offset_Message_Returned); in dlseterror_from_exception() 319 else if (i = imp->Length_Help_Returned) in dlseterror_from_exception() 320 cp = offset_by(char, imp, imp->Offset_Help_Returned); in dlseterror_from_exception()
|