Searched refs:directive (Results 1 - 25 of 125) sorted by relevance

12345

/external/llvm/test/MC/X86/
H A Dx86-target-directives.s5 # CHECK: unknown directive .code42
6 # CHECK-NOT: unknown directive
/external/chromium_org/components/copresence/handlers/
H A Ddirective_handler.cc25 void DirectiveHandler::AddDirective(const Directive& directive) { argument
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()));
H A Ddirective_handler.h20 // 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/
H A Dbad-darwin-directives.s10 @ 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/
H A DResponseAuth.java46 * Checks the semantics of the directives in the directive list as parsed
57 ParsedDirective directive;
62 directive = (ParsedDirective)directives.next();
63 name = directive.getName();
65 m_responseValue = directive.getValue();
70 throw new SaslException("Missing response-auth directive.");
H A DDigestChallenge.java74 * Checks the semantics of the directives in the directive list as parsed
85 ParsedDirective directive;
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/
H A DResponseAuth.java46 * Checks the semantics of the directives in the directive list as parsed
57 ParsedDirective directive;
62 directive = (ParsedDirective)directives.next();
63 name = directive.getName();
65 m_responseValue = directive.getValue();
70 throw new SaslException("Missing response-auth directive.");
H A DDigestChallenge.java74 * Checks the semantics of the directives in the directive list as parsed
85 ParsedDirective directive;
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/
H A DCacheControl.java64 * 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();
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/
H A Deh-directive-save-diagnostics.s4 @ 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
H A Deh-directive-vsave-diagnostics.s4 @ 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
H A Deh-directive-pad-diagnostics.s4 @ Check the diagnostics for .pad directive.
17 @ CHECK: error: .fnstart must precede .pad directive
36 @ CHECK: error: .pad must precede .handlerdata directive
H A Deh-directive-personality-diagnostics.s4 @ Check the diagnostics for .personality directive.
17 @ CHECK: error: .fnstart must precede .personality directive
36 @ CHECK: error: .personality must precede .handlerdata directive
H A Deh-directive-fnend-diagnostics.s4 @ Check the diagnostics for mismatched .fnend directive
15 @ CHECK: error: .fnstart must precede .fnend directive
H A Ddirective-fpu-multiple.s3 @ The later .fpu directive should overwrite the earlier one.
4 @ See also: directive-fpu-multiple2.s.
H A Deh-directive-cantunwind-diagnostics.s6 @ .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
H A Deh-directive-movsp-diagnostics.s13 @ 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
H A Deh-directive-cantunwind.s4 @ Check the .cantunwind directive
6 @ When a function contains a .cantunwind directive, we should create an entry
/external/bison/build-aux/
H A Dcross-options.pl8 my %directive;
64 $directive{$long} = $dir;
77 print ' @code{', $directive{$long}, '}' if $directive{$long};
H A Dgnupload60 (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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DCSPDirectiveList.cpp36 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 argument
88 return !directive || directiv
91 checkHash(SourceListDirective* directive, const CSPHashValue& hashValue) const argument
96 checkSource(SourceListDirective* directive, const KURL& url) const argument
101 checkAncestors(SourceListDirective* directive, LocalFrame* frame) const argument
114 checkMediaType(MediaListDirective* directive, const String& type, const String& typeAttribute) const argument
128 operativeDirective(SourceListDirective* directive, SourceListDirective* override) const argument
133 checkEvalAndReportViolation(SourceListDirective* directive, const String& consoleMessage, ScriptState* scriptState) const argument
150 checkMediaTypeAndReportViolation(MediaListDirective* directive, const String& type, const String& typeAttribute, const String& consoleMessage) const argument
163 checkInlineAndReportViolation(SourceListDirective* directive, const String& consoleMessage, const String& contextURL, const WTF::OrdinalNumber& contextLine, bool isScript) const argument
188 checkSourceAndReportViolation(SourceListDirective* directive, const KURL& url, const String& effectiveDirective) const argument
225 checkAncestorsAndReportViolation(SourceListDirective* directive, LocalFrame* frame, const KURL& url) const argument
512 setCSPDirective(const String& name, const String& value, OwnPtr<CSPDirectiveType>& directive) argument
[all...]
/external/llvm/test/MC/Mips/
H A Dmips_directives_bad.s5 # 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/
H A Dsparc-directive-xword.s4 ! SPARC32: error: unknown directive
/external/llvm/test/MC/AsmParser/
H A Ddirective_fill.s52 # 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
H A Dfloating-literals.s61 # 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 5806 milliseconds

12345