HomeSort by relevance Sort by last modified time
    Searched refs:Compile (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/clang/lib/Driver/
Phases.cpp 20 case Compile: return "compiler";
  /external/clang/include/clang/Driver/
Phases.h 21 Compile,
  /external/chromium_org/v8/test/cctest/
test-func-name-inference.cc 95 static v8::Handle<v8::Script> Compile(v8::Isolate* isolate, const char* src) {
96 return v8::Script::Compile(v8::String::NewFromUtf8(isolate, src));
104 v8::Handle<v8::Script> script = Compile(
117 v8::Handle<v8::Script> script = Compile(
130 v8::Handle<v8::Script> script = Compile(
145 v8::Handle<v8::Script> script = Compile(
160 v8::Handle<v8::Script> script = Compile(
177 v8::Handle<v8::Script> script = Compile(
196 v8::Handle<v8::Script> script = Compile(
215 v8::Handle<v8::Script> script = Compile(
    [all...]
test-thread-termination.cc 57 v8::Handle<v8::Value> result = v8::Script::Compile(source)->Run();
66 v8::Script::Compile(v8::String::NewFromUtf8(args.GetIsolate(),
91 v8::Script::Compile(v8::String::NewFromUtf8(args.GetIsolate(),
135 v8::Script::Compile(source)->Run();
138 v8::Script::Compile(source)->Run();
155 v8::Script::Compile(source)->Run();
158 v8::Script::Compile(source)->Run();
195 v8::Script::Compile(source)->Run();
222 v8::Script::Compile(
265 v8::Script::Compile(source)->Run()
    [all...]
test-compiler.cc 58 static Handle<JSFunction> Compile(const char* source) {
76 Handle<JSFunction> fun = Compile(buffer.start());
93 Handle<JSFunction> fun = Compile("result = x + y;");
112 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;");
131 Compile("s = 0; while (n > 0) { s += n; n -= 1; }; result = s;");
153 Handle<JSFunction> fun = Compile(source);
184 Handle<JSFunction> fun = Compile(source);
198 Handle<JSFunction> fun = Compile(source);
222 Handle<JSFunction> fun0 = Compile(source);
280 v8::Script::Compile(script_body, &origin)->Run()
    [all...]
cctest.h 350 return v8::Script::Compile(v8_str(x));
355 return v8::Script::Compile(x);
363 return v8::ScriptCompiler::Compile(
380 // Helper functions that compile and run the source.
382 return v8::Script::Compile(v8_str(source))->Run();
387 return v8::Script::Compile(source)->Run();
392 // Compile once just to get the preparse data, then compile the second time
396 v8::ScriptCompiler::Compile(isolate, &script_source,
404 return v8::ScriptCompiler::Compile(isolate, &script_source, options)->Run()
    [all...]
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl.cc 24 virtual ErrorCode Compile(SandboxBPF* sb) const OVERRIDE {
40 virtual ErrorCode Compile(SandboxBPF* sb) const OVERRIDE {
56 virtual ErrorCode Compile(SandboxBPF* sb) const OVERRIDE {
72 virtual ErrorCode Compile(SandboxBPF* sb) const OVERRIDE {
91 virtual ErrorCode Compile(SandboxBPF* sb) const OVERRIDE {
111 virtual ErrorCode Compile(SandboxBPF* sb) const OVERRIDE {
131 virtual ErrorCode Compile(SandboxBPF* sb) const OVERRIDE {
132 return cond_->Compile(
133 sb, then_result_->Compile(sb), else_result_->Compile(sb))
    [all...]
  /external/chromium_org/third_party/re2/
testinstall.cc 16 f.Compile(&v);
  /external/lldb/source/Core/
RegularExpression.cpp 39 Compile(re);
53 Compile(re);
59 Compile(rhs.GetText(), rhs.GetCompileFlags());
67 Compile (rhs.GetText(), rhs.GetCompileFlags());
83 // Compile a regular expression using the supplied regular
95 RegularExpression::Compile(const char* re)
97 return Compile (re, m_compile_flags);
101 RegularExpression::Compile(const char* re, int flags)
154 // The regular expression didn't compile, so clear the matches
235 // Returns the text that was used to compile the current regula
    [all...]
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.h 65 static bool Compile(const std::string& source_code,
jtl_compiler_unittest.cc 82 EXPECT_TRUE(JtlCompiler::Compile(
105 JtlCompiler::Compile(kSourceCode, kTestHashSeed, &bytecode, NULL));
115 JtlCompiler::Compile(kSourceCode, kTestHashSeed, &bytecode, &error));
131 EXPECT_FALSE(JtlCompiler::Compile(
162 EXPECT_FALSE(JtlCompiler::Compile(
183 EXPECT_FALSE(JtlCompiler::Compile(
199 JtlCompiler::Compile(kSourceCode, kTestHashSeed, &bytecode, &error));
211 JtlCompiler::Compile(kSourceCode, kTestHashSeed, &bytecode, &error));
  /external/chromium_org/third_party/re2/re2/
set.h 32 // Compile prepares the Set for matching.
33 // Add must not be called again after Compile.
34 // Compile must be called before FullMatch or PartialMatch.
35 // Compile may return false if it runs out of memory.
36 bool Compile();
filtered_re2.h 12 // Compile the FilteredRE2. The compile returns strings that need to
48 // strings from the set of strings returned by Compile. Call after
50 void Compile(vector<string>* strings_to_match);
53 // Returns -1 on no match. Can be called prior to Compile.
59 // Returns -1 on no match. Compile has to be called before
88 // Has the FilteredRE2 been compiled using Compile()
prefilter_tree.h 38 // must precede Compile.
41 // The Compile returns a vector of string in atom_vec.
43 // No calls to Add after Compile are allowed.
47 void Compile(vector<string>* atom_vec);
108 // These are all the nodes formed by Compile. Essentially, there is
filtered_re2.cc 31 LOG(ERROR) << "Couldn't compile regular expression, skipping: "
43 void FilteredRE2::Compile(vector<string>* atoms) {
54 prefilter_tree_->Compile(atoms);
68 LOG(DFATAL) << "FirstMatch called before Compile";
  /external/lldb/include/lldb/Core/
RegularExpression.h 100 /// compile.
125 /// Compile a regular expression.
127 /// Compile a regular expression using the supplied regular
136 /// expression to compile.
146 Compile (const char* re);
149 Compile (const char* re, int flags);
162 /// The string to match against the compile regular expression.
194 /// Returns the text that was used to compile the current regular
198 /// The NULL terminated C string that was used to compile the
247 int m_compile_flags; ///< Stores the flags from the last compile
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-linkage.cc 30 static Handle<JSFunction> Compile(const char* source) {
46 Handle<JSFunction> function = Compile("a + b");
88 Handle<JSFunction> function = Compile("a + c");
  /art/compiler/jni/portable/
jni_compiler.h 60 CompiledMethod* Compile();
  /external/chromium_org/third_party/re2/re2/testing/
set_test.cc 22 CHECK_EQ(s.Compile(), true);
48 CHECK_EQ(s.Compile(), true);
76 CHECK_EQ(s.Compile(), true);
91 CHECK_EQ(s.Compile(), true);
  /external/lldb/include/lldb/Interpreter/
OptionValueRegex.h 81 m_regex.Compile (value, regex_flags);
  /external/llvm/test/Object/Inputs/
elfver.S 0 # Compile with:
  /art/compiler/
compilers.h 32 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
62 * @param driver CompilerDriver for this compile.
78 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
compilers.cc 52 CompiledMethod* QuickCompiler::Compile(const DexFile::CodeItem* code_item,
142 CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
155 return QuickCompiler::Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
  /external/openfst/src/include/fst/
string.h 50 // Compile string 's' into FST 'fst'.
56 Compile(labels, fst);
65 Compile(labels, fst, w);
95 void Compile(const vector<Label> &labels, MutableFst<A> *fst,
107 void Compile(const vector<Label> &labels,
113 void Compile(const vector<Label> &labels,
  /external/lldb/source/Interpreter/
OptionValueRegex.cpp 64 if (m_regex.Compile (value_cstr, m_regex.GetCompileFlags()))

Completed in 1681 milliseconds

1 2 3 4 5 6 7