/prebuilts/ndk/android-ndk-r7/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
|
/prebuilts/ndk/android-ndk-r7/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
|
/prebuilts/ndk/android-ndk-r7/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
|
/prebuilts/ndk/android-ndk-r7/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
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/netfilter/ |
xt_comment.h | 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/netfilter/ |
xt_comment.h | 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
CommentMethodItem.java | 37 private final String comment; field in class:CommentMethodItem 40 public CommentMethodItem(String comment, int codeAddress, double sortOrder) { 42 this.comment = comment; 52 writer.write(comment);
|
/external/clang/test/Preprocessor/ |
pragma_microsoft.c | 8 #pragma comment(linker,"foo=" FOO) // expected-error {{pragma comment requires parenthesized identifier and optional string}} 9 #pragma comment(linker," bar=" BAR) 11 #pragma comment( user, "Compiled on " __DATE__ " at " __TIME__ ) 13 #pragma comment(foo) // expected-error {{unknown kind of pragma comment}} 14 #pragma comment(compiler,) // expected-error {{pragma comment requires}} 16 #pragma comment(foo) // macro expand kind. 17 #pragma comment(foo) x // expected-error {{pragma comment requires} [all...] |
macro_paste_msextensions.c | 12 #define comment /##/ dead tokens live here macro 13 comment This is stupidity 19 #define nested(x) int x comment cute little dead tokens...
|
/external/apache-xml/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/webkit/Source/WebKit/mac/Misc/ |
WebLocalizableStringsInternal.h | 41 #define UI_STRING_INTERNAL(string, comment) WebLocalizedStringInternal(string) 42 #define UI_STRING_KEY_INTERNAL(string, key, comment) WebLocalizedStringInternal(key)
|
WebLocalizableStrings.h | 62 #define UI_STRING(string, comment) WebLocalizedString(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), string) 63 #define UI_STRING_KEY(string, key, comment) WebLocalizedString(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key) 67 #define UI_STRING(string, comment) WebLocalizedString(0, string) 68 #define UI_STRING_KEY(string, key, comment) WebLocalizedString(0, key)
|
/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/llvm/test/MC/ARM/ |
full_line_comment.s | 2 # this is a full line comment starting at column 1
|
/external/webkit/Source/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)
|
/packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/ |
StringResource.java | 24 public StringResource(final String name, final String value, final String comment) { 27 mComment = comment;
|
/cts/tests/tests/text/src/android/text/util/cts/ |
Rfc822TokenTest.java | 30 final String comment = "work"; local 31 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment); 34 assertEquals(comment, rfc822Token1.getComment()); 36 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment); 39 assertEquals(comment, rfc822Token2.getComment()); 41 Rfc822Token rfc822Token3 = new Rfc822Token(name, null, comment); 44 assertEquals(comment, rfc822Token3.getComment()); 55 final String comment = "work"; local 56 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment); 80 // issue 1695243, not clear what is supposed to happen if comment is null 87 String comment = "work"; local 106 final String comment = "work"; local [all...] |
/external/doclava/src/com/google/doclava/ |
KeywordEntry.java | 22 KeywordEntry(String label, String href, String comment) { 25 this.comment = comment; 31 data.setValue(base + ".comment", this.comment); 44 private String comment; field in class:KeywordEntry
|
AttributeInfo.java | 36 private Comment mComment; 45 for (AttrTagInfo comment : attrField.comment().attrTags()) { 46 String n = comment.name(); 59 public Comment comment() { method in class:AttributeInfo 61 for (AttrTagInfo attr : attrField.comment().attrTags()) { 62 Comment c = attr.description(); 70 return new Comment("", mClass, SourcePositionInfo.UNKNOWN); 89 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags()) [all...] |
/external/iptables/extensions/ |
libxt_comment.c | 1 /* Shared library add-on to iptables to add comment match support. 5 * Initial comment match 20 "comment match options:\n" 21 "--comment COMMENT Attach a comment to a rule\n"); 25 {.name = "comment", .id = O_COMMENT, .type = XTTYPE_STRING, 27 XTOPT_POINTER(struct xt_comment_info, comment)}, 36 commentinfo->comment[XT_MAX_COMMENT_LEN-1] = '\0'; 37 printf(" /* %s */", commentinfo->comment); [all...] |
/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/chromium/third_party/libjingle/source/talk/base/ |
flags.h | 51 // flag is defined via: DEFINE_bool(flag, "false", "some comment");. 89 Flag(const char* file, const char* name, const char* comment, 95 const char* comment() const { return comment_; } function in class:Flag 168 #define DEFINE_FLAG(type, c_type, name, default, comment) \ 172 static Flag Flag_##name(__FILE__, #name, (comment), \ 184 #define DEFINE_bool(name, default, comment) \ 185 DEFINE_FLAG(BOOL, bool, name, default, comment) 186 #define DEFINE_int(name, default, comment) \ 187 DEFINE_FLAG(INT, int, name, default, comment) 188 #define DEFINE_float(name, default, comment) \ [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/openssh/ |
ssh-add.c | 102 char *comment = NULL; local 105 public = key_load_public(filename, &comment); 111 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment); 117 xfree(comment); 145 char *comment = NULL; local 178 private = key_parse_private(&keyblob, filename, "", &comment); 179 if (comment == NULL) 180 comment = xstrdup(filename); 188 comment); 193 xfree(comment); 290 char *comment, *fp; local [all...] |