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

1 2

  /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/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/llvm/test/MC/X86/AlignedBundling/
asm-printing-bundle-directives.s 4 # bundling directives.
  /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
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
section.c 90 * Standard "builtin" object directives.
194 HAMT *level2 = HAMT_search(object->directives, dir->parser);
200 level2 = HAMT_insert(object->directives, dir->parser,
235 /* Create directives HAMT */
236 object->directives = HAMT_create(1, yasm_internal_error_);
284 /* Add directives to HAMT. Note ordering here determines priority. */
286 ((yasm_objfmt_base *)object->objfmt)->module->directives);
288 ((yasm_dbgfmt_base *)object->dbgfmt)->module->directives);
290 ((yasm_arch_base *)object->arch)->module->directives);
365 level2 = HAMT_search(object->directives, parser)
    [all...]
  /external/libvpx/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/llvm/test/MC/ARM/
eh-directive-fnstart-diagnostics.s 4 @ Check the diagnostics for the mismatched .fnstart directives.
eh-directive-save-diagnoatics.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-section.s 4 @ Check the combination of .section, .fnstart, and .fnend directives.
10 @ For the functions in custom section specified by .section directives,
  /external/llvm/test/MC/X86/
x86_long_nop.s 6 # Ensure alignment directives also emit sequences of 15-byte NOPs on processors
  /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/chrome/browser/resources/net_internals/
eventsview.js 290 * Parse any "sort:" directives, and update |comparisonFunction_| and
294 * Returns |filterText| with all sort directives removed, including
318 * Parse any "is:" directives, and update |filter| accordingly.
320 * Returns |filterText| with all "is:" directives removed, including
340 * Parses all directives that take arbitrary strings as input,
341 * and updates |filter| accordingly. Directives of these types
344 * Returns |filterText| with all recognized directives removed.
347 var directives = ['type', 'id'];
348 for (var i = 0; i < directives.length; ++i) {
350 var directive = directives[i]
    [all...]
  /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/chrome/browser/history/
history_unittest.cc 1676 syncer::SyncDataList directives; local
1756 syncer::SyncDataList directives; local
    [all...]
  /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/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)) {

Completed in 556 milliseconds

1 2