/external/proguard/build/ |
D | build.sh | 40 function compile { function 69 compile $PROGUARD 72 compile $PROGUARD_GUI 75 compile $RETRACE 80 compile $ANT_TASK 89 compile $WTK_PLUGIN
|
/external/libpng/ |
D | Makefile.in | 132 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 507 mostlyclean-compile: 510 distclean-compile: 567 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $… 571 @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) … 574 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $… 578 @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) … 581 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $… 585 @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) … 588 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $… [all …]
|
/external/clearsilver/scripts/ |
D | document.py | 64 RE_C_comment = re.compile("/\*(.*)") 65 RE_C_define = re.compile("\s*#\s*define (\S+) (.*)") 66 RE_C_typedef = re.compile("typedef (\S+) (.*)") 67 RE_C_func_def = re.compile("[^#]*(\S+)([ \*]+)(\S+)\s*\([^\)]*\);") 68 RE_C_func_def_b = re.compile("[^#]*(\S+)([ \*]+)(\S+)\s*\([^\)]*") 69 RE_C_func_com = re.compile("function:\s*(\S+)(.*)", re.IGNORECASE) 70 RE_C_desc_com = re.compile("description:\s*(.+)", re.IGNORECASE) 71 RE_C_args_com = re.compile("(arguments|input):\s*(.+)", re.IGNORECASE) 72 RE_C_retr_com = re.compile("(return|returns):\s*(.+)", re.IGNORECASE) 73 RE_C_out_com = re.compile("output:\s*(.+)", re.IGNORECASE) [all …]
|
/external/clearsilver/python/examples/base/ |
D | sgmllib.py | 45 interesting = re.compile('[&<]') 46 incomplete = re.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|' 51 entityref = re.compile('&([a-zA-Z][a-zA-Z0-9]*)[^a-zA-Z0-9]') 52 charref = re.compile('&#([0-9]+)[^0-9]') 54 starttagopen = re.compile('<[>a-zA-Z]') 55 shorttagopen = re.compile('<[a-zA-Z][a-zA-Z0-9]*/') 56 shorttag = re.compile('<([a-zA-Z][a-zA-Z0-9]*)/([^/]*)/') 57 endtagopen = re.compile('</[<>a-zA-Z]') 58 endbracket = re.compile('[<>]') 59 special = re.compile('<![^<>]*>') [all …]
|
/external/icu4c/i18n/ |
D | repattrn.cpp | 273 RegexPattern::compile(const UnicodeString ®ex, in compile() function in RegexPattern 309 compiler.compile(regex, pe, status); in compile() 324 RegexPattern::compile(UText *regex, in compile() function in RegexPattern 360 compiler.compile(regex, pe, status); in compile() 374 RegexPattern::compile(const UnicodeString ®ex, in compile() function in RegexPattern 378 return compile(regex, 0, pe, err); in compile() 386 RegexPattern::compile(UText *regex, in compile() function in RegexPattern 390 return compile(regex, 0, pe, err); in compile() 398 RegexPattern::compile(const UnicodeString ®ex, in compile() function in RegexPattern 403 return compile(regex, flags, pe, err); in compile() [all …]
|
/external/qemu/android/build/ |
D | common.sh | 260 compile 266 compile 270 compile 286 compile 306 compile () function 332 compile 369 compile 392 compile
|
D | binary.make | 28 $(eval $(call compile-c-source,$(src))) \ 32 $(eval $(call compile-cxx-source,$(src))) \ 36 $(eval $(call compile-objc-source,$(src))) \
|
/external/guava/src/com/google/common/base/ |
D | CaseFormat.java | 34 LOWER_HYPHEN(Pattern.compile("[-]"), "-"), 39 LOWER_UNDERSCORE(Pattern.compile("[_]"), "_"), 44 LOWER_CAMEL(Pattern.compile("[A-Z]"), ""), 49 UPPER_CAMEL(Pattern.compile("[A-Z]"), ""), 54 UPPER_UNDERSCORE(Pattern.compile("[_]"), "_");
|
/external/webkit/JavaScriptCore/runtime/ |
D | Executable.cpp | 63 JSObject* EvalExecutable::compile(ExecState* exec, ScopeChainNode* scopeChainNode) in compile() function in JSC::EvalExecutable 94 JSObject* ProgramExecutable::compile(ExecState* exec, ScopeChainNode* scopeChainNode) in compile() function in JSC::ProgramExecutable 115 void FunctionExecutable::compile(ExecState*, ScopeChainNode* scopeChainNode) in compile() function in JSC::FunctionExecutable 143 m_jitCode = JIT::compile(scopeChainNode->globalData, codeBlock); in generateJITCode() 154 m_jitCode = JIT::compile(scopeChainNode->globalData, codeBlock); in generateJITCode() 165 m_jitCode = JIT::compile(scopeChainNode->globalData, codeBlock); in generateJITCode() 201 JITCode newJITCode = JIT::compile(globalData, newCodeBlock.get()); in reparseExceptionInfo() 226 JITCode newJITCode = JIT::compile(globalData, newCodeBlock.get()); in reparseExceptionInfo()
|
D | Executable.h | 167 JSObject* error = compile(exec, scopeChainNode); in bytecode() 173 JSObject* compile(ExecState*, ScopeChainNode*); 212 JSObject* error = compile(exec, scopeChainNode); in bytecode() 219 JSObject* compile(ExecState*, ScopeChainNode*); 270 compile(exec, scopeChainNode); in bytecode() 320 void compile(ExecState*, ScopeChainNode*);
|
D | RegExp.cpp | 63 compile(globalData); in RegExp() 81 compile(globalData); in RegExp() 103 void RegExp::compile(JSGlobalData* globalData) in compile() function in JSC::RegExp 167 void RegExp::compile(JSGlobalData* globalData) in match() function in JSC::RegExp
|
/external/apache-http/src/org/apache/http/conn/util/ |
D | InetAddressUtils.java | 45 Pattern.compile( 49 Pattern.compile( 53 Pattern.compile(
|
/external/protobuf/src/ |
D | Makefile.in | 244 --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 253 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 907 mostlyclean-compile: 910 distclean-compile: 1076 @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX)… 1080 @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX… 1083 @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX)… 1087 @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX… 1090 @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX)… 1094 @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX… [all …]
|
/external/chromium/third_party/icu/source/test/intltest/ |
D | regextst.cpp | 130 REPattern = RegexPattern::compile(patString, 0, pe, status); in doRegexLMTest() 207 callerPattern = RegexPattern::compile(patString, 0, pe, status); in regex_err() 242 RegexPattern::compile("^(?:a?b?)*$", 0, pe, status); in Basic() 403 pat2 = RegexPattern::compile(re, flags, pe, status); in API_Match() 530 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match() 589 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match() 643 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match() 734 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match() 838 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match() 951 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Replace() [all …]
|
/external/qemu/ |
D | gen-charmap.py | 41 re_mapname = re.compile( r".*/(\w+).kcm" ) 42 re_start = re.compile( r"(\w+)\s*(.*)" ) 43 re_char = re.compile( r"('.')\s*(.*)" ) 44 re_hex = re.compile( r"(0x\w+)\s*(.*)" )
|
/external/icu4c/test/intltest/ |
D | regextst.cpp | 185 REPattern = RegexPattern::compile(patString, 0, pe, status); in doRegexLMTest() 248 REPattern = RegexPattern::compile(&pattern, 0, pe, status); in doRegexLMTestUTF8() 339 callerPattern = RegexPattern::compile(patString, 0, pe, status); in regex_err() 358 callerPattern = RegexPattern::compile(&patternText, 0, pe, status); in regex_err() 394 RegexPattern::compile("^(?:a?b?)*$", 0, pe, status); in Basic() 582 pat2 = RegexPattern::compile(re, flags, pe, status); in API_Match() 709 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match() 768 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match() 822 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match() 913 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match() [all …]
|
/external/v8/tools/ |
D | js2c.py | 50 lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments. 90 EVAL_PATTERN = re.compile(r'\beval\s*\('); 91 WITH_PATTERN = re.compile(r'\bwith\s*\('); 165 CONST_PATTERN = re.compile(r'^const\s+([a-zA-Z0-9_]+)\s*=\s*([^;]*);$') 166 MACRO_PATTERN = re.compile(r'^macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$') 167 PYTHON_MACRO_PATTERN = re.compile(r'^python\s+macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$…
|
/external/zlib/contrib/masmx64/ |
D | gvmat64.asm | 38 ; to compile this file for infozip Zip, I use option: 41 ; to compile this file for zLib, I use option: 47 ; This file compile with Microsoft Macro Assembler (x64) for AMD64 116 ; (if you compile with zlib 1.0.4 or older, remove the +4). 130 ;;; compile time. Sigh.) 134 ; (if you compile with zlib 1.0.4 or older, use "zlib1222add equ (-4)"). 135 ; (if you compile with zlib between 1.0.5 and 1.2.2.1, use "zlib1222add equ 0"). 136 ; if you compile with zlib 1.2.2.2 or later , use "zlib1222add equ 8").
|
/external/chromium/sdch/open-vcdiff/ |
D | Makefile.in | 63 COPYING ChangeLog INSTALL NEWS THANKS compile config.guess \ 176 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 185 --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 729 mostlyclean-compile: 732 distclean-compile: 797 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(… 801 @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $… 825 @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX)… 829 @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX… 832 @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX)… [all …]
|
/external/emma/core/java12/com/vladium/emma/filter/ |
D | IInclExclFilter.java | 163 m_inclusions [i] = WCMatcher.compile (inclusions [i]); in WCInclExclFilter() 175 m_exclusions [i] = WCMatcher.compile (exclusions [i]); in WCInclExclFilter() 194 m_inclusions [ii] = WCMatcher.compile (pattern); in WCInclExclFilter() 209 m_exclusions [ii] = WCMatcher.compile (pattern); in WCInclExclFilter()
|
/external/chromium/third_party/icu/source/i18n/ |
D | repattrn.cpp | 240 RegexPattern::compile(const UnicodeString ®ex, in compile() function in RegexPattern 277 compiler.compile(regex, pe, status); in compile() 291 RegexPattern::compile(const UnicodeString ®ex, in compile() function in RegexPattern 295 return compile(regex, 0, pe, err); in compile() 304 RegexPattern::compile( const UnicodeString ®ex, in compile() function in RegexPattern 309 return compile(regex, flags, pe, err); in compile() 394 pat = RegexPattern::compile(regex, 0, pe, status); in matches()
|
/external/stlport/test/compiler/ |
D | gcc.mak | 6 ALL_TAGS := compile-only 11 compile-only: $(OUTPUT_DIRS) $(OBJ)
|
/external/webkit/WebCore/platform/text/ |
D | RegularExpression.cpp | 45 static JSRegExp* compile(const String& pattern, TextCaseSensitivity); 50 inline JSRegExp* RegularExpression::Private::compile(const String& pattern, TextCaseSensitivity cas… in compile() function in WebCore::RegularExpression::Private 63 , m_regexp(compile(pattern, caseSensitivity)) in Private()
|
/external/icu4c/i18n/unicode/ |
D | regex.h | 188 static RegexPattern * U_EXPORT2 compile( const UnicodeString ®ex, 219 static RegexPattern * U_EXPORT2 compile( UText *regex, 247 static RegexPattern * U_EXPORT2 compile( const UnicodeString ®ex, 279 static RegexPattern * U_EXPORT2 compile( UText *regex, 307 static RegexPattern * U_EXPORT2 compile( const UnicodeString ®ex, 336 static RegexPattern * U_EXPORT2 compile( UText *regex,
|
/external/strace/ |
D | README-linux | 6 If you want to compile strace on a Linux system please make sure that 12 To complicate things a bit further strace might not compile if you are 16 There are three ways to compile strace with other kernel headers:
|