Searched defs:directive (Results 1 - 20 of 20) sorted by relevance

/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()));
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dvalparam.c41 yasm_call_directive(const yasm_directive *directive, yasm_object *object, argument
47 if ((directive->flags & (YASM_DIR_ARG_REQUIRED|YASM_DIR_ID_REQUIRED)) &&
50 N_("directive `%s' requires an argument"),
51 directive->name);
56 if ((directive->flags & YASM_DIR_ID_REQUIRED) &&
59 N_("directive `%s' requires an identifier parameter"),
60 directive->name);
64 directive->handler(object, valparams, objext_valparams, line);
H A Dsection.c71 using section directive */
84 /* Wrapper around directive for HAMT insertion */
86 const yasm_directive *directive; member in struct:yasm_directive_wrap
160 N_("invalid argument to directive `%s'"), "SECTION");
205 wrap->directive = dir;
373 yasm_call_directive(wrap->directive, object, valparams, objext_valparams,
/external/llvm/lib/Target/XCore/
H A DXCoreAsmPrinter.cpp67 const std::string &directive = ".jmptable");
196 const std::string &directive) {
202 O << "\t" << directive << " "; local
195 printInlineJT(const MachineInstr *MI, int opNum, raw_ostream &O, const std::string &directive) argument
/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/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DDirectiveParser.cpp88 bool isConditionalDirective(DirectiveType directive) argument
90 switch (directive)
260 DirectiveType directive = getDirective(token); local
264 if (skipping() && !isConditionalDirective(directive))
270 switch(directive)
879 DirectiveType directive = getDirective(token); local
882 switch (directive)
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DHTTPParsers.cpp360 DEFINE_STATIC_LOCAL(String, failureReasonInvalidMode, ("invalid mode directive"));
361 DEFINE_STATIC_LOCAL(String, failureReasonInvalidReport, ("invalid report directive"));
362 DEFINE_STATIC_LOCAL(String, failureReasonDuplicateMode, ("duplicate mode directive"));
363 DEFINE_STATIC_LOCAL(String, failureReasonDuplicateReport, ("duplicate report directive"));
364 DEFINE_STATIC_LOCAL(String, failureReasonInvalidDirective, ("unrecognized directive"));
384 // At end of previous directive: consume whitespace, semicolon, and whitespace.
397 // At start of next directive.
759 // Get directive name, parse right hand side of equal sign, then add to map
760 String directive = trimToNextSeparator(safeHeader.substring(pos, nextEqualSignPosition - pos).stripWhiteSpace()); local
769 result.append(pair<String, String>(directive, valu
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc1090 OutputDirective directive; local
1091 directive.name = name;
1093 directive.generator = NULL;
1095 directive.generator = generator_info->generator;
1103 directive.output_location = value;
1105 directive.parameter = value.substr(0, colon_pos);
1106 directive.output_location = value.substr(colon_pos + 1);
1109 output_directives_.push_back(directive);
/external/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc1016 OutputDirective directive; local
1017 directive.name = name;
1019 directive.generator = NULL;
1021 directive.generator = generator_info->generator;
1029 directive.output_location = value;
1031 directive.parameter = value.substr(0, colon_pos);
1032 directive.output_location = value.substr(colon_pos + 1);
1035 output_directives_.push_back(directive);
/external/chromium_org/net/http/
H A Dhttp_response_headers.cc756 bool HttpResponseHeaders::GetCacheControlDirective(const StringPiece& directive, argument
761 size_t directive_size = directive.size();
768 directive.begin()) &&
972 // The max-age directive takes priority over Expires, so if max-age is present
1029 // subject to the expiration mechanism, unless a cache-control directive
1039 // When the must-revalidate directive is present in a response received by
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDebuggerAgent.cpp1231 RefPtr<JSONObject> directive = JSONObject::create(); local
1232 directive->setString("directiveText", directiveText);
1233 breakProgram(InspectorFrontend::Debugger::Reason::CSPViolation, directive.release());
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dnasm-pp.c318 * then jam in the equivalent NASM directive into the input stream.
394 * directive.
553 /* Binary search for the directive name */
570 /* We have found a directive, so jam a % in front of it
613 /* Not a simple directive */
616 /* handle end of endm directive */
671 /* handle repeat directive */
701 /* handle indefinite repeat directive */
836 /* handle end of ends directive */
2295 "preprocessor directive `
2498 char *arg, directive[256]; local
2594 char *local, directive[256]; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 786 milliseconds