HomeSort by relevance Sort by last modified time
    Searched defs:directives (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
dbgfmt.h 51 /** NULL-terminated list of directives. NULL if none. */
52 /*@null@*/ const yasm_directive *directives; member in struct:yasm_dbgfmt_module
section.h 58 /** Currently active section. Used by some directives. NULL if no
66 /** Directives, organized as two level HAMT; first level is parser,
69 /*@owned@*/ struct HAMT *directives; member in struct:yasm_object
objfmt.h 76 /** NULL-terminated list of directives. NULL if none. */
77 /*@null@*/ const yasm_directive *directives; member in struct:yasm_objfmt_module
arch.h 99 /** NULL-terminated list of directives. NULL if none. */
100 /*@null@*/ const yasm_directive *directives; member in struct:yasm_arch_module
  /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
49 * @param dirList the list of directives parsed from the digest challenge
56 Iterator directives = dirList.getIterator(); local
60 while (directives.hasNext())
62 directive = (ParsedDirective)directives.next();
DigestChallenge.java 74 * Checks the semantics of the directives in the directive list as parsed
77 * @param dirList the list of directives parsed from the digest challenge
84 Iterator directives = dirList.getIterator(); local
88 while (directives.hasNext())
90 directive = (ParsedDirective)directives.next();
167 * directives
176 throw new SaslException("Too many qop directives.");
206 throw new SaslException("Too many maxBuf directives.");
221 * directives or Invalid character encoding
228 throw new SaslException("Too many charset directives.")
    [all...]
  /external/smack/src/com/novell/sasl/client/
ResponseAuth.java 46 * Checks the semantics of the directives in the directive list as parsed
49 * @param dirList the list of directives parsed from the digest challenge
56 Iterator directives = dirList.getIterator(); local
60 while (directives.hasNext())
62 directive = (ParsedDirective)directives.next();
DigestChallenge.java 74 * Checks the semantics of the directives in the directive list as parsed
77 * @param dirList the list of directives parsed from the digest challenge
84 Iterator directives = dirList.getIterator(); local
88 while (directives.hasNext())
90 directive = (ParsedDirective)directives.next();
167 * directives
176 throw new SaslException("Too many qop directives.");
206 throw new SaslException("Too many maxBuf directives.");
221 * directives or Invalid character encoding
228 throw new SaslException("Too many charset directives.")
    [all...]
  /external/chromium_org/chrome/common/extensions/
csp_validator.cc 119 std::vector<std::string> directives; local
120 base::SplitString(policy, ';', &directives);
126 for (size_t i = 0; i < directives.size(); ++i) {
127 std::string& input = directives[i];
161 std::vector<std::string> directives; local
162 base::SplitString(policy, ';', &directives);
166 for (size_t i = 0; i < directives.size(); ++i) {
167 std::string& input = directives[i];
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderCounter.cpp 131 const CounterDirectives directives = style->getCounterDirectives(identifier); local
132 if (directives.isDefined()) {
133 value = directives.combinedValue();
134 isReset = directives.isReset();
489 // directives must occur, in which case, RenderCounter::destroyCounterNodes()
586 // as those created by the increment or reset directives and the re-layout that will happen will
603 // as those created by the increment or reset directives and the re-layout that will happen will
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceResponse.cpp 337 Vector<pair<String, String> > directives; local
338 parseCacheHeader(cacheControlValue, directives);
340 size_t directivesSize = directives.size();
344 if (equalIgnoringCase(directives[i].first, noCacheDirective) && directives[i].second.isEmpty())
346 else if (equalIgnoringCase(directives[i].first, noStoreDirective))
348 else if (equalIgnoringCase(directives[i].first, mustRevalidateDirective))
350 else if (equalIgnoringCase(directives[i].first, maxAgeDirective)) {
356 double maxAge = directives[i].second.toDouble(&ok);
  /external/chromium/third_party/libjingle/source/talk/base/
httpclient.cc 79 HttpAttributeList directives; local
80 HttpParseAttributes(value.data(), value.size(), directives);
81 // Response Directives Summary:
90 if (HttpHasAttribute(directives, "no-store", NULL)) {
92 } else if (HttpHasAttribute(directives, "public", NULL)) {
  /external/chromium_org/chrome/browser/history/
history_unittest.cc 1676 syncer::SyncDataList directives; local
1756 syncer::SyncDataList directives; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpclient.cc 79 HttpAttributeList directives; local
80 HttpParseAttributes(value.data(), value.size(), directives);
81 // Response Directives Summary:
90 if (HttpHasAttribute(directives, "no-store", NULL)) {
92 } else if (HttpHasAttribute(directives, "public", NULL)) {
  /external/chromium_org/third_party/WebKit/Source/core/page/
ContentSecurityPolicy.cpp 111 // CSP 1.0 Directives
124 // CSP 1.1 Directives
911 OwnPtr<CSPDirectiveList> directives = adoptPtr(new CSPDirectiveList(policy, type)); local
912 directives->parse(begin, end);
914 if (!directives->checkEval(directives->operativeDirective(directives->m_scriptSrc.get()))) {
915 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";
916 directives->setEvalDisabledErrorMessage(message)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 28 * do_directive checks for directives
220 * up. In these states, all directives are admissible: %elif,
274 static const char *directives[] = { variable
316 * conditional compilation directives. Using the NASM pre-processor does
393 * Macros to make NASM ignore some TASM directives before the first include
488 /* Handle TASM specific directives, which do not contain a % in
549 /* Ignore nasm directives */
688 /* handle two-words directives */
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 1511 milliseconds