/external/chromium_org/build/mac/ |
copy_asan_runtime_dylib.sh | 10 # name in the binary to be relative to @executable_path. 14 BINARY="${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}" 15 BINARY_DIR="$(dirname "${BINARY}")" 21 # Find the link to the ASan runtime encoded in the binary. 22 BUILTIN_DYLIB_PATH=$(otool -L "${BINARY}" | \ 26 echo "${BINARY} does not depend on the ASan runtime library!" >&2 38 # Check whether the directory containing the executable binary is named 59 # Fix the rpath to the runtime library recorded in the binary. 63 "${BINARY}"
|
/external/chromium_org/third_party/sqlite/src/test/ |
colmeta.test | 50 1 {main abc a} {0 {{} BINARY 0 0 0}} 51 2 {{} abc a} {0 {{} BINARY 0 0 0}} 52 3 {{} abc2 b} {0 {VARCHAR(32) BINARY 0 0 0}} 53 4 {main abc2 b} {0 {VARCHAR(32) BINARY 0 0 0}} 55 6 {{} abc3 a} {0 {{} BINARY 1 0 0}} 56 7 {{} abc3 b} {0 {INTEGER BINARY 0 1 0}} 57 13 {main abc rowid} {0 {INTEGER BINARY 0 1 0}} 58 14 {main abc3 rowid} {0 {INTEGER BINARY 0 1 0}} 63 8 {{} abc4 b} {0 {INTEGER BINARY 0 1 1}} 64 15 {main abc4 rowid} {0 {INTEGER BINARY 0 1 1} [all...] |
collateA.test | 25 b TEXT COLLATE BINARY, 71 execsql {SELECT ' '='' COLLATE RTRIM, ' '='' COLLATE BINARY, ' '=''} 74 execsql {SELECT ''=' ' COLLATE RTRIM, ''=' ' COLLATE BINARY, ''=' '} 80 execsql {SELECT ''<>' ' COLLATE RTRIM, ''<>' ' COLLATE BINARY, ''<>' '}
|
collate6.test | 43 CREATE TABLE collate6tab(a COLLATE NOCASE, b COLLATE BINARY); 115 CREATE TABLE abc(a COLLATE binary, b, c);
|
/external/chromium_org/ui/base/resource/ |
resource_handle.h | 23 BINARY,
|
resource_data_dll_win.cc | 57 return BINARY;
|
data_pack.cc | 68 text_encoding_type_(BINARY), 127 text_encoding_type_ != BINARY) { 129 << ", expected between " << BINARY << " and " << UTF16; 239 textEncodingType != BINARY) { 241 << ", expected between " << BINARY << " and " << UTF16;
|
/libcore/luni/src/main/java/java/sql/ |
Types.java | 44 * The type code that identifies the SQL type {@code BINARY}. 46 public static final int BINARY = -2;
|
/external/chromium_org/tools/grit/grit/format/ |
data_pack.py | 28 BINARY, UTF8, UTF16 = range(3) 54 data = util.ReadFile(input_file, util.BINARY) 128 if encoding in (None, BINARY): 130 elif new_content.encoding not in (BINARY, encoding): 137 # Encoding is 0 for BINARY, 1 for UTF8 and 2 for UTF16 139 encoding = BINARY
|
html_inline.py | 113 inline_data = base64.standard_b64encode(util.ReadFile(filepath, util.BINARY)) 280 return pattern % InlineCSSText(util.ReadFile(filepath, util.BINARY), 312 flat_text = util.ReadFile(input_filename, util.BINARY)
|
/external/chromium_org/media/webm/ |
webm_parser.cc | 26 BINARY, 74 {BINARY, kWebMIdSeekID}, 79 {BINARY, kWebMIdSegmentUID}, 81 {BINARY, kWebMIdPrevUID}, 83 {BINARY, kWebMIdNextUID}, 85 {BINARY, kWebMIdSegmentFamily}, 89 {BINARY, kWebMIdDateUTC}, 98 {BINARY, kWebMIdChapterTranslateID}, 102 {BINARY, kWebMIdSimpleBlock}, 115 {BINARY, kWebMIdBlock} [all...] |
/external/valgrind/main/coregrind/m_debuginfo/ |
d3basics.c | 8 This file is part of Valgrind, a dynamic binary instrumentation [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TypesTest.java | 31 assertEquals(BINARY, -2);
|
/external/oprofile/libop/ |
op_xml_out.h | 33 BINARY,
|
/external/valgrind/main/VEX/priv/ |
ir_defs.c | 7 This file is part of Valgrind, a dynamic binary instrumentation [all...] |
/external/chromium_org/tools/json_schema_compiler/ |
cpp_util.py | 56 PropertyType.BINARY: 'base::Value::TYPE_BINARY',
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
svn-create-patch | 5 # Redistribution and use in source and binary forms, with or without 11 # 2. Redistributions in binary form must reproduce the above copyright 35 # Handles binary files (encoded as a base64 chunk of text). 36 # Sorts the diffs alphabetically by text files, then binary files. 123 # All binary files come after all non-binary files. 135 # Sort so text files appear before binary files. 316 print "\nCannot display: file marked as a binary type.\n"; 358 open BINARY, $path or die; 359 while (read(BINARY, $buffer, 60*57)) [all...] |
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerFunctionalTest.java | 91 * Test a basic download of a binary file 500k in size. 96 byte[] blobData = generateData(fileSize, DataType.BINARY); 308 byte[] blobData = generateData(fileSize, DataType.BINARY); 328 byte[] blobData = generateData(fileSize, DataType.BINARY);
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCResultSetMetaData.java | 34 case Types.BINARY: 112 case Types.BINARY: return "binary";
|
/external/chromium_org/build/android/ |
adb_gdb | 33 log "Removing target gdbserver binary: $TARGET_GDBSERVER." 233 - target gdbserver binary 305 --gdbserver=<file> Specify targer gdbserver binary. 306 --gdb=<program> Specify host gdb client binary. 308 --adb=<program> Specify host ADB binary. 474 # Out: install path + binary prefix (e.g. 512 local BINARY 515 BINARY=$NDK_DIR/prebuilt/android-$ARCH/gdbserver/gdbserver 516 if [ ! -f "$BINARY" ]; then 517 BINARY=$(get_ndk_toolchain_prebuilt "$NDK_DIR" "$ARCH" gdbserver [all...] |
/external/chromium_org/tools/grit/grit/gather/ |
chrome_scaled_image.py | 134 data = util.ReadFile(self.grd_node.ToRealPath(path), util.BINARY)
|
chrome_scaled_image_unittest.py | 55 data = util.ReadFile(rcname, util.BINARY).decode('utf-16')
|
/external/chromium_org/tools/grit/grit/node/ |
include.py | 87 data = util.ReadFile(filename, util.BINARY) 89 # Include does not care about the encoding, because it only returns binary
|
/external/chromium_org/tools/grit/grit/ |
util_unittest.py | 95 Test(test, util.BINARY, test)
|
util.py | 26 BINARY, RAW_TEXT = range(2) 42 # Default is BINARY 202 encoding: A Python codec name or one of two special values: BINARY to read 203 the file in binary mode, or RAW_TEXT to read it with newline 206 mode = 'rb' if encoding == BINARY else 'rU' 209 if encoding not in (BINARY, RAW_TEXT):
|