HomeSort by relevance Sort by last modified time
    Searched refs:directive (Results 1 - 23 of 23) sorted by null

  /libcore/luni/src/main/java/libcore/net/http/
HeaderParser.java 22 void handle(String directive, String parameter);
33 String directive = value.substring(tokenStart, pos).trim(); local
37 handler.handle(directive, null);
61 handler.handle(directive, parameter);
RequestHeaders.java 69 @Override public void handle(String directive, String parameter) {
70 if (directive.equalsIgnoreCase("no-cache")) {
72 } else if (directive.equalsIgnoreCase("max-age")) {
74 } else if (directive.equalsIgnoreCase("max-stale")) {
76 } else if (directive.equalsIgnoreCase("min-fresh")) {
78 } else if (directive.equalsIgnoreCase("only-if-cached")) {
ResponseHeaders.java 86 * The "s-maxage" directive is the max age for shared caches. Not to be
88 * this directive is not honored by this cache.
119 @Override public void handle(String directive, String parameter) {
120 if (directive.equalsIgnoreCase("no-cache")) {
122 } else if (directive.equalsIgnoreCase("no-store")) {
124 } else if (directive.equalsIgnoreCase("max-age")) {
126 } else if (directive.equalsIgnoreCase("s-maxage")) {
128 } else if (directive.equalsIgnoreCase("public")) {
130 } else if (directive.equalsIgnoreCase("must-revalidate")) {
352 * a 'public', 'must-revalidate' or 's-maxage' directive
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
misc.c 388 char directive[MAXLINE], filename[MAXLINE]; local
415 sprintf( directive, line_fmt, linenum, filename );
419 /* Account for the line directive itself. */
422 sprintf( directive, line_fmt, out_linenum, filename );
425 /* If output_file is nil then we should put the directive in
430 fputs( directive, output_file );
433 add_action( directive );
  /bionic/libc/kernel/tools/
cpp.py 932 self.throw( BadExpectedToken, "missing right-paren after 'defined' directive")
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
eventsview.js 245 * Looks for the first occurence of |directive|:parameter in |sourceText|.
249 * |remainingText| - |sourceText| with |directive|:parameter removed,
255 EventsView.prototype.parseDirective_ = function(sourceText, directive) {
257 // whether or not the directive is at the start of the string.
259 regExp = new RegExp('\\s+' + directive + ':(\\S*)\\s*', 'i');
277 directive) {
278 var matchInfo = this.parseDirective_(sourceText, directive);
282 // Remove any leading or trailing '-' from the directive.
291 * |doSortBackwards_|as needed. Note only the last valid sort directive
350 var directive = directives[i]
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 66 const std::string &directive = ".jmptable");
208 const std::string &directive) {
214 O << "\t" << directive << " "; local
  /cts/tools/dasm/src/dasm/
Scanner.java 102 * Holds new variables defined by .set directive
285 // keyword or directive?
461 // directive?
468 if (charBuf.charAt(0) != '.') // directive?
470 throw new DasmError("Unknown directive or bad number format");
parser.cup 97 complex_instruction, defmethod, directive, endmethod, field_list,
560 directive
581 directive ::=
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 1016 OutputDirective directive; local
1017 directive.name = name;
1019 directive.generator = NULL;
1021 directive.generator = generator_info->generator;
    [all...]
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.cpp 333 // RFC2616 14.9.1: A no-cache directive with a value is only meaningful for proxy caches.
640 // Get directive name, parse right hand side of equal sign, then add to map
641 String directive = trimToNextSeparator(safeHeader.substring(pos, nextEqualSignPosition - pos).stripWhiteSpace()); local
650 result.append(pair<String, String>(directive, value.substring(1, nextDoubleQuotePosition - 1).stripWhiteSpace()));
660 result.append(pair<String, String>(directive, trimToNextSeparator(value.substring(1, value.length() - 1).stripWhiteSpace())));
668 result.append(pair<String, String>(directive, trimToNextSeparator(value.substring(0, nextCommaPosition2).stripWhiteSpace())));
672 result.append(pair<String, String>(directive, trimToNextSeparator(value)));
677 // Add directive to map with empty string as value
681 // Add last directive to map with empty string as value
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 47 # modes. To support legacy code a synthetic directive, .picmeup,
419 { package directive; # pick up directives, which start with .
653 if (directive->re(\$line)) {
654 printf "%s",directive->out();
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp 186 template <class TreeBuilder> TreeStatement parseStatement(TreeBuilder&, const Identifier*& directive);
685 const Identifier* directive = 0; local
688 while (TreeStatement statement = parseStatement(context, directive)) {
690 if (directive) {
691 if (!hasSetStrict && m_globalData->propertyNames->useStrictIdentifier == *directive) {
    [all...]
  /external/v8/test/mjsunit/
strict-mode.js 64 // Incorrect 'use strict' directive.
70 // 'use strict' in non-directive position.
79 "directive 1";\
80 "another directive";\
82 "directive after strict";\
132 // Strict mode applies to the function in which the directive is used..
162 "octal\\032directive";\
    [all...]
  /external/bison/src/
scan-gram.l 153 directive %{letter}({letter}|[0-9]|-)*
260 {directive} {
261 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
    [all...]
  /external/bluetooth/glib/glib/gnulib/
vasnprintf.c 338 /* Execute a single directive. */
999 directive. */
1002 /* Don't use the '%n' directive; instead, look
  /external/e2fsprogs/intl/
vasnprintf.c 81 # define DIRECTIVE wchar_t_directive
96 # define DIRECTIVE char_directive
139 DIRECTIVE *dp;
145 /* Allocate a small buffer that will hold a directive passed to
221 /* Execute a single directive. */
770 directive. */
773 /* Don't use the '%n' directive; instead, look
784 It doesn't understand the '%n' directive,
882 #undef DIRECTIVE
  /external/icu4c/tools/gensprep/
filterRFC3454.pl 662 --normalize Embed the normalization directive in the output file
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.c     [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex     [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.js 344 // @media (max-width) directive once http://crbug.com/70930 is fixed.
    [all...]
  /external/v8/src/
parser.cc 1119 Handle<String> directive = Handle<String>::cast(literal->handle()); local
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 545 milliseconds