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

1 2 3

  /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();
DirectiveList.java 49 byte[] directives)
58 m_directives = new String(directives, "UTF-8");
68 * separated directives, and parses the string into the individual directives
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();
DirectiveList.java 49 byte[] directives)
58 m_directives = new String(directives, "UTF-8");
68 * separated directives, and parses the string into the individual directives
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/extensions/common/
csp_validator.cc 125 std::vector<std::string> directives; local
126 base::SplitString(policy, ';', &directives);
132 for (size_t i = 0; i < directives.size(); ++i) {
133 std::string& input = directives[i];
167 std::vector<std::string> directives; local
168 base::SplitString(policy, ';', &directives);
172 for (size_t i = 0; i < directives.size(); ++i) {
173 std::string& input = directives[i];
  /external/llvm/test/MC/Mips/
mips_directives_bad.s 1 # Error checking for malformed directives
cfi.s 6 # Check that we can accept register names in CFI directives and that they are
mips-abi-bad.s 1 # Error checking for malformed abi related directives
  /external/llvm/test/MC/X86/AlignedBundling/
asm-printing-bundle-directives.s 4 # bundling directives.
  /external/llvm/test/MC/ARM/
directive-fpu-multiple.s 1 @ Check multiple .fpu directives.
eh-directive-fnstart-diagnostics.s 4 @ Check the diagnostics for the mismatched .fnstart directives.
eh-directive-save-diagnostics.s 19 @ CHECK: error: .fnstart must precede .save or .vsave directives
eh-directive-vsave-diagnostics.s 19 @ CHECK: error: .fnstart must precede .save or .vsave directives
eh-directive-personalityindex-diagnostics.s 58 @ CHECK: error: multiple personality directives
77 @ CHECK: error: multiple personality directives
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
mem.h 23 #warning No alignment directives known for this compiler.
  /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
objfmt.h 76 /** NULL-terminated list of directives. NULL if none. */
77 /*@null@*/ const yasm_directive *directives; member in struct:yasm_objfmt_module
  /external/libvpx/libvpx/vpx_ports/
mem.h 23 #warning No alignment directives known for this compiler.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
mem.h 23 #warning No alignment directives known for this compiler.
  /external/bison/etc/
bench.pl.in 30 my ($base, $max, $directives) = @_;
131 my ($base, $max, $directives) = @_;
152 $directives
350 while (my ($name, $directives) = each %test)
354 &$generator ($name, 200, $directives);
  /external/chromium_org/third_party/WebKit/Source/platform/network/
HTTPParsers.cpp 819 Vector<pair<String, String> > directives; local
820 parseCacheHeader(cacheControlValue, directives);
822 size_t directivesSize = directives.size();
826 if (equalIgnoringCase(directives[i].first, noCacheDirective) && directives[i].second.isEmpty()) {
828 } else if (equalIgnoringCase(directives[i].first, noStoreDirective)) {
830 } else if (equalIgnoringCase(directives[i].first, mustRevalidateDirective)) {
832 } else if (equalIgnoringCase(directives[i].first, maxAgeDirective)) {
838 double maxAge = directives[i].second.toDouble(&ok);
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
CSPDirectiveList.cpp 30 OwnPtr<CSPDirectiveList> directives = adoptPtr(new CSPDirectiveList(policy, type, source)); local
31 directives->parse(begin, end);
33 if (!directives->checkEval(directives->operativeDirective(directives->m_scriptSrc.get()))) {
34 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";
35 directives->setEvalDisabledErrorMessage(message);
38 if (directives->isReportOnly() && directives->reportURIs().isEmpty()
    [all...]
  /external/llvm/test/MC/X86/
x86_long_nop.s 7 # Ensure alignment directives also emit sequences of 15-byte NOPs on processors

Completed in 684 milliseconds

1 2 3