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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/common/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /external/iptables/include/linux/netfilter_ipv4/
ipt_comment.h 7 unsigned char comment[IPT_MAX_COMMENT_LEN]; member in struct:ipt_comment_info
  /external/kernel-headers/original/linux/netfilter/
xt_comment.h 7 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ExtendedLexicalHandler.java 33 * This method is used to notify of a comment
34 * @param comment the comment, but unlike the SAX comment() method this
38 public void comment(String comment) throws SAXException; method in interface:ExtendedLexicalHandler
  /external/nist-sip/java/gov/nist/javax/sip/header/
RetryAfter.java 49 * Comment for <code>serialVersionUID</code>
61 /** comment field
63 protected String comment; field in class:RetryAfter
80 if (comment != null)
81 s.append(SP + LPAREN + comment + RPAREN);
91 * @return true if comment exist, false otherwise
94 return comment != null;
97 /** remove comment field
100 comment = null;
139 * Gets the comment of RetryAfterHeader
    [all...]
  /external/webkit/WebKit/win/
WebLocalizableStrings.h 59 #define UI_STRING(string, comment) WebLocalizedStringUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), string)
60 #define UI_STRING_KEY(string, key, comment) WebLocalizedStringUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key)
61 #define LPCTSTR_UI_STRING(string, comment) WebLocalizedLPCTSTRUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), string)
62 #define LPCTSTR_UI_STRING_KEY(string, key, comment) WebLocalizedLPCTSTRUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key)
66 #define UI_STRING(string, comment) WebLocalizedStringUTF8(0, string)
67 #define UI_STRING_KEY(string, key, comment) WebLocalizedStringUTF8(0, key)
68 #define LPCTSTR_UI_STRING(string, comment) WebLocalizedLPCTSTRUTF8(0, string)
69 #define LPCTSTR_UI_STRING_KEY(string, key, comment) WebLocalizedLPCTSTRUTF8(0, key)
  /build/tools/droiddoc/src/
KeywordEntry.java 22 KeywordEntry(String label, String href, String comment)
26 this.comment = comment;
33 data.setValue(base + ".comment", this.comment);
48 private String comment; field in class:KeywordEntry
DocInfo.java 27 return comment().isHidden();
31 return comment().isDocOnly();
39 public Comment comment() method in class:DocInfo
42 mComment = new Comment(mRawCommentText, parent(), mPosition);
63 Comment mComment;
AttributeInfo.java 35 private Comment mComment;
44 for (AttrTagInfo comment: attrField.comment().attrTags()) {
45 String n = comment.name();
55 public Comment comment() { method in class:AttributeInfo
57 for (AttrTagInfo attr: attrField.comment().attrTags()) {
58 Comment c = attr.description();
66 return new Comment("", mClass, new SourcePositionInfo());
84 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags())
    [all...]
  /external/chromium/net/http/
http_auth_handler_ntlm_win.cc 18 #pragma comment(lib, "secur32.lib")
  /external/webkit/WebKit/mac/Misc/
WebLocalizableStrings.h 60 #define UI_STRING(string, comment) WebLocalizedString(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), string)
61 #define UI_STRING_KEY(string, key, comment) WebLocalizedString(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key)
65 #define UI_STRING(string, comment) WebLocalizedString(0, string)
66 #define UI_STRING_KEY(string, key, comment) WebLocalizedString(0, key)
  /cts/tools/test-progress-new/src/testprogress2/
ClassOriginator.java 29 ClassOriginator(ClassDoc classDoc, String comment) {
31 mComment = comment;
  /external/openssl/crypto/des/asm/
desboth.pl 19 &comment("");
20 &comment("Load the data words");
25 &comment("");
26 &comment("IP");
64 &comment("");
65 &comment("FP");
  /external/iptables/extensions/
libipt_comment.c 1 /* Shared library add-on to iptables to add comment match support.
5 * Initial comment match
22 "COMMENT match options:\n"
23 "--comment COMMENT Attach a comment to a rule\n\n"
28 { "comment", 1, 0, '1' },
39 "COMMENT must be shorter than %i characters", IPT_MAX_COMMENT_LEN);
41 strcpy((char *)info->comment, s);
59 "Sorry, you can't have an inverted comment");
102 static struct iptables_match comment = { variable in typeref:struct:iptables_match
    [all...]
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenTest.java 41 final String comment = "work"; local
42 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment);
45 assertEquals(comment, rfc822Token1.getComment());
47 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment);
50 assertEquals(comment, rfc822Token2.getComment());
52 Rfc822Token rfc822Token3 = new Rfc822Token(name, null, comment);
55 assertEquals(comment, rfc822Token3.getComment());
78 final String comment = "work"; local
79 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment);
100 "1. not clear what is supposed to happen if comment is null."
129 String comment = "work"; local
160 final String comment = "work"; local
    [all...]
  /external/openssl/crypto/bf/asm/
bf-686.pl 33 &comment("");
34 &comment("Load the 2 words");
39 &comment("");
40 &comment("P pointer, s and enc flag");
53 &comment("");
54 &comment("Round $i");
57 &comment("");
58 &comment("Round ".sprintf("%d",$i+1));
73 &comment("");
74 &comment("Round $i")
    [all...]
bf-586.pl 31 &comment("");
40 &comment("Load the 2 words");
56 &comment("");
57 &comment("Round $i");
60 &comment("");
61 &comment("Round ".sprintf("%d",$i+1));
75 &comment("");
76 &comment("Round $i");
78 &comment("");
79 &comment("Round ".sprintf("%d",$i-1))
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
SetCookie.java 50 * cookie's purpose will be described using this comment.
52 * @param comment
56 void setComment(String comment);

Completed in 663 milliseconds

1 2 3 4 5 6 7 8 91011>>