HomeSort by relevance Sort by last modified time
    Searched defs:compile (Results 26 - 50 of 68) sorted by null

12 3

  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathImpl.java 375 * <p>Compile an XPath expression for later evaluation.</p>
391 public XPathExpression compile(String expression) method in class:XPathImpl
  /external/icu4c/i18n/
regexcmp.cpp 97 // Compile regex pattern. The state machine for rexexp pattern parsing is here.
103 void RegexCompile::compile( function in class:RegexCompile
113 compile(&patternText, pp, e);
119 // compile, UText mode
122 void RegexCompile::compile( function in class:RegexCompile
267 // Set stack cleanup: a successful compile would have left it empty,
431 // Compile to a
471 // Compile to a
492 // Compile to a
539 // compile time conventions require the slot anyhow
    [all...]
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...]
  /external/javassist/src/main/javassist/
CtMethod.java 341 int compile(Bytecode code) throws CannotCompileException { method in class:CtMethod.ConstParameter
380 int compile(Bytecode code) throws CannotCompileException { method in class:CtMethod.IntConstParameter
401 int compile(Bytecode code) throws CannotCompileException { method in class:CtMethod.LongConstParameter
422 int compile(Bytecode code) throws CannotCompileException { method in class:CtMethod.StringConstParameter
CtField.java 161 CtMember obj = compiler.compile(src);
813 abstract int compile(CtClass type, String name, Bytecode code, method in class:CtField.Initializer
829 int compile(CtClass type, String name, Bytecode code, method in class:CtField.CodeInitializer0
929 int compile(CtClass type, String name, Bytecode code, method in class:CtField.ParamInitializer
994 int compile(CtClass type, String name, Bytecode code, method in class:CtField.NewInitializer
1090 int compile(CtClass type, String name, Bytecode code, method in class:CtField.MethodInitializer
1165 int compile(CtClass type, String name, Bytecode code, method in class:CtField.IntInitializer
1198 int compile(CtClass type, String name, Bytecode code, method in class:CtField.LongInitializer
1234 int compile(CtClass type, String name, Bytecode code, method in class:CtField.FloatInitializer
1270 int compile(CtClass type, String name, Bytecode code, method in class:CtField.DoubleInitializer
1301 int compile(CtClass type, String name, Bytecode code, method in class:CtField.StringInitializer
1341 int compile(CtClass type, String name, Bytecode code, method in class:CtField.ArrayInitializer
1371 int compile(CtClass type, String name, Bytecode code, method in class:CtField.MultiArrayInitializer
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGNonSpeculativeJIT.cpp 174 void NonSpeculativeJIT::compile(SpeculationCheckIndexIterator& checkIterator, Node& node) function in class:JSC::DFG::NonSpeculativeJIT
653 void NonSpeculativeJIT::compile(SpeculationCheckIndexIterator& checkIterator, BasicBlock& block) function in class:JSC::DFG::NonSpeculativeJIT
674 compile(checkIterator, node);
678 void NonSpeculativeJIT::compile(SpeculationCheckIndexIterator& checkIterator) function in class:JSC::DFG::NonSpeculativeJIT
683 compile(checkIterator, blocks[m_block]);
DFGSpeculativeJIT.cpp 242 bool SpeculativeJIT::compile(Node& node) function in class:JSC::DFG::SpeculativeJIT
785 bool SpeculativeJIT::compile(BasicBlock& block) function in class:JSC::DFG::SpeculativeJIT
804 if (!compile(node))
810 bool SpeculativeJIT::compile() function in class:JSC::DFG::SpeculativeJIT
815 if (!compile(blocks[m_block]))
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Shader.cpp 439 void VertexShader::compile() function in class:gl::VertexShader
503 void FragmentShader::compile() function in class:gl::FragmentShader
  /frameworks/compile/libbcc/tests/
test.py 50 def compile(args): function
188 out, err = compile(args)
  /frameworks/compile/slang/
slang_rs.cpp 257 bool SlangRS::compile( function in class:slang::SlangRS
313 if (Slang::compile() > 0)
  /ndk/build/core/
definitions.mk 616 # Return the compiler flags used to compile a C++ module
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.h 211 JSObject* compile(ExecState* exec, ScopeChainNode* scopeChainNode) function in class:JSC::EvalExecutable
257 JSObject* compile(ExecState* exec, ScopeChainNode* scopeChainNode) function in class:JSC::ProgramExecutable
  /frameworks/base/core/java/android/database/sqlite/
SQLiteProgram.java 216 * @param sql the SQL string to compile
221 protected void compile(String sql, boolean forceCompilation) { method in class:SQLiteProgram
360 // SQL statement is not compiled yet. compile it now.
414 * @param sql The SQL to compile.
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Compiler.cpp 284 int Compiler::compile(bool compileOnly) { function in class:bcc::Compiler
471 LOGD("compile(): Pragma: %s -> %s\n",
498 LOGD("compile(): RefCount Slot: %s @ %u\n", Slot.str().c_str(), USlot);
  /external/javasqlite/src/main/java/SQLite/
Database.java 307 Vm vm = compile(sql);
360 Vm vm = compile(sql, args);
414 Vm vm = compile(sql, args);
673 * Compile and return SQLite VM for SQL statement. Only available
680 public Vm compile(String sql) throws SQLite.Exception { method in class:Database
689 * Compile and return SQLite VM for SQL statement. Only available
697 public Vm compile(String sql, String args[]) throws SQLite.Exception { method in class:Database
748 * Internal compile method.
757 * Internal compile method, SQLite 3.0 only.
  /external/javassist/src/main/javassist/compiler/
Javac.java 87 public CtMember compile(String src) throws CompileError { method in class:Javac
  /external/mksh/src/
syn.c 860 compile(Source *s) function
  /external/webkit/Source/JavaScriptCore/yarr/
YarrPattern.cpp 959 const char* YarrPattern::compile(const UString& patternString) function in class:JSC::Yarr::YarrPattern
    [all...]
YarrInterpreter.cpp 1450 PassOwnPtr<BytecodePattern> compile(BumpPointerAllocator* allocator) function in class:JSC::Yarr::Interpreter::ByteCompiler
    [all...]
YarrJIT.cpp 2246 void compile(JSGlobalData* globalData, YarrCodeBlock& jitObject) function in class:JSC::Yarr::YarrGenerator
    [all...]
  /frameworks/base/core/java/android/speech/srec/
Recognizer.java 42 * <li>Compile the <code>Recognizer.Grammar</code>, if needed.
67 * grammar.compile();
209 * Compile all slots.
211 public void compile() { method in class:Recognizer.Grammar
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
PatternTest.java 50 Pattern p = Pattern.compile("ab# this is a comment\ncd", Pattern.COMMENTS);
64 assertEquals(Pattern.compile("o").split("boo:and:foo", 5).length, 5);
65 assertEquals(Pattern.compile("b").split("ab", -1).length, 2);
68 Pattern pat = Pattern.compile("x");
79 pat = Pattern.compile("b");
84 pat = Pattern.compile("");
90 pat = Pattern.compile("b");
95 pat = Pattern.compile("");
101 pat = Pattern.compile("b");
106 pat = Pattern.compile("");
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JIT.h 181 static JITCode compile(JSGlobalData* globalData, CodeBlock* codeBlock, CodePtr* functionEntryArityCheck = 0, void* offsetBase = 0) function in class:JSC::JIT
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternTest.java 74 Pattern p = Pattern.compile("a");
86 assertEquals(Pattern.compile("o").split("boo:and:foo", 5).length, 5);
87 assertEquals(Pattern.compile("b").split("ab", -1).length, 2);
90 Pattern pat = Pattern.compile("x");
101 pat = Pattern.compile("b");
106 pat = Pattern.compile("");
112 pat = Pattern.compile("b");
117 pat = Pattern.compile("");
123 pat = Pattern.compile("b");
128 pat = Pattern.compile("");
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
CommandRecognizerEngine.java 160 // compile the grammar
161 if (false) Log.d(TAG, "start grammar.compile");
162 mSrecGrammar.compile();
    [all...]

Completed in 861 milliseconds

12 3