/external/chromium_org/v8/tools/testrunner/server/ |
work_handler.py | 2 # Redistribution and use in source and binary forms, with or without 8 # * Redistributions in binary form must reproduce the above 62 for binary in packet.binaries: 63 if not self._UnpackBinary(binary, packet.pubkey_fingerprint): 89 def _UnpackBinary(self, binary, pubkey_fingerprint): 90 binary_name = binary["name"] 98 if not signatures.VerifySignature(target, binary["blob"], 99 binary["sign"], pubkeyfile):
|
/external/chromium_org/third_party/sqlite/src/test/ |
collate1.test | 131 SELECT c1, c2 FROM collate1t1 ORDER BY 1 COLLATE binary, 2 COLLATE hex; 136 SELECT c1, c2 FROM collate1t1 ORDER BY 1 COLLATE binary DESC, 2 COLLATE hex; 142 ORDER BY 1 COLLATE binary DESC, 2 COLLATE hex DESC; 148 ORDER BY 1 COLLATE binary ASC, 2 COLLATE hex ASC; 178 SELECT c1 COLLATE binary, c2 COLLATE hex 186 FROM collate1t1 ORDER BY 1 COLLATE binary DESC, 2 COLLATE hex; 191 SELECT c1 COLLATE binary, c2 COLLATE hex 198 SELECT c1 COLLATE hex, c2 COLLATE binary 200 ORDER BY 1 COLLATE binary ASC, 2 COLLATE hex ASC; 247 SELECT a as c1, b as c2 FROM collate1t1 ORDER BY c1 COLLATE binary; [all...] |
/external/chromium_org/content/common/indexed_db/ |
indexed_db_param_traits.cc | 40 WriteParam(m, p.binary()); 78 std::string binary; local 79 if (!ReadParam(m, iter, &binary)) 81 *r = IndexedDBKey(binary); 123 LogParam(p.binary(), l);
|
indexed_db_key.cc | 83 IndexedDBKey::IndexedDBKey(const std::string& binary) 85 binary_(binary), 87 (binary.length() * sizeof(std::string::value_type))) {}
|
/development/testrunner/ |
run_command.py | 150 def RunHostCommand(binary, valgrind=False): 153 Runs the host binary and returns the exit code. 160 binary: full path of the file to be run. 167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 176 "--leak-check=yes", "-q", binary],
|
/external/chromium_org/content/child/indexed_db/ |
indexed_db_key_builders.cc | 54 std::string(key.binary().data(), key.binary().size())); 82 return WebIDBKey::createBinary(key.binary());
|
/external/chromium_org/remoting/host/ |
host_main.cc | 75 " --elevate=<binary> - Runs <binary> elevated.\n" 89 // Runs the binary specified by the command line, elevated. 109 // Get the name of the binary to launch. 110 base::FilePath binary = local 121 info.lpFile = binary.value().c_str(); 127 PLOG(ERROR) << "Unable to launch '" << binary.value() << "'";
|
/external/chromium_org/third_party/android_testrunner/ |
run_command.py | 146 def RunHostCommand(binary, valgrind=False): 149 Runs the host binary and returns the exit code. 156 binary: full path of the file to be run. 163 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 172 "--leak-check=yes", "-q", binary],
|
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/ |
browserlauncher.py | 95 self.binary = None 121 binary = os.path.join(path, self.BinaryName()) 122 if not os.path.exists(binary): 123 raise LaunchFailure('Cannot find the browser binary') 124 return binary 182 raise LaunchFailure('Browser cannot be executed %r (Is this binary on an ' 208 self.binary = EscapeSpaces(self.FindBinary()) 265 cmd = [self.binary,
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1278.js | 2 // Redistribution and use in source and binary forms, with or without 8 // * Redistributions in binary form must reproduce the above 30 // Test that that handling of 0/-0 is correct for binary operations when the
|
/external/chromium_org/v8/tools/testrunner/network/ |
network_execution.py | 2 # Redistribution and use in source and binary forms, with or without 8 # * Redistributions in binary form must reproduce the above 133 binary = signatures.ReadFileAndSignature(path) 134 if binary[0] is None: 136 assert binary[1] != 0 137 return binary[1] 138 binary.append(binary_needs_libv8) 139 self.binaries[shell] = binary
|
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
Makefile | 41 fakeroot ./debian/rules binary
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
msgutil.py | 4 # Redistribution and use in source and binary forms, with or without 10 # * Redistributions in binary form must reproduce the above 62 def send_message(request, message, end=True, binary=False): 67 message: unicode text or str binary to send. 71 binary: send message as binary frame. 75 request.ws_stream.send_message(message, end, binary) 80 unicode or a binary in str.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
msgutil.py | 4 # Redistribution and use in source and binary forms, with or without 10 # * Redistributions in binary form must reproduce the above 62 def send_message(request, payload_data, end=True, binary=False): 67 payload_data: unicode text or str binary to send. 71 binary: send payload_data as binary frame(s). 75 request.ws_stream.send_message(payload_data, end, binary) 80 unicode or a binary in str.
|
/external/chromium_org/third_party/python_gflags/ |
Makefile | 41 fakeroot ./debian/rules binary
|
/external/chromium_org/tools/tcmalloc/ |
print-live-objects.py | 41 def Symbolize(binary, traces): 51 "addr2line", "-f", "-C", "-e", binary, "@%s" % addr_filename],
|
/external/clang/tools/clang-format/ |
clang-format-diff.py | 35 binary = 'clang-format' variable 92 command = [binary, filename]
|
git-clang-format | 43 clangFormat.binary 86 p.add_argument('--binary', 87 default=config.get('clangformat.binary', 'clang-format'), 145 binary=opts.binary, 319 def run_clang_format_and_save_to_tree(changed_lines, binary='clang-format', 327 blob_id = clang_format_to_blob(filename, line_ranges, binary=binary, 353 def clang_format_to_blob(filename, line_ranges, binary='clang-format', 358 clang_format_cmd = [binary, filename [all...] |
/external/lldb/scripts/ |
build-swig-wrapper-classes.sh | 99 echo Error: could not find the swig binary
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
ast.ml | 13 (* variant for a binary operator. *) 14 | Binary of char * expr * expr
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
ast.ml | 13 (* variant for a binary operator. *) 14 | Binary of char * expr * expr
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
ast.ml | 13 (* variant for a binary operator. *) 14 | Binary of char * expr * expr
|
/external/chromium_org/build/android/gyp/ |
pack_arm_relocations.py | 76 help='Path to the ARM relocations packer binary') 78 help='Path to the toolchain\'s objcopy binary')
|
strip_library_for_device.py | 29 help='Path to the toolchain\'s strip binary')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/ |
parseDiff.pl | 5 # Redistribution and use in source and binary forms, with or without 10 # 2. Redistributions in binary form must reproduce the above copyright 72 diffName => "SVN: binary file (isBinary true)", 76 Cannot display: file marked as a binary type. 92 Cannot display: file marked as a binary type. 108 diffName => "SVN: binary file (isBinary true) using Windows line endings", 112 Cannot display: file marked as a binary type. 129 Cannot display: file marked as a binary type. 493 # Property Changes: Binary files 497 diffName => "SVN: binary file with executable bit change" [all...] |