/external/webkit/Source/WebCore/css/ |
D | makeprop.pl | 88 open HEADER, ">CSSPropertyNames.h" || die "Could not open CSSPropertyNames.h for writing"; 89 print HEADER << "EOF"; 109 print HEADER " CSSProperty" . $id . " = " . $i . ",\n"; 117 print HEADER "};\n\n"; 118 print HEADER "const int firstCSSProperty = $first;\n"; 119 print HEADER "const int numCSSProperties = $num;\n"; 120 print HEADER "const size_t maxCSSPropertyNameLength = $maxLen;\n"; 122 print HEADER "const char* const propertyNameStrings[$num] = {\n"; 124 print HEADER "\"$name\",\n"; 126 print HEADER "};\n"; [all …]
|
D | makevalues.pl | 99 open HEADER, ">CSSValueKeywords.h" || die "Could not open CSSValueKeywords.h for writing"; 100 print HEADER << "EOF"; 118 print HEADER "const int CSSValue" . $id . " = " . $i . ";\n"; 124 print HEADER "const int numCSSValueKeywords = " . $i . ";\n"; 125 print HEADER "const size_t maxCSSValueKeywordLength = " . $maxLen . ";\n"; 126 print HEADER << "EOF"; 135 close HEADER;
|
D | makegrammar.pl | 29 open HEADER, ">" . $fileBase . ".h" or die; 30 print HEADER << "EOF"; 37 print HEADER; 41 print HEADER "#endif\n"; 43 close HEADER;
|
D | make-css-file-arrays.pl | 32 open HEADER, ">", $header or die; 35 print HEADER "namespace WebCore {\n"; 60 print HEADER "extern const char ${name}UserAgentStyleSheet[${length}];\n"; 79 print HEADER "}\n";
|
/external/icu4c/tools/genren/ |
D | genren.pl | 67 open HEADER, ">$headername"; # opening a header file 73 print HEADER <<"EndOfHeaderComment"; 216 print HEADER "\n/* C exports renaming data */\n\n"; 218 print HEADER "#define $_ U_ICU_ENTRY_POINT_RENAME($_)\n"; 222 print HEADER "\n\n"; 223 print HEADER "/* C++ class names renaming defines */\n\n"; 224 print HEADER "#ifdef XP_CPLUSPLUS\n"; 225 print HEADER "#if !U_HAVE_NAMESPACE\n\n"; 227 print HEADER "#define $_ U_ICU_ENTRY_POINT_RENAME($_)\n"; 229 print HEADER "\n#endif\n"; [all …]
|
/external/clang/test/Preprocessor/ |
D | include-directive2.c | 2 # define HEADER <stdarg.h> macro 4 # include HEADER 11 #include HEADER EMPTY
|
/external/webkit/Source/WebKit/qt/Api/ |
D | DerivedSources.pro | 33 for(HEADER, WEBKIT_API_HEADERS) { 36 … += echo $${DOUBLE_ESCAPED_QUOTE}\$${LITERAL_HASH}include \\\"$$basename(HEADER)\\\"$${DOUBLE_ESCA… 38 HEADER_NAME = $$basename(HEADER) 46 PATH_TO_HEADER = $$HEADER 47 CONFIG(standalone_package): PATH_TO_HEADER = ../../WebKit/qt/Api/$$basename(HEADER) 50 eval($${HEADER_TARGET}.depends = $$HEADER) 59 src_words = $$cat($$HEADER) 80 …s = echo $${DOUBLE_ESCAPED_QUOTE}\$${LITERAL_HASH}include \\\"$$basename(HEADER)\\\"$${DOUBLE_ESCA…
|
/external/clang/test/PCH/ |
D | cxx-member-init.cpp | 8 #ifdef HEADER 19 #elif HEADER 20 #undef HEADER
|
D | attrs.c | 8 #ifndef HEADER 9 #define HEADER macro
|
D | check-deserializations.cpp | 4 #ifndef HEADER 5 #define HEADER macro
|
D | attrs-PR8406.c | 8 #ifndef HEADER 9 #define HEADER macro
|
D | cxx-static_assert.cpp | 8 #ifndef HEADER 9 #define HEADER macro
|
D | pragma-diag.c | 8 #ifndef HEADER 9 #define HEADER macro
|
D | cuda-kernel-call.cu | 4 #ifndef HEADER 5 #define HEADER macro
|
D | rdar8852495.c | 11 #ifndef HEADER 12 #define HEADER macro
|
D | pragma-diag-section.cpp | 8 #ifndef HEADER 9 #define HEADER macro
|
D | opencl-extensions.cl | 4 #ifndef HEADER 5 #define HEADER
|
D | variables.c | 8 #ifndef HEADER 9 #define HEADER macro
|
/external/webkit/Source/WebCore/bindings/scripts/ |
D | CodeGeneratorGObject.pm | 1298 open(HEADER, ">$hdrFName") or die "Couldn't open file $hdrFName"; 1300 print HEADER @hPrefix; 1301 print HEADER @hPrefixGuard; 1302 print HEADER "#include \"webkit/webkitdomdefines.h\"\n"; 1303 print HEADER "#include <glib-object.h>\n"; 1304 print HEADER "#include <webkit/webkitdefines.h>\n"; 1305 print HEADER map { "#include \"$_\"\n" } sort keys(%hdrIncludes); 1306 print HEADER "\n" if keys(%hdrIncludes); 1307 print HEADER "\n"; 1308 print HEADER @hBodyPre; [all …]
|
D | CodeGeneratorCPP.pm | 915 open(HEADER, ">$headerFileName") or die "Couldn't open file $headerFileName"; 917 print HEADER @headerContentHeader; 918 print HEADER "\n"; 927 print HEADER "namespace $namespacePart {\nclass $classPart;\n};\n\n"; 929 print HEADER "class $class;\n" 934 print HEADER "\n" if $hasForwardDeclarations; 935 print HEADER @headerContent; 936 close(HEADER);
|
/external/webkit/Source/WebCore/inspector/ |
D | CodeGeneratorInspector.pm | 1039 …open(my $HEADER, ">$outputHeadersDir/$frontendClassName.h") || die "Couldn't open file $outputHead… 1040 …print $HEADER generateHeader($frontendClassName, $frontendClassName, \%frontendTypes, $frontendCon… 1041 close($HEADER); 1042 undef($HEADER); 1065 …open($HEADER, ">$outputHeadersDir/$backendClassName.h") || die "Couldn't open file $outputHeadersD… 1066 …print $HEADER join("\n", generateHeader($backendClassName, $backendClassDeclaration, \%backendType… 1067 close($HEADER); 1068 undef($HEADER);
|
/external/dnsmasq/src/ |
D | rfc1035.c | 19 static int add_resource_record(HEADER *header, char *limit, int *truncp, 30 static int extract_name(HEADER *header, size_t plen, unsigned char **pp, in extract_name() 281 static unsigned char *skip_name(unsigned char *ansp, HEADER *header, size_t plen, int extrabytes) in skip_name() 336 static unsigned char *skip_questions(HEADER *header, size_t plen) in skip_questions() 351 static unsigned char *skip_section(unsigned char *ansp, int count, HEADER *header, size_t plen) in skip_section() 374 unsigned int questions_crc(HEADER *header, size_t plen, char *name) in questions_crc() 416 size_t resize_packet(HEADER *header, size_t plen, unsigned char *pheader, size_t hlen) in resize_packet() 440 unsigned char *find_pseudoheader(HEADER *header, size_t plen, size_t *len, unsigned char **p, int … in find_pseudoheader() 528 static unsigned char *do_doctor(unsigned char *p, int count, HEADER *header, size_t qlen) in do_doctor() 581 static int find_soa(HEADER *header, size_t qlen) in find_soa() [all …]
|
/external/e2fsprogs/po/ |
D | insert-header.sin | 1 # Sed script that inserts the file called HEADER before the header entry. 13 r HEADER
|
/external/dbus/cmake/modules/ |
D | CheckPrototypeExists.cmake | 2 # CHECK_PROTOTYPE_EXISTS (FUNCTION HEADER VARIABLE) 5 # HEADER - the header(s) where the prototype should be declared
|
/external/elfutils/libelf-po/ |
D | insert-header.sin | 1 # Sed script that inserts the file called HEADER before the header entry. 13 r HEADER
|