/cts/tools/vm-tests-tf/src/dot/junit/format/f1/d/ |
T_f1_9.dfh | 5 // parsed: offset 0, len 8: magic : 'dex 8 // parsed: offset 8, len 4: checksum : a9763611 11 // parsed: offset 12, len 20: signature : 1ee9...1036 13 // parsed: offset 32, len 4: file_size : 500 15 // parsed: offset 36, len 4: header_size : 112 17 // parsed: offset 40, len 4: endian_tag : 0x12345678 19 // parsed: offset 44, len 4: link_size : 0 21 // parsed: offset 48, len 4: link_off : 0 (0x000000) 23 // parsed: offset 52, len 4: map_off : 376 (0x000178) 25 // parsed: offset 56, len 4: string_ids_size : [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_object/d/ |
T_iput_object_3.dfh | 4 // parsed: offset 0, len 8: magic : 'dex 7 // parsed: offset 8, len 4: checksum : e2b84420 9 // parsed: offset 12, len 20: signature : 498f...47af 11 // parsed: offset 32, len 4: file_size : 544 13 // parsed: offset 36, len 4: header_size : 112 15 // parsed: offset 40, len 4: endian_tag : 0x12345678 17 // parsed: offset 44, len 4: link_size : 0 19 // parsed: offset 48, len 4: link_off : 0 (0x000000) 21 // parsed: offset 52, len 4: map_off : 408 (0x000198) 23 // parsed: offset 56, len 4: string_ids_size : [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_object/d/ |
T_sput_object_3.dfh | 4 // parsed: offset 0, len 8: magic : 'dex 7 // parsed: offset 8, len 4: checksum : c2134499 9 // parsed: offset 12, len 20: signature : ef04...607d 11 // parsed: offset 32, len 4: file_size : 544 13 // parsed: offset 36, len 4: header_size : 112 15 // parsed: offset 40, len 4: endian_tag : 0x12345678 17 // parsed: offset 44, len 4: link_size : 0 19 // parsed: offset 48, len 4: link_off : 0 (0x000000) 21 // parsed: offset 52, len 4: map_off : 408 (0x000198) 23 // parsed: offset 56, len 4: string_ids_size : [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/verify/a3/d/ |
T_a3_1.dfh | 4 // parsed: offset 0, len 8: magic : 'dex 7 // parsed: offset 8, len 4: checksum : be8e34ae 9 // parsed: offset 12, len 20: signature : 816e...af7b 11 // parsed: offset 32, len 4: file_size : 484 13 // parsed: offset 36, len 4: header_size : 112 15 // parsed: offset 40, len 4: endian_tag : 0x12345678 17 // parsed: offset 44, len 4: link_size : 0 19 // parsed: offset 48, len 4: link_off : 0 (0x000000) 21 // parsed: offset 52, len 4: map_off : 360 (0x000168) 23 // parsed: offset 56, len 4: string_ids_size : [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/verify/a5/d/ |
T_a5_1.dfh | 4 // parsed: offset 0, len 8: magic : 'dex 7 // parsed: offset 8, len 4: checksum : 1acf344e 9 // parsed: offset 12, len 20: signature : 60c2...28af 11 // parsed: offset 32, len 4: file_size : 484 13 // parsed: offset 36, len 4: header_size : 112 15 // parsed: offset 40, len 4: endian_tag : 0x12345678 17 // parsed: offset 44, len 4: link_size : 0 19 // parsed: offset 48, len 4: link_off : 0 (0x000000) 21 // parsed: offset 52, len 4: map_off : 360 (0x000168) 23 // parsed: offset 56, len 4: string_ids_size : [all...] |
/external/chromium/googleurl/src/ |
url_canon_stdurl.cc | 42 const url_parse::Parsed& parsed, 45 url_parse::Parsed* new_parsed) { 47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme, 52 if (parsed.username.is_valid() || parsed.password.is_valid() || 53 parsed.host.is_nonempty() || parsed.port.is_valid()) { 57 if (parsed.scheme.is_valid()) { 63 success &= CanonicalizeUserInfo(source.username, parsed.username [all...] |
url_canon_mailtourl.cc | 44 const url_parse::Parsed& parsed, 46 url_parse::Parsed* new_parsed) { 64 if (parsed.path.is_valid()) { 70 int end = parsed.path.end(); 71 for (int i = parsed.path.begin; i < end; ++i) { 86 CanonicalizeQuery(source.query, parsed.query, NULL, 96 const url_parse::Parsed& parsed, 98 url_parse::Parsed* new_parsed) [all...] |
url_canon_pathurl.cc | 43 const url_parse::Parsed& parsed, 45 url_parse::Parsed* new_parsed) { 47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme, 57 if (parsed.path.is_valid()) { 62 int end = parsed.path.end(); 63 for (int i = parsed.path.begin; i < end; i++) { 87 const url_parse::Parsed& parsed, 89 url_parse::Parsed* new_parsed) [all...] |
url_parse_file.cc | 79 Parsed* parsed) { 86 parsed->host = Component(after_slashes, host_len); 88 parsed->host.reset(); 89 parsed->path.reset(); 98 parsed->host.reset(); 100 &parsed->path, &parsed->query, &parsed->ref); 112 parsed->host = MakeRange(after_slashes, next_slash) [all...] |
url_canon_fileurl.cc | 115 const url_parse::Parsed& parsed, 118 url_parse::Parsed* new_parsed) { 135 bool success = CanonicalizeHost(source.host, parsed.host, 137 success &= DoFileCanonicalizePath<CHAR, UCHAR>(source.path, parsed.path, 139 CanonicalizeQuery(source.query, parsed.query, query_converter, 143 CanonicalizeRef(source.ref, parsed.ref, output, &new_parsed->ref); 152 const url_parse::Parsed& parsed, 155 url_parse::Parsed* new_parsed) [all...] |
url_parse.cc | 137 // parts. The port number will be parsed and the resulting integer will be 265 // Fills in all members of the Parsed structure except for the scheme. 267 // |spec| is the full spec being parsed, of length |spec_len|. 287 Parsed* parsed) { 308 DoParseAuthority(spec, authority, &parsed->username, &parsed->password, 309 &parsed->host, &parsed->port); 310 ParsePath(spec, full_path, &parsed->path, &parsed->query, &parsed->ref) [all...] |
url_parse_unittest.cc | 134 // Parsed ---------------------------------------------------------------------- 158 url_parse::Parsed parsed; local 159 url_parse::ParseStandardURL(length_cases[i], true_length, &parsed); 161 EXPECT_EQ(true_length, parsed.Length()); 169 Parsed::ComponentType component; 176 {"http://u:p@h:8/p?q#r", Parsed::SCHEME, true, 0}, 177 {"http://u:p@h:8/p?q#r", Parsed::SCHEME, false, 0}, 178 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, true, 7}, 179 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, false, 7} 219 url_parse::Parsed parsed; local 332 url_parse::Parsed parsed; local 367 url_parse::Parsed parsed; local 423 url_parse::Parsed parsed; local 463 url_parse::Parsed parsed; local 480 url_parse::Parsed parsed; local 566 url_parse::Parsed parsed; local [all...] |
/external/oprofile/libpp/ |
filename_spec.cpp | 62 parsed_filename parsed = parse_filename(filename, extra); local 64 image = parsed.image; 65 lib_image = parsed.lib_image; 66 cg_image = parsed.cg_image; 67 event = parsed.event; 68 count = op_lexical_cast<int>(parsed.count); 69 unitmask = op_lexical_cast<unsigned int>(parsed.unitmask); 70 tgid.set(parsed.tgid); 71 tid.set(parsed.tid); 72 cpu.set(parsed.cpu) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
LazyDERSequence.java | 10 private boolean parsed = false; field in class:LazyDERSequence 29 parsed = true; 34 if (!parsed) 44 if (parsed)
|
/external/clang/include/clang/Parse/ |
CMakeLists.txt | 1 clang_tablegen(AttrLateParsed.inc -gen-clang-attr-late-parsed-list
|
Makefile | 11 $(Echo) "Building Clang attribute late-parsed table with tblgen" 12 $(Verb) $(ClangTableGen) -gen-clang-attr-late-parsed-list -o $(call SYSPATH, $@) \
|
/external/webkit/LayoutTests/fast/encoding/ |
meta-in-script-expected.txt | 3 This test passes if the charset is parsed from the meta tag outside the script.
|
/external/webkit/LayoutTests/platform/android-v8/fast/encoding/ |
meta-in-script-expected.txt | 3 This test passes if the charset is parsed from the meta tag outside the script.
|
/external/webkit/LayoutTests/fast/dom/NodeList/ |
invalidate-node-lists-when-parsing-expected.txt | 1 This test checks to see if the DOM ContainerNode's NodeList cache is correctly invalidated when new content is parsed. 5 If the cache is not invalidated when the testElement is parsed, both before and after will be "not found", which is a failure.
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
ParseObserver.java | 35 * Indicate that a particular member is now being parsed. 37 * @param bytes {@code non-null;} the source that is being parsed 47 * Indicate that a particular member is no longer being parsed. 49 * @param bytes {@code non-null;} the source that was parsed 54 * @param member {@code non-null;} the actual member that was parsed 62 * @param bytes {@code non-null;} the source that was parsed 63 * @param offset offset into {@code bytes} for what was parsed 64 * @param len number of bytes parsed 65 * @param human {@code non-null;} human form for what was parsed 67 public void parsed(ByteArray bytes, int offset, int len, String human) method in interface:ParseObserver [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
irc.js | 68 var parsed = parseMessage(message); 71 if (parsed.command == commands.PING) { 72 sendCommand(commands.PONG, [], parsed.body); 77 if (parsed.command == commands.PRIVMSG) { 78 if (parsed.body.charCodeAt(0) == 1) { 82 that.onText(parsed.parameters[0], 83 parsed.prefix.split("!")[0], 84 parsed.body); 89 var commandCode = parseInt(parsed.command); 97 that.onConnect(parsed.body) [all...] |
/external/clang/include/clang/Sema/ |
CMakeLists.txt | 6 clang_tablegen(AttrParsedAttrList.inc -gen-clang-attr-parsed-attr-list 11 clang_tablegen(AttrParsedAttrKinds.inc -gen-clang-attr-parsed-attr-kinds
|
Makefile | 17 $(Echo) "Building Clang parsed attribute list with tablegen" 18 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-list -o \ 23 $(Echo) "Building Clang parsed attribute kinds with tablegen" 24 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-kinds -o \
|
/external/clang/test/Parser/ |
cxx11-stmt-attributes.cpp | 35 [[unavailable]] continue; // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here 40 [[unused]] switch (i) { // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here 41 [[uuid]] case 0: // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here 42 [[visibility]] default: // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here 46 [[fastcall]] goto there; // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here 47 [[noinline]] there: // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here 49 [[lock_returned]] try { // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here 53 [[weakref]] return; // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
|
/external/expat/tests/benchmark/ |
README.txt | 10 the file is parsed in chunks of this size 11 <# iterations> ... how often will the file be parsed
|