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

1 2 3 4 5 6 7

  /external/llvm/test/MC/X86/
x86-target-directives.s 5 # CHECK: unknown directive .code42
6 # CHECK-NOT: unknown directive
  /external/chromium_org/components/copresence/handlers/
directive_handler.cc 25 void DirectiveHandler::AddDirective(const Directive& directive) {
27 DCHECK_EQ(directive.instruction_type(), TOKEN);
30 if (directive.has_published_message_id()) {
31 op_id = directive.published_message_id();
32 } else if (directive.has_subscription_id()) {
33 op_id = directive.subscription_id();
35 NOTREACHED() << "No operation associated with directive!";
39 const TokenInstruction& ti = directive.token_instruction();
46 ti, op_id, base::TimeDelta::FromMilliseconds(directive.ttl_millis()))
    [all...]
directive_handler.h 18 class Directive;
20 // The directive handler manages transmit and receive directives
35 // Adds a directive to handle.
36 virtual void AddDirective(const copresence::Directive& directive);
  /external/llvm/test/MC/MachO/ARM/
bad-darwin-directives.s 10 @ CHECK-ERROR: error: unknown directive
13 @ CHECK-ERROR: error: unknown directive
16 @ CHECK-ERROR: error: unknown directive
19 @ CHECK-ERROR: error: unknown directive
22 @ CHECK-ERROR: error: unknown directive
25 @ CHECK-ERROR: error: unknown directive
28 @ CHECK-ERROR: error: unknown directive
  /external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
ResponseAuth.java 46 * Checks the semantics of the directives in the directive list as parsed
57 ParsedDirective directive; local
62 directive = (ParsedDirective)directives.next();
63 name = directive.getName();
65 m_responseValue = directive.getValue();
70 throw new SaslException("Missing response-auth directive.");
DigestChallenge.java 74 * Checks the semantics of the directives in the directive list as parsed
85 ParsedDirective directive; local
90 directive = (ParsedDirective)directives.next();
91 name = directive.getName();
93 handleRealm(directive);
95 handleNonce(directive);
97 handleQop(directive);
99 handleMaxbuf(directive);
101 handleCharset(directive);
103 handleAlgorithm(directive);
    [all...]
  /external/smack/src/com/novell/sasl/client/
ResponseAuth.java 46 * Checks the semantics of the directives in the directive list as parsed
57 ParsedDirective directive; local
62 directive = (ParsedDirective)directives.next();
63 name = directive.getName();
65 m_responseValue = directive.getValue();
70 throw new SaslException("Missing response-auth directive.");
DigestChallenge.java 74 * Checks the semantics of the directives in the directive list as parsed
85 ParsedDirective directive; local
90 directive = (ParsedDirective)directives.next();
91 name = directive.getName();
93 handleRealm(directive);
95 handleNonce(directive);
97 handleQop(directive);
99 handleMaxbuf(directive);
101 handleCharset(directive);
103 handleAlgorithm(directive);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
CacheControl.java 64 * The "s-maxage" directive is the max age for shared caches. Not to be
66 * this directive is not honored by this cache.
125 String directive = string.substring(tokenStart, pos).trim(); local
151 if ("no-cache".equalsIgnoreCase(directive)) {
153 } else if ("no-store".equalsIgnoreCase(directive)) {
155 } else if ("max-age".equalsIgnoreCase(directive)) {
157 } else if ("s-maxage".equalsIgnoreCase(directive)) {
159 } else if ("public".equalsIgnoreCase(directive)) {
161 } else if ("must-revalidate".equalsIgnoreCase(directive)) {
163 } else if ("max-stale".equalsIgnoreCase(directive)) {
    [all...]
  /external/llvm/test/MC/ARM/
eh-directive-save-diagnostics.s 4 @ Check the diagnostics for .save directive
6 @ .save directive should always come after .fnstart directive and
7 @ before .handlerdata directive.
38 @ CHECK: error: .save or .vsave must precede .handlerdata directive
eh-directive-vsave-diagnostics.s 4 @ Check the diagnostics for .vsave directive
6 @ .vsave directive should always come after .fnstart directive
7 @ and before .handlerdata directive.
38 @ CHECK: error: .save or .vsave must precede .handlerdata directive
eh-directive-pad-diagnostics.s 4 @ Check the diagnostics for .pad directive.
17 @ CHECK: error: .fnstart must precede .pad directive
36 @ CHECK: error: .pad must precede .handlerdata directive
eh-directive-personality-diagnostics.s 4 @ Check the diagnostics for .personality directive.
17 @ CHECK: error: .fnstart must precede .personality directive
36 @ CHECK: error: .personality must precede .handlerdata directive
eh-directive-fnend-diagnostics.s 4 @ Check the diagnostics for mismatched .fnend directive
15 @ CHECK: error: .fnstart must precede .fnend directive
directive-fpu-multiple.s 3 @ The later .fpu directive should overwrite the earlier one.
4 @ See also: directive-fpu-multiple2.s.
eh-directive-cantunwind-diagnostics.s 6 @ .cantunwind directive can't be used with .handlerdata directive nor
7 @ .personality directive. This test case check for the diagnostics for
24 @ CHECK: error: .personality can't be used with .cantunwind directive
44 @ CHECK: error: .handlerdata can't be used with .cantunwind directive
64 @ CHECK: error: .cantunwind can't be used with .personality directive
84 @ CHECK: error: .cantunwind can't be used with .handlerdata directive
101 @ CHECK: error: .fnstart must precede .cantunwind directive
eh-directive-movsp-diagnostics.s 13 @ CHECK: error: .fnstart must precede .movsp directive
28 @ CHECK: error: unexpected .movsp directive
42 @ CHECK: error: sp and pc are not permitted in .movsp directive
56 @ CHECK: error: sp and pc are not permitted in .movsp directive
eh-directive-cantunwind.s 4 @ Check the .cantunwind directive
6 @ When a function contains a .cantunwind directive, we should create an entry
  /external/bison/build-aux/
cross-options.pl 8 my %directive;
64 $directive{$long} = $dir;
77 print ' @code{', $directive{$long}, '}' if $directive{$long};
gnupload 60 (including the constructed directive file)
73 build directive files and upload files by FTP
75 build directive files and upload files by SFTP
283 cat >${2}.directive<<EOF
289 echo "File ${2}.directive:"
290 cat ${2}.directive
291 echo "File ${2}.directive:" | sed 's/./-/g'
309 # BASE Base name for the directive file;
311 # STMT Additional statements for the directive file;
322 rm -f $base.directive $base.directive.as
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
CSPDirectiveList.cpp 36 String message = "Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: \"" + directives->operativeDirective(directives->m_scriptSrc.get())->text() + "\".\n";
76 bool CSPDirectiveList::checkEval(SourceListDirective* directive) const
78 return !directive || directive->allowEval();
81 bool CSPDirectiveList::checkInline(SourceListDirective* directive) const
83 return !directive || (directive->allowInline() && !directive->isHashOrNoncePresent());
86 bool CSPDirectiveList::checkNonce(SourceListDirective* directive, const String& nonce) const
88 return !directive || directive->allowNonce(nonce)
    [all...]
  /external/llvm/test/MC/Mips/
mips_directives_bad.s 5 # CHECK: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in directive
15 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option directive
21 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option directive
27 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option directive
32 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: warning: unknown option in .option directive
37 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option pic0 directive
42 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option pic0 directive
47 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option pic0 directive
52 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option pic2 directive
57 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token in .option pic2 directive
    [all...]
  /external/llvm/test/MC/Sparc/
sparc-directive-xword.s 4 ! SPARC32: error: unknown directive
  /external/llvm/test/MC/AsmParser/
directive_fill.s 52 # CHECK-WARNINGS: '.fill' directive with size greater than 8 has been truncated to 8
59 # CHECK-WARNINGS: '.fill' directive pattern has been truncated to 32-bits
63 # CHECK-WARNINGS: '.fill' directive with negative repeat count has no effect
67 # CHECK-WARNINGS: '.fill' directive with negative size has no effect
floating-literals.s 61 # CHECK-ERROR: unexpected token in directive
65 # CHECK-ERROR: unexpected token in directive
69 # CHECK-ERROR: unexpected token in directive
73 # CHECK-ERROR: unexpected token in directive
77 # CHECK-ERROR: unexpected token in directive
81 # CHECK-ERROR: unexpected token in directive

Completed in 223 milliseconds

1 2 3 4 5 6 7