HomeSort by relevance Sort by last modified time
    Searched defs:compile (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/proguard/build/
build.sh 40 function compile { function
41 # Compile java source files.
69 compile $PROGUARD
72 compile $PROGUARD_GUI
75 compile $RETRACE
80 compile $ANT_TASK
84 echo "if you want to compile the optional ProGuard Ant task."
89 compile $WTK_PLUGIN
93 echo "if you want to compile the optional ProGuard WTK plugin."
  /development/ide/emacs/
android-compile.el 1 ;;; android-compile.el --- Compile the Android source tree.
19 ;; Helper functions to compile Android file within emacs.
25 ;; The only interactive function is 'android-compile'.
26 ;; In your .emacs load this file (e.g (require 'android-compile)) then:
28 ;; (add-hook 'c++-mode-hook 'android-compile)
29 ;; (add-hook 'java-mode-hook 'android-compile)
31 ;; (global-set-key [f9] 'android-compile)
34 ;; TODO: Maybe we could cache the result of the compile function in
39 (require 'compile)
    [all...]
  /external/guava/src/com/google/common/io/
PatternFilenameFilter.java 43 this(Pattern.compile(patternStr));
  /external/javasqlite/src/main/java/SQLite/
Vm.java 16 * Internal last error code for compile()/step() methods.
29 * Vm vm = db.compile("select * from x; select * from y;");
33 * while (vm.compile()) {
50 * Compile the next SQL statement for the SQLite VM instance.
55 public native boolean compile() throws SQLite.Exception; method in class:Vm
  /external/jsr305/ri/src/main/java/javax/annotation/
RegEx.java 32 Pattern.compile((String) value);
  /frameworks/compile/libbcc/tests/
bccarm 10 def compile(args): function
  /libcore/luni/src/main/java/javax/xml/xpath/
XPath.java 164 * <p>Compile an XPath expression for later evaluation.</p>
180 public XPathExpression compile(String expression) method in interface:XPath
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regexp.h 61 RETURN(ptr) Used for normal exit of the `compile' function. `ptr'
65 ERROR(val) Used for abnormal return from `compile'. `val' is the
95 /* Get and compile the user supplied pattern up to end of line or
102 compile (char *__restrict instring, char *__restrict expbuf, function
167 /* Now compile the pattern. */
  /external/srec/srec/Grammar/include/
SR_Grammar.h 95 ESR_ReturnCode(*compile)(struct SR_Grammar_t* self); member in struct:SR_Grammar_t
261 * - Compile from expressions (not supported by SREC) or load pre-compiled grammars
  /frameworks/base/core/jni/
android_database_SQLiteCompiledSql.cpp 47 sqlite3_stmt * compile(JNIEnv* env, jobject object, function in namespace:android
61 // Compile the SQL
91 compile(env, object, GET_HANDLE(env, object), sqlString);
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 93 CompilationTask compile = javac.getTask(null, xfm, diacol, Arrays local
95 boolean success = compile.call();
  /external/guava/src/com/google/common/base/
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/qemu/android/build/
common.sh 240 echo "Do not compile this program or library with Cygwin, use MSYS instead !!"
252 # check that we can compile a trivial C program with this compiler
260 compile
266 compile
270 compile
286 compile
303 # try to compile the current source file in $TMPC into an object
306 compile () function
328 # perform a simple compile / link / run of the source file in $TMPC
332 compile
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Compiler.cpp 104 bool TCompiler::compile(const char* const shaderStrings[], function in class:TCompiler
123 // We preserve symbols at the built-in level from compile-to-compile.
  /external/webkit/Source/WebCore/platform/text/
RegularExpression.cpp 52 , m_regExpByteCode(compile(pattern, caseSensitivity))
57 PassOwnPtr<JSC::Yarr::BytecodePattern> compile(const String& patternString, TextCaseSensitivity caseSensitivity) function in class:WebCore::RegularExpression::Private
61 LOG_ERROR("RegularExpression: YARR compile failed with '%s'", m_constructionError);
  /development/tools/idegen/src/
Configuration.java 260 patterns.add(Pattern.compile(trimmed));
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 21 public static WCMatcher compile (final String pattern) method in class:WCMatcher
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateCompiler.java 72 return compile(templateFactory.find(templateName, resourceLoader, escapeMode), templateName,
78 return compile(templateFactory.createTemp(content, escapeMode), name, escapeMode);
82 * Compile AST into Java class.
88 private Template compile(TemplateSyntaxTree ast, String templateName, EscapeMode mode) { method in class:TemplateCompiler
91 String errorMessage = "Could not compile template: " + templateName;
  /external/llvm/tools/lto/
LTOCodeGenerator.cpp 214 const void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg) function in class:LTOCodeGenerator
220 // remove old buffer if compile() called twice
  /external/webkit/Source/JavaScriptCore/runtime/
RegExp.cpp 87 m_state = compile(globalData);
103 RegExp::RegExpState RegExp::compile(JSGlobalData* globalData) function in class:JSC::RegExp
  /frameworks/compile/libbcc/lib/ExecutionEngine/
ScriptCompiled.h 90 int compile(bool compileOnly) { function in class:bcc::ScriptCompiled
91 return mCompiler.compile(compileOnly);
  /frameworks/compile/slang/
slang.cpp 423 int Slang::compile() { function in class:slang::Slang
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 27 * with the same regular expression, it may be more efficient to compile it once and reuse it.
38 * Pattern p = Pattern.compile("Hello, (\\S+)");
333 * Returns the regular expression supplied to {@code compile}.
345 * Returns the flags supplied to {@code compile}.
366 public static Pattern compile(String regularExpression, int flags) throws PatternSyntaxException { method in class:Pattern
371 * Equivalent to {@code Pattern.compile(pattern, 0)}.
373 public static Pattern compile(String pattern) { method in class:Pattern
383 compile(); method
386 private void compile() throws PatternSyntaxException { method in class:Pattern
405 * Equivalent to {@code Pattern.compile(regularExpression).matcher(input).matches()}
445 compile(); method
    [all...]
  /ndk/build/core/
ndk-common.sh 377 # check that we can compile a trivial C program with this compiler
387 compile
393 compile
397 compile
410 compile
449 # try to compile the current source file in $TMPC into an object
452 compile () function
480 # perform a simple compile / link / run of the source file in $TMPC
484 compile
486 echo "Failure to compile test program
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 114 public Expression compile(int opPos) throws TransformerException method in class:Compiler
124 expr = compile(opPos + 2); break;
216 operation.setLeftRight(compile(leftPos), compile(rightPos)); method
237 unary.setRight(compile(rightPos)); method
243 * Compile an 'or' operation.
257 * Compile an 'and' operation.
271 * Compile a '!=' operation.
285 * Compile a '=' operation.
299 * Compile a '<=' operation
1052 func.setArg(compile(p), i); method
    [all...]

Completed in 573 milliseconds

1 2 3