HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 76 - 100 of 480) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/samples/ApiDemos/
Android.mk 6 # Only compile source java files in this apk.
  /external/webkit/JavaScriptCore/runtime/
Executable.cpp 63 JSObject* EvalExecutable::compile(ExecState* exec, ScopeChainNode* scopeChainNode) function in class:JSC::EvalExecutable
94 JSObject* ProgramExecutable::compile(ExecState* exec, ScopeChainNode* scopeChainNode) function in class:JSC::ProgramExecutable
115 void FunctionExecutable::compile(ExecState*, ScopeChainNode* scopeChainNode) function in class:JSC::FunctionExecutable
143 m_jitCode = JIT::compile(scopeChainNode->globalData, codeBlock);
154 m_jitCode = JIT::compile(scopeChainNode->globalData, codeBlock);
165 m_jitCode = JIT::compile(scopeChainNode->globalData, codeBlock);
201 JITCode newJITCode = JIT::compile(globalData, newCodeBlock.get());
226 JITCode newJITCode = JIT::compile(globalData, newCodeBlock.get());
Executable.h 167 JSObject* error = compile(exec, scopeChainNode);
173 JSObject* compile(ExecState*, ScopeChainNode*);
212 JSObject* error = compile(exec, scopeChainNode);
219 JSObject* compile(ExecState*, ScopeChainNode*);
270 compile(exec, scopeChainNode);
320 void compile(ExecState*, ScopeChainNode*);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
properties-001.js 45 AddTestCase( re + ".compile == RegExp.prototype.compile",
47 re.compile == RegExp.prototype.compile );
properties-002.js 92 AddTestCase( re + ".compile == RegExp.prototype.compile",
94 re.compile == RegExp.prototype.compile );
  /ndk/build/core/
ndk-common.sh 349 # check that we can compile a trivial C program with this compiler
358 compile
364 compile
368 compile
381 compile
420 # try to compile the current source file in $TMPC into an object
423 compile () function
451 # perform a simple compile / link / run of the source file in $TMPC
455 compile
457 echo "Failure to compile test program
    [all...]
  /external/icu4c/i18n/
repattrn.cpp 269 // compile
273 RegexPattern::compile(const UnicodeString &regex, function in class:RegexPattern
309 compiler.compile(regex, pe, status);
321 // compile, UText mode
324 RegexPattern::compile(UText *regex, function in class:RegexPattern
360 compiler.compile(regex, pe, status);
371 // compile with default flags.
374 RegexPattern::compile(const UnicodeString &regex, function in class:RegexPattern
378 return compile(regex, 0, pe, err);
383 // compile with default flags, UText mod
386 RegexPattern::compile(UText *regex, function in class:RegexPattern
398 RegexPattern::compile(const UnicodeString &regex, function in class:RegexPattern
411 RegexPattern::compile(UText *regex, function in class:RegexPattern
    [all...]
regexcmp.h 56 void compile(const UnicodeString &pat, UParseError &pp, UErrorCode &e);
57 void compile(UText *pat, UParseError &pp, UErrorCode &e);
69 // The category is saved in the compile-time parentheses stack frame, and
102 void literalChar(UChar32 c); // Compile a literal char
203 // (at compile time) set expressions within
  /external/icu4c/tools/genprops/misc/
ucdcopy.py 27 _strip_re = re.compile("^([0-9a-fA-F]+.+?) *#.*")
28 _code_point_re = re.compile("\s*([0-9a-fA-F]+)\s*;")
141 _file_version_re = re.compile("^([a-zA-Z0-9]+)" +
  /external/icu4c/tools/genprops/
ucdcopy.py 27 _strip_re = re.compile("^([0-9a-fA-F]+.+?) *#.*")
28 _code_point_re = re.compile("\s*([0-9a-fA-F]+)\s*;")
141 _file_version_re = re.compile("^([a-zA-Z0-9]+)" +
  /libcore/luni/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...]
  /external/v8/tools/
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*([^;]*);$')
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
SplitTest.java 20 notes = "Verifies the basic functionality of split(java.lang.CharSequence) & compile(java.lang.String)methods.",
26 notes = "Verifies the basic functionality of split(java.lang.CharSequence) & compile(java.lang.String)methods.",
27 method = "compile",
32 Pattern p = Pattern.compile("/");
98 Pattern p = Pattern.compile(" ");
127 p = Pattern.compile("d");
153 p = Pattern.compile("o");
195 Pattern p = Pattern.compile("");
224 notes = "Verifies the functionality of split(java.lang.CharSequence) & compile(java.lang.String, int) methods. Test uses empty pattern and supplementary chars.",
230 notes = "Verifies the functionality of split(java.lang.CharSequence) & compile(java.lang.String, int) methods. Test uses empty pattern and supplementary chars."
    [all...]
  /build/target/board/sim/
BoardConfig.mk 3 # Product-specific compile-time definitions.
  /build/tools/droiddoc/src/
DocFile.java 27 private static final Pattern LINE = Pattern.compile("(.*)[\r]?\n",
29 private static final Pattern PROP = Pattern.compile("([^=]+)=(.*)");
  /cts/tests/tests/os/src/android/os/cts/
BuildTest.java 110 Pattern.compile("^([0-9A-Za-z_-]+)$");
112 Pattern.compile("^([0-9A-Za-z]{0,20})$");
  /device/samsung/crespo/alsa-lib/
compile 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
53 echo "compile $scriptversion"
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
122 # Run the compile.
  /external/grub/
compile 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
53 echo "compile $scriptversion"
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
122 # Run the compile.
  /external/libffi/
compile 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
53 echo "compile $scriptversion"
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
122 # Run the compile.
  /external/qemu/
offset_layout.py 9 _RE_LINE = re.compile("^\s*(?P<keyword>[\w-]+)\s+{\s*$")
10 _RE_XY = re.compile("^(?P<start>\s*)(?P<xy>[x|y]\s+)(?P<num>\d+)(?P<end>\s*)$")
  /external/webkit/WebKitTools/Scripts/webkitpy/
changelogs.py 51 date_line_regexp = re.compile('^(\d{4}-\d{2}-\d{2})' # Consume the date.
110 reviewed_by_regexp = re.compile(
  /external/webkit/WebKitTools/simplejson/
scanner.py 30 self.scanner = sre_compile.compile(p)
61 fn.regex = re.compile(pattern, flags)
  /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);
  /packages/providers/ContactsProvider/
Android.mk 6 # Only compile source java files in this apk.
  /cts/tools/vm-tests/src/util/build/
JavacBuildStep.java 69 return Main.compile(commandLine, new PrintWriter(System.err)) == 0;

Completed in 1976 milliseconds

1 2 34 5 6 7 8 91011>>