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

1 2 3 4

  /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
  /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/chromium_org/extensions/common/
csp_validator.cc 169 std::vector<std::string> directives; local
170 base::SplitString(policy, ';', &directives);
176 for (size_t i = 0; i < directives.size(); ++i) {
177 std::string& input = directives[i];
211 std::vector<std::string> directives; local
212 base::SplitString(policy, ';', &directives);
216 for (size_t i = 0; i < directives.size(); ++i) {
217 std::string& input = directives[i];
  /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
  /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/chromium_org/third_party/cython/src/Cython/
TestUtils.py 155 directives = node.directives
156 if 'test_assert_path_exists' in directives:
157 for path in directives['test_assert_path_exists']:
162 if 'test_fail_if_path_exists' in directives:
163 for path in directives['test_fail_if_path_exists']:
  /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/cython/src/Cython/Compiler/
ParseTreeTransforms.py 171 TemplatedTypeNode has its directives interpreted:
615 After parsing, directives can be stored in a number of places:
623 - Set the directives attribute of the ModuleNode for global directives.
624 - Use a CompilerDirectivesNode to override directives for a subtree.
629 The directives are stored in dictionaries from name to value in effect.
630 Each such dictionary is always filled in for all possible directives,
633 The available directives are controlled in Options.py.
699 directives = copy.deepcopy(Options.directive_defaults)
700 directives.update(copy.deepcopy(self.compilation_directive_defaults)
    [all...]
  /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/cython/src/Tools/
cystdlib.py 94 for modules, directives in all_groups:
101 d.update(directives)
  /external/chromium_org/third_party/cython/src/Cython/Build/
Cythonize.py 35 directives = Options.parse_directive_list(
37 setattr(parser.values, dest, directives)
86 compiler_directives=options.directives,
138 parser.add_option('-X', '--directive', metavar='NAME=VALUE,...', dest='directives',

Completed in 1373 milliseconds

1 2 3 4