/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
PEMStructure.java | 8 * Parsed PEM structure.
|
/external/webkit/LayoutTests/fast/encoding/resources/ |
invalid-xml-shift-jis.xml | 4 <test/> <!-- shouldn't ever be parsed, as the parser should abort at the first sign of non-well-formedness -->
|
invalid-xml-utf8.xml | 4 <test/> <!-- shouldn't ever be parsed, as the parser should abort at the first sign of non-well-formedness -->
|
invalid-xml-x-mac-thai.xml | 4 <test/> <!-- shouldn't ever be parsed, as the parser should abort at the first sign of non-well-formedness -->
|
/external/webkit/Source/WebKit/chromium/public/ |
WebURL.h | 55 WebURL(const WebCString& spec, const url_parse::Parsed& parsed, bool isValid) 57 , m_parsed(parsed) 77 void assign(const WebCString& spec, const url_parse::Parsed& parsed, bool isValid) 80 m_parsed = parsed; 89 const url_parse::Parsed& parsed() const function in class:WebKit::WebURL 137 url_parse::Parsed m_parsed;
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
AnnotationParser.java | 52 /** {@code non-null;} class file being parsed */ 69 * was parsed 98 * @return {@code non-null;} the parsed constant value 120 * @param visibility {@code non-null;} visibility of the parsed annotations 121 * @return {@code non-null;} the parsed list of lists of annotations 144 * @param visibility {@code non-null;} visibility of the parsed annotations 169 * @param visibility {@code non-null;} visibility of the parsed annotations 178 parsed(1, "num_parameters: " + Hex.u1(count)); 185 parsed(0, "parameter_annotations[" + i + "]:"); 204 * @param visibility {@code non-null;} visibility of the parsed annotation 457 private void parsed(int length, String message) { method in class:AnnotationParser [all...] |
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
URLParser.h | 61 // parts. The port number will be parsed and the resulting integer will be 116 // |spec| is the full spec being parsed, of length |specLength|. 119 static void parseAfterScheme(const CHAR* spec, int specLength, int afterScheme, URLSegments& parsed) 142 parseAuthority(spec, authority, parsed.username, parsed.password, parsed.host, parsed.port); 143 parsePath(spec, fullPath, parsed.path, parsed.query, parsed.fragment) [all...] |
/external/oprofile/libpp/ |
arrange_profiles.cpp | 464 template_from_profile(parsed_filename const & parsed, 469 ptemplate.event = parsed.event; 470 ptemplate.count = parsed.count; 473 ptemplate.unitmask = parsed.unitmask; 475 ptemplate.tgid = parsed.tgid; 477 ptemplate.tid = parsed.tid; 479 ptemplate.cpu = parsed.cpu; 492 parsed_filename const & parsed, 496 cls.ptemplate = template_from_profile(parsed, merge_by); 505 * we fail to detect that parsed sample filename for two distinct sample 658 parsed_filename parsed = parse_filename(*it, extra); local [all...] |
/external/llvm/test/MC/ARM/ |
arm-it-block.s | 9 @ 'it' is parsed but not encoded.
|
/frameworks/support/volley/src/com/android/volley/toolbox/ |
StringRequest.java | 51 String parsed; local 53 parsed = new String(response.data, HttpHeaderParser.parseCharset(response.headers)); 55 parsed = new String(response.data); 57 return Response.success(parsed, HttpHeaderParser.parseCacheHeaders(response));
|
/external/libvpx/nestegg/ |
TODO | 12 - Optionally build a Cue index as Clusters are parsed. 14 - Avoid building a list of Clusters as they are parsed and retain only the 15 last one parsed.
|
/frameworks/base/services/java/com/android/server/ |
NativeDaemonEvent.java | 25 * Parsed event from native side of {@link NativeDaemonConnector}. 126 final String[] parsed = rawEvent.split(" "); local 127 if (parsed.length < 2) { 135 code = Integer.parseInt(parsed[0]); 136 skiplength = parsed[0].length() + 1; 143 if (parsed.length < 3) { 147 cmdNumber = Integer.parseInt(parsed[1]); 148 skiplength += parsed[1].length() + 1; 191 final ArrayList<String> parsed = new ArrayList<String>(); local 230 parsed.add(word) [all...] |
/external/chromium/googleurl/src/ |
url_parse.h | 89 // Parsed --------------------------------------------------------------------- 93 // and its corresponding Parsed structure separately. 97 // url_parse::Parsed parsed; 103 // url_parseParseStandardURL(url, url_len, &parsed); 105 // url_parse::ParseFileURL(url, url_len, &parsed); 107 // url_parse::ParsePathURL(url, url_len, &parsed); 109 struct Parsed { 123 GURL_API Parsed(); 128 // of the string. For example "http://": the parsed structure will onl [all...] |
url_canon_internal.cc | 307 url_parse::Parsed* parsed) { 308 // Get the source and parsed structures of the things we are replacing. 310 const url_parse::Parsed& repl_parsed = repl.components(); 313 &source->scheme, &parsed->scheme); 315 &source->username, &parsed->username); 317 &source->password, &parsed->password); 321 &source->host, &parsed->host); 322 if (parsed->host.len == -1) 323 parsed->host.len = 0 [all...] |
/frameworks/support/volley/src/com/android/volley/ |
Response.java | 20 * Encapsulates a parsed response for delivery. 22 * @param <T> Parsed type of this response 26 /** Callback interface for delivering parsed responses. */ 41 /** Returns a successful response containing the parsed result. */ 54 /** Parsed response, or null in the case of error. */
|
/external/chromium/sdch/open-vcdiff/src/ |
headerparser.h | 29 // parsed and how much remains. 42 // The number of bytes remaining to be parsed. This is not necessarily the 49 // The number of bytes that have already been parsed. 56 // The start of the data remaining to be parsed. 59 // Returns a pointer to the start of the data remaining to be parsed. 75 // to be parsed before the function was called. 194 // header_start should be the start of the header to be parsed; 202 // If the function returns true, then the element was parsed successfully 205 // reason that the element could not be parsed, which will be either 207 // was reached before the end of the element to be parsed.) Once one of thes [all...] |
/sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/ |
IDomParser.java | 31 * to builtin services, such as already-parsed data structures in XML editors. 41 * @param context the context pointing to the file to be parsed, typically 45 * @return the parsed DOM document, or null if parsing fails 53 * @param context information about the file being parsed 75 * @param context information about the file previously parsed 76 * @param document the document that was parsed and is now being disposed
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
toplevel.ml | 20 print_endline "parsed a function definition."; 23 print_endline "parsed an extern."; 27 print_endline "parsed a top-level expr";
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
toplevel.ml | 22 print_endline "parsed a function definition."; 26 print_endline "parsed an extern."; 31 print_endline "parsed a top-level expr";
|
/frameworks/base/tools/preload/ |
MemoryUsage.java | 53 String[] parsed = line.split(","); local 55 nativeSharedPages = Integer.parseInt(parsed[1]); 56 javaSharedPages = Integer.parseInt(parsed[2]); 57 otherSharedPages = Integer.parseInt(parsed[3]); 58 nativePrivatePages = Integer.parseInt(parsed[4]); 59 javaPrivatePages = Integer.parseInt(parsed[5]); 60 otherPrivatePages = Integer.parseInt(parsed[6]); 61 allocCount = Integer.parseInt(parsed[7]); 62 allocSize = Integer.parseInt(parsed[8]); 63 freedCount = Integer.parseInt(parsed[9]) [all...] |
/frameworks/support/volley/tests/src/com/android/volley/ |
RequestQueueTest.java | 87 final AtomicInteger parsed = new AtomicInteger(); local 90 // second request is only handled after the first one has been parsed and delivered. 91 DelayedRequest req1 = new DelayedRequest(1500, parsed, delivered); 92 DelayedRequest req2 = new DelayedRequest(0, parsed, delivered) { 95 assertEquals(1, parsed.get()); // req1 must have been parsed. 96 assertEquals(1, delivered.get()); // req1 must have been parsed. 219 // Make sure that all "after" requests were parsed 222 // Make sure that at least one of the "before" requests was parsed 269 fail("Undrainable request should have been parsed"); [all...] |
/cts/tests/tests/webkitsecurity/assets/ |
close-in-onmessage-crash.js | 26 postMessage('PASS: worker: Parsed successfully.');
|
/external/chromium/chrome/browser/autofill/ |
phone_field.h | 81 // attempted to be parsed. If parsing successful, points to the first field 82 // after parsed fields. 83 // |regular_phone| - true if the parsed phone is a HOME phone, false 97 // Parsed fields.
|
/external/chromium/net/ftp/ |
ftp_ctrl_response_buffer.h | 55 // Indicates that this line could be parsed as a complete and valid 60 // Part of response parsed as status code. 63 // Part of response parsed as status text. 74 // We keep not-yet-parsed data in a string buffer.
|
/external/webkit/LayoutTests/fast/encoding/ |
css-charset-default-expected.txt | 1 Test for bug 11011: External CSS is parsed as iso-8859-1 even though the main document is utf-8.
|