HomeSort by relevance Sort by last modified time
    Searched refs:exe (Results 1 - 25 of 641) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/traceline/traceline/
assembler_unittest.sh 7 ./assembler_unittest.exe | ndisasm -u - | cut -c 11-
Makefile 7 /Fetraceline.exe \
18 /Fassembler_unittest.exe \
30 rm -f *.obj {cpuinfo,traceline,assembler_unittest,vc80}.{exe,ilk,pdb} stubs
  /external/chromium_org/chrome/browser/
browser_util_win.cc 22 std::wstring exe = exe_path.value(); local
23 std::replace(exe.begin(), exe.end(), '\\', '!');
24 std::transform(exe.begin(), exe.end(), exe.begin(), tolower);
25 exe = L"Global\\" + exe;
28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/tools/
fxc 11 exe="$dir/fxc.exe"
13 exec $emu "$exe" "/?"
15 exec $emu "$exe" "$@"
  /external/mesa3d/src/gallium/state_trackers/d3d1x/tools/
fxc 11 exe="$dir/fxc.exe"
13 exec $emu "$exe" "/?"
15 exec $emu "$exe" "$@"
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/exe/
tasm_exe_test.sh 2 ${srcdir}/out_test.sh tasm_test modules/parsers/tasm/tests/exe "tasm-compat parser" "-f dosexe -p tasm" ""
  /development/build/
sdk-windows-x86.atree 35 bin/adb.exe strip platform-tools/adb.exe
36 bin/fastboot.exe strip platform-tools/fastboot.exe
41 bin/sqlite3.exe strip platform-tools/sqlite3.exe
44 bin/dmtracedump.exe strip platform-tools/dmtracedump.exe
47 bin/hprof-conv.exe strip platform-tools/hprof-conv.exe
    [all...]
  /external/openssl/crypto/des/
makefile.bc 16 .obj.exe:
17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib
19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe
21 # "make clean": use a directory containing only libdes .exe and .obj files...
23 del *.exe
45 destest.exe: destest.obj libdes.lib
46 rpw.exe: rpw.obj libdes.li
    [all...]
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-tsaware.py 22 def GetHeaders(exe):
23 return test.run_dumpbin('/headers', test.built_file_path(exe, chdir=CHDIR))
26 if 'Terminal Server Aware' in GetHeaders('test_tsaware_no.exe'):
30 if 'Terminal Server Aware' not in GetHeaders('test_tsaware_yes.exe'):
gyptest-link-aslr.py 22 def HasDynamicBase(exe):
23 full_path = test.built_file_path(exe, chdir=CHDIR)
28 if not HasDynamicBase('test_aslr_default.exe'):
30 if HasDynamicBase('test_aslr_no.exe'):
32 if not HasDynamicBase('test_aslr_yes.exe'):
gyptest-link-fixed-base.py 22 def GetHeaders(exe):
23 full_path = test.built_file_path(exe, chdir=CHDIR)
26 # For exe, default is fixed, for dll, it's not fixed.
27 if 'Relocations stripped' not in GetHeaders('test_fixed_default_exe.exe'):
33 if 'Relocations stripped' in GetHeaders('test_fixed_no.exe'):
37 if 'Relocations stripped' not in GetHeaders('test_fixed_yes.exe'):
gyptest-link-incremental.py 22 def HasILTTables(exe):
23 full_path = test.built_file_path(exe, chdir=CHDIR)
28 if not HasILTTables('test_incremental_unset.exe'):
30 if not HasILTTables('test_incremental_default.exe'):
32 if HasILTTables('test_incremental_no.exe'):
34 if not HasILTTables('test_incremental_yes.exe'):
gyptest-link-large-address-aware.py 22 def GetHeaders(exe):
23 return test.run_dumpbin('/headers', test.built_file_path(exe, chdir=CHDIR))
28 if MARKER in GetHeaders('test_large_address_aware_no.exe'):
32 if MARKER not in GetHeaders('test_large_address_aware_yes.exe'):
gyptest-link-nxcompat.py 22 def GetHeaders(exe):
23 return test.run_dumpbin('/headers', test.built_file_path(exe, chdir=CHDIR))
26 if 'NX compatible' not in GetHeaders('test_nxcompat_default.exe'):
30 if 'NX compatible' in GetHeaders('test_nxcompat_no.exe'):
34 if 'NX compatible' not in GetHeaders('test_nxcompat_yes.exe'):
gyptest-link-profile.py 23 def GetSummary(exe):
24 full_path = test.built_file_path(exe, chdir=CHDIR)
28 if '.idata' in GetSummary('test_profile_true.exe'):
31 if not '.idata' in GetSummary('test_profile_false.exe'):
34 if not '.idata' in GetSummary('test_profile_default.exe'):
gyptest-link-safeseh.py 22 def HasSafeExceptionHandlers(exe):
23 full_path = test.built_file_path(exe, chdir=CHDIR)
33 if HasSafeExceptionHandlers('test_safeseh_default.exe'):
35 if HasSafeExceptionHandlers('test_safeseh_no.exe'):
37 if not HasSafeExceptionHandlers('test_safeseh_yes.exe'):
gyptest-cl-buffer-security-check.py 22 def GetDisassemblyOfMain(exe):
26 full_path = test.built_file_path(exe, chdir=CHDIR)
42 if 'security_cookie' not in GetDisassemblyOfMain('test_bsc_unset.exe'):
46 if 'security_cookie' not in GetDisassemblyOfMain('test_bsc_on.exe'):
50 if 'security_cookie' in GetDisassemblyOfMain('test_bsc_off.exe'):
gyptest-link-ordering.py 22 def GetDisasm(exe):
23 full_path = test.built_file_path(exe, chdir=CHDIR)
50 if expected_disasm_basic not in GetDisasm('test_ordering_exe.exe'):
51 print GetDisasm('test_ordering_exe.exe')
71 if expected_disasm_subdirs not in GetDisasm('test_ordering_subdirs.exe'):
72 print GetDisasm('test_ordering_subdirs.exe')
97 GetDisasm('test_ordering_subdirs_mixed.exe')):
98 print GetDisasm('test_ordering_subdirs_mixed.exe')
gyptest-link-subsystem.py 29 def GetHeaders(exe):
30 return test.run_dumpbin('/headers', test.built_file_path(exe, chdir=CHDIR))
31 if '5.01 subsystem version' not in GetHeaders('test_console_xp.exe'):
33 if '5.01 subsystem version' not in GetHeaders('test_windows_xp.exe'):
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACRate.txt 8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_1.pcm > $LOGG
9 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_2.pcm >> $LOGG
10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_3.pcm >> $LOGG
11 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_4.pcm >> $LOGG
12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_5.pcm >> $LOGG
13 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 60 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_6.pcm >> $LOGG
14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_7.pcm >> $LOGG
16 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_11.pcm >> $LOGG
17 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/longspeech.pcm $OUTDIR/out_napi_12.pcm >> $LOGG
18 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_13.pcm >> $LOG
    [all...]
  /external/ltrace/testsuite/ltrace.torture/
arm-singlestep.exp 24 set exe [ltraceCompile {} [ltraceSource c {
39 ltraceMatch [ltraceRun -L -xbar+baz $exe] {
  /external/cmockery/cmockery_0_1_2/windows/
makefile 20 # Select Start->Run and run "cmd.exe" to open the command line.
44 LIBTOOL=lib.exe
48 LINK=link.exe
71 .SUFFIXES: .exe .lib .obj .c
91 $(EXECUTABLE_DIR)\calculator.exe \
92 $(EXECUTABLE_DIR)\calculator_test.exe \
93 $(EXECUTABLE_DIR)\allocate_module_test.exe \
94 $(EXECUTABLE_DIR)\assert_macro_test.exe \
95 $(EXECUTABLE_DIR)\customer_database_test.exe \
96 $(EXECUTABLE_DIR)\key_value_test.exe \
    [all...]
  /external/lldb/test/benchmarks/disassembly/
TestDoAttachThenDisassembly.py 18 self.exe = lldb.bmExecutable
20 self.exe = self.lldbHere
29 self.run_lldb_attach_then_disassembly(self.exe, self.count)
32 def run_lldb_attach_then_disassembly(self, exe, count):
33 target = self.dbg.CreateTarget(exe)
37 popen = subprocess.Popen([exe, self.lldbOption],
  /external/chromium_org/third_party/icu/source/samples/uresb/
resources.mak 7 GENRB = ..\..\..\bin64\genrb.exe
9 GENRB = ..\..\..\bin\genrb.exe
  /external/chromium_org/tools/gyp/test/configurations/target_platform/
gyptest-target_platform.py 15 def RunX64(exe, stdout):
17 test.run_built_executable(exe, stdout=stdout)
19 # Assume the exe is 64-bit if it can't load on 32-bit systems.
21 # of python seem to return different errors for invalid exe type.

Completed in 748 milliseconds

1 2 3 4 5 6 7 8 91011>>