HomeSort by relevance Sort by last modified time
    Searched refs:BINARY (Results 26 - 50 of 250) sorted by null

12 3 4 5 6 7 8 910

  /device/linaro/bootloader/edk2/CorebootPayloadPkg/
CorebootPayloadPkg.fdf 182 INF RuleOverride = BINARY USE = IA32 EdkShellBinPkg/FullShell/FullShell.inf
184 INF RuleOverride = BINARY USE = X64 EdkShellBinPkg/FullShell/FullShell.inf
190 INF RuleOverride = BINARY USE = IA32 ShellBinPkg/MinUefiShell/MinUefiShell.inf
192 INF RuleOverride = BINARY USE = X64 ShellBinPkg/MinUefiShell/MinUefiShell.inf
198 INF RuleOverride = BINARY USE = IA32 ShellBinPkg/UefiShell/UefiShell.inf
200 INF RuleOverride = BINARY USE = X64 ShellBinPkg/UefiShell/UefiShell.inf
273 [Rule.Common.UEFI_DRIVER.BINARY]
288 [Rule.Common.UEFI_APPLICATION.BINARY]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 31 assertEquals(BINARY, -2);
  /external/autotest/client/site_tests/platform_SecureEraseFile/
platform_SecureEraseFile.py 16 BINARY = '/usr/bin/secure_erase_file'
93 utils.run('%s %s' % (BINARY, TEST_PATH))
  /external/autotest/client/site_tests/video_VideoEncodeAccelerator/
video_VideoEncodeAccelerator.py 18 BINARY = 'video_encode_accelerator_unittest'
42 This test is a wrapper of the chrome unittest binary:
153 self.run_chrome_test_binary(BINARY, cmd_line, as_chronos=False)
  /external/autotest/client/site_tests/video_VDAPerf/
video_VDAPerf.py 32 BINARY = 'video_decode_accelerator_unittest'
72 binary, video_decode_accelerator_unittest.
242 self.run_chrome_test_binary(BINARY, cmd_line)
266 self.run_chrome_test_binary(BINARY, cmd_line, prefix=time_cmd)
282 self.run_chrome_test_binary(BINARY, cmd_line)
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/parser/
SqlParser.kt 251 BINARY,
260 ColumnInfo.BINARY -> BINARY
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerFunctionalTest.java 96 * Test a basic download of a binary file 500k in size.
101 byte[] blobData = generateData(fileSize, DataType.BINARY);
320 byte[] blobData = generateData(fileSize, DataType.BINARY);
340 byte[] blobData = generateData(fileSize, DataType.BINARY);
  /frameworks/compile/mclinker/include/mcld/Script/
BinaryOp.h 24 * \brief This class defines the interfaces to an binary operator token.
32 BinaryOp() : Operator(Operator::BINARY, TYPE), m_Size(0) {
  /frameworks/compile/mclinker/lib/Script/
RpnEvaluator.cpp 52 case Operator::BINARY: {
  /external/libchrome/base/
values.cc 25 "string", "binary", "dictionary", "list"};
118 case Type::BINARY:
167 Value::Value(const std::vector<char>& in_blob) : type_(Type::BINARY) {
171 Value::Value(std::vector<char>&& in_blob) noexcept : type_(Type::BINARY) {
366 case Value::Type::BINARY:
412 case Value::Type::BINARY:
497 case Type::BINARY:
536 case Type::BINARY:
564 case Type::BINARY:
593 case Type::BINARY
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 34 case Types.BINARY:
112 case Types.BINARY: return "binary";
  /external/okhttp/okhttp-ws-tests/src/main/java/com/squareup/okhttp/ws/
AutobahnTester.java 34 import static com.squareup.okhttp.ws.WebSocket.BINARY;
91 response = RequestBody.create(BINARY, source.readByteString());
  /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/
WebSocketRecorder.java 28 import static com.squareup.okhttp.ws.WebSocket.BINARY;
101 Message message = new Message(BINARY);
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpClient.java 81 ASCII, BINARY, EBCDIC
655 * Changes the transfer type (binary, ascii, ebcdic) and issue the
666 * Changes the current transfer type to binary.
668 * {@code setType(TransferType.BINARY)}
676 setType(TransferType.BINARY);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Http2.java 679 * combinations are represented in binary.
687 return flags == FLAG_ACK ? "ACK" : BINARY[flags];
692 return BINARY[flags];
694 String result = flags < FLAGS.length ? FLAGS[flags] : BINARY[flags];
720 * combinations are represented in binary.
723 private static final String[] BINARY = new String[256];
726 for (int i = 0; i < BINARY.length; i++) {
727 BINARY[i] = format("%8s", Integer.toBinaryString(i)).replace(' ', '0');
754 for (int i = 0; i < FLAGS.length; i++) { // Fill in holes with binary representation.
755 if (FLAGS[i] == null) FLAGS[i] = BINARY[i]
    [all...]
  /external/libchrome/base/trace_event/
trace_event_memory_overhead.cc 86 case Value::Type::BINARY: {
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
RealWebSocket.java 113 "Message content type was null. Must use WebSocket.TEXT or WebSocket.BINARY.");
120 } else if (WebSocket.BINARY.subtype().equals(contentSubtype)) {
125 + ". Must use WebSocket.TEXT or WebSocket.BINARY.");
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
Interpreter.java 58 String binary = data.get(BINARY); local
73 interpreter.setBinary(new File(binary));
116 protected void setBinary(File binary) {
117 if (!binary.exists()) {
118 throw new RuntimeException("Binary " + binary + " does not exist!");
120 mBinary = binary;
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/interpreter/
InterpreterProvider.java 140 values.put(InterpreterPropertyNames.BINARY, mDescriptor.getBinary(mContext).getAbsolutePath());
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Tag.java 38 public static final Tag BINARY = new Tag(PREFIX + "binary");
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue99/
YamlBase64Test.java 107 * Redefine the !!binary global tag in a way that it ignores all the white
112 Yaml yaml = new Yaml(new SpecialContructor(Tag.BINARY));
  /external/curl/tests/
negtelnetserver.py 178 if byte_int in [NegOptions.BINARY,
257 # Binary Transmission
258 BINARY = 0
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundleImpl.java 42 case BINARY:
67 return BINARY;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleImpl.java 41 case BINARY:
66 return BINARY;
  /prebuilts/tools/common/m2/repository/io/opentracing/opentracing-api/0.13.0/
opentracing-api-0.13.0.jar 

Completed in 625 milliseconds

12 3 4 5 6 7 8 910