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

1 2

  /external/okhttp/src/main/java/libcore/net/http/
HeaderParser.java 25 void handle(String directive, String parameter);
36 String directive = value.substring(tokenStart, pos).trim(); local
40 handler.handle(directive, null);
64 handler.handle(directive, parameter);
RequestHeaders.java 69 @Override public void handle(String directive, String parameter) {
70 if ("no-cache".equalsIgnoreCase(directive)) {
72 } else if ("max-age".equalsIgnoreCase(directive)) {
74 } else if ("max-stale".equalsIgnoreCase(directive)) {
76 } else if ("min-fresh".equalsIgnoreCase(directive)) {
78 } else if ("only-if-cached".equalsIgnoreCase(directive)) {
ResponseHeaders.java 87 * The "s-maxage" directive is the max age for shared caches. Not to be
89 * this directive is not honored by this cache.
118 @Override public void handle(String directive, String parameter) {
119 if ("no-cache".equalsIgnoreCase(directive)) {
121 } else if ("no-store".equalsIgnoreCase(directive)) {
123 } else if ("max-age".equalsIgnoreCase(directive)) {
125 } else if ("s-maxage".equalsIgnoreCase(directive)) {
127 } else if ("public".equalsIgnoreCase(directive)) {
129 } else if ("must-revalidate".equalsIgnoreCase(directive)) {
339 * a 'public', 'must-revalidate' or 's-maxage' directive
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HeaderParser.java 28 void handle(String directive, String parameter);
39 String directive = value.substring(tokenStart, pos).trim(); local
43 handler.handle(directive, null);
67 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 87 * The "s-maxage" directive is the max age for shared caches. Not to be
89 * this directive is not honored by this cache.
118 @Override public void handle(String directive, String parameter) {
119 if (directive.equalsIgnoreCase("no-cache")) {
121 } else if (directive.equalsIgnoreCase("no-store")) {
123 } else if (directive.equalsIgnoreCase("max-age")) {
125 } else if (directive.equalsIgnoreCase("s-maxage")) {
127 } else if (directive.equalsIgnoreCase("public")) {
129 } else if (directive.equalsIgnoreCase("must-revalidate")) {
344 * a 'public', 'must-revalidate' or 's-maxage' directive
    [all...]
  /external/v8/test/preparser/
strict-octal-use-strict-after.js 28 // Strict mode with octal escape in string/directive prologue looking like
29 // "use strict", after "use strict" directive.
strict-octal-use-strict-before.js 28 // Strict mode with octal escape in string/directive prologue looking like
29 // "use strict, before "use strict" directive.
  /external/llvm/include/llvm/Support/
AlignOf.h 90 # error No supported align as directive.
  /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/v8/test/mjsunit/
strict-mode.js 64 // Incorrect 'use strict' directive.
70 // Incorrectly place 'use strict' directive.
73 // 'use strict' in non-directive position.
82 "directive 1";\
83 "another directive";\
85 "directive after strict";\
135 // Strict mode applies to the function in which the directive is used..
165 "octal\\032directive";\
    [all...]
  /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/bison/src/
scan-gram.l 153 directive %{letter}({letter}|[0-9]|-)*
260 {directive} {
261 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 47 # modes. To support legacy code a synthetic directive, .picmeup,
423 { package directive; # pick up directives, which start with .
800 if (directive->re(\$line)) {
801 printf "%s",directive->out();
    [all...]
  /external/smali/smali/src/main/antlr3/org/jf/smali/
smaliParser.g 323 throw new SemanticException(input, "The file must contain a .class directive");
328 throw new SemanticException(input, "The file must contain a .super directive");
356 or class annotations until we determine if there is an .end field directive. In either case, we still "consume" and parse
413 directive=REGISTERS_DIRECTIVE regCount=integral_literal -> ^(I_REGISTERS[$REGISTERS_DIRECTIVE, "I_REGISTERS"] $regCount)
414 | directive=LOCALS_DIRECTIVE regCount2=integral_literal -> ^(I_LOCALS[$LOCALS_DIRECTIVE, "I_LOCALS"] $regCount2)
418 throw new SemanticException(input, $directive, "There can only be a single .registers or .locals directive in a method");
615 or method annotations until we determine if there is an .end parameter directive. In either case, we still "consume" and parse
    [all...]
  /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/llvm/unittests/Support/
AlignOfTest.cpp 42 # error No supported align as directive.

Completed in 759 milliseconds

1 2