/external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/ |
resource_loader.py | 38 def FindResource(self, some_path, binary=False): 48 return self.FindResourceGivenAbsolutePath(some_path, binary) 50 return self.FindResourceGivenRelativePath(some_path, binary) 52 def FindResourceGivenAbsolutePath(self, absolute_path, binary=False): 64 return resource_module.Resource(longest_candidate, absolute_path, binary) 66 def FindResourceGivenRelativePath(self, relative_path, binary=False): 72 return resource_module.Resource(script_path, absolute_path, binary) 190 res = self.FindResourceGivenAbsolutePath(abs_path, binary=True)
|
/external/clang/tools/clang-format/ |
clang-format-sublime.py | 2 # - Change 'binary' if clang-format is not on the path (see below). 21 binary = 'clang-format' variable 35 command = [binary, '-style', style]
|
clang-format.py | 2 # - Change 'binary' if clang-format is not on the path (see below). 37 binary = 'clang-format' variable 39 binary = vim.eval('g:clang_format_path') variable 75 command = [binary, '-style', style, '-cursor', str(cursor)]
|
/external/gemmlowp/scripts/ |
test-android.sh | 35 EXE=gemmlowp-android-binary 86 echo "$0: adb shell failed to run binary on device"
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
toy.ml | 6 (* Install standard binary operators.
|
/external/protobuf/examples/ |
add_person.cc | 70 fstream input(argv[1], ios::in | ios::binary); 84 fstream output(argv[1], ios::out | ios::trunc | ios::binary);
|
/external/selinux/secilc/ |
secilc.c | 4 * Redistribution and use in source and binary forms, with or without 10 * 2. Redistributions in binary form must reproduce the above copyright notice, 49 printf(" -o, --output=<file> write binary policy to <file>\n"); 58 printf(" -c, --policyvers=<version> build a binary policy with a given <version>\n"); 64 printf(" -D, --disable-dontaudit do not add dontaudit rules to the binary policy\n"); 77 FILE *binary = NULL; local 274 binary = fopen(output, "w"); 275 if (binary == NULL) { 276 fprintf(stderr, "Failure opening binary file for writing\n"); 287 sepol_policy_file_set_fp(pf, binary); [all...] |
/hardware/intel/img/hwcomposer/merrifield/test/ |
Android.mk | 24 # Build the binary to $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE)
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/ |
cons.s | 5 .global binary, octal, hex, field 6 binary: .word 11b, 0100B label
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
b-badfil2.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-badm2.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-badmain.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-bend.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-bend1.d | 5 #ld: --oformat binary
|
b-bend2.d | 5 #ld: --oformat binary
|
b-goodmain.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-loc64k.d | 3 #ld: --oformat binary
|
b-loc64k.s | 1 % The .text contents is supposed to be linked --oformat binary, and will
|
b-nosym.d | 4 #ld: --oformat binary
|
b-nosym.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-offloc.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-offlocmis.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-twoinsn.s | 1 % The .text contents is supposed to be linked --oformat binary, and will
|
b-widec2.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkBinaryRegistry.cpp | 21 * \brief Program binary registry. 58 void writeBinary (const std::string& dstDir, deUint32 index, const ProgramBinary& binary) 66 std::ofstream out (fullPath.getPath(), std::ios_base::binary); 71 out.write((const char*)binary.getBinary(), binary.getSize()); 76 deUint32 binaryHash (const ProgramBinary* binary) 78 return deMemoryHash(binary->getBinary(), binary->getSize()); 139 //! Sparse index node used for final binary index construction 318 void BinaryRegistryWriter::storeProgram (const ProgramIdentifier& id, const ProgramBinary& binary) [all...] |