HomeSort by relevance Sort by last modified time
    Searched refs:binary (Results 76 - 100 of 2697) sorted by null

1 2 34 5 6 7 8 91011>>

  /build/core/
host_shared_library_internal.mk 41 include $(BUILD_SYSTEM)/binary.mk
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_rendered_pictures_test.py 183 binary = find_run_binary.find_path_to_program('render_pictures')
185 binary,
197 """Runs the skpmaker binary to generate SKP with known characteristics.
207 binary = find_run_binary.find_path_to_program('skpmaker')
209 binary,
  /external/clang/test/SemaCXX/
null_in_arithmetic_ops.cpp 31 expected-error {{invalid operands to binary expression ('long' and 'void (^)()')}} \
32 expected-error {{invalid operands to binary expression ('void (^)()' and 'long')}}
34 expected-error {{invalid operands to binary expression ('long' and 'void (X::*)()')}} \
35 expected-error {{invalid operands to binary expression ('void (X::*)()' and 'long')}}
  /external/clang/tools/clang-format/
clang-format.py 2 # - Change 'binary' if clang-format is not on the path (see below).
27 binary = 'clang-format' variable
57 command = [binary, '-lines', lines, '-style', style, '-cursor', str(cursor)]
  /external/e2fsprogs/debian/attic/libs/
rules 7 # The `binary' target must be run as root, as it needs to install files with
68 binary-indep: build
71 binary-arch: build
180 binary: binary-indep binary-arch
182 .PHONY: binary binary-arch binary-indep clean checkroot
  /external/ipsec-tools/src/racoon/
plog.h 9 * Redistribution and use in source and binary forms, with or without
14 * 2. Redistributions in binary form must reproduce the above copyright
58 extern char *binsanitize(char *binary, size_t size);
  /external/chromium_org/ppapi/tests/
test_websocket.h 28 PP_Var CreateVarBinary(const std::vector<uint8_t>& binary);
32 const std::vector<uint8_t>& binary);
  /external/chromium_org/third_party/sqlite/src/test/
tkt2391.test 19 CREATE TABLE folders(folderid, parentid, foldername COLLATE binary);
40 # for column "foldername" instead (happens to be BINARY in this case).
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/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 8 (* Install standard binary operators.
  /external/nanopb-c/generator/
protoc-gen-nanopb.bat 7 :: Note that if you use the binary package of nanopb, the protoc
  /hardware/intel/bootstub/
Android.mk 25 include $(BUILD_SYSTEM)/binary.mk
42 $(hide) $(TARGET_OBJCOPY) -O binary -R .note -R .comment -S $(PRIVATE_ELF_FILE) $@
73 include $(BUILD_SYSTEM)/binary.mk
90 $(hide) $(TARGET_OBJCOPY) -O binary -R .note -R .comment -S $(PRIVATE_ELF_FILE) $@
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader_multipart.py 3 # Redistribution and use in source and binary forms, with or without
9 # * Redistributions in binary form must reproduce the above
103 for binary in REQUIRED_BREAKPAD_TOOLS:
104 full_path = self._host.filesystem.join(self._build_dir, binary)
107 _log.error('Unable to find %s' % binary)
137 for binary in self._binaries_to_symbolize():
138 _log.debug(' Symbolizing %s' % binary)
139 full_path = self._host.filesystem.join(self._build_dir, binary)
142 '--binary=%s' % full_path,
  /external/chromium_org/v8/test/webkit/fast/js/
function-decompilation-operators.js 4 // Redistribution and use in source and binary forms, with or without
9 // 2. Redistributions in binary form must reproduce the above copyright
24 description("This test checks toString() round-trip decompilation for binary and unary operators.");
  /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/stlport/src/details/
fstream_stdio.cpp 189 case ios_base::out | ios_base::binary:
190 case ios_base::out | ios_base::trunc | ios_base::binary:
198 case ios_base::out | ios_base::app | ios_base::binary:
206 case ios_base::in | ios_base::binary:
214 case ios_base::in | ios_base::out | ios_base::binary:
222 case ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary:
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 189 case ios_base::out | ios_base::binary:
190 case ios_base::out | ios_base::trunc | ios_base::binary:
198 case ios_base::out | ios_base::app | ios_base::binary:
206 case ios_base::in | ios_base::binary:
214 case ios_base::in | ios_base::out | ios_base::binary:
222 case ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary:
  /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

Completed in 553 milliseconds

1 2 34 5 6 7 8 91011>>