Searched refs:Compile (Results 1 - 25 of 153) sorted by relevance

1234567

/external/clang/lib/Driver/
H A DPhases.cpp20 case Compile: return "compiler";
/external/clang/include/clang/Driver/
H A DPhases.h21 Compile, enumerator in enum:clang::driver::phases::ID
/external/chromium_org/v8/test/cctest/
H A Dtest-func-name-inference.cc95 static v8::Handle<v8::Script> Compile(v8::Isolate* isolate, const char* src) { function
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...]
H A Dtest-thread-termination.cc57 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(sourc
[all...]
/external/chromium_org/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.cc24 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(s
[all...]
/external/chromium_org/third_party/re2/
H A Dtestinstall.cc16 f.Compile(&v);
/external/regex-re2/
H A Dtestinstall.cc16 f.Compile(&v);
/external/lldb/source/Core/
H A DRegularExpression.cpp39 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) function in class:RegularExpression
97 return Compile (re, m_compile_flags);
101 RegularExpression::Compile(const char* re, int flags) function in class:RegularExpression
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.h65 static bool Compile(const std::string& source_code,
H A Djtl_compiler_unittest.cc82 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/
H A Dset.h32 // 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();
H A Dfiltered_re2.h12 // 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()
H A Dprefilter_tree.h38 // 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
H A Dfiltered_re2.cc43 void FilteredRE2::Compile(vector<string>* atoms) { function in class:re2::FilteredRE2
54 prefilter_tree_->Compile(atoms);
68 LOG(DFATAL) << "FirstMatch called before Compile";
/external/regex-re2/re2/
H A Dset.h32 // 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();
H A Dfiltered_re2.h12 // 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()
H A Dprefilter_tree.h35 // must precede Compile.
38 // The Compile returns a vector of string in atom_vec.
40 // No calls to Add after Compile are allowed.
44 void Compile(vector<string>* atom_vec);
105 // These are all the nodes formed by Compile. Essentially, there is
H A Dfiltered_re2.cc43 void FilteredRE2::Compile(vector<string>* atoms) { function in class:re2::FilteredRE2
54 prefilter_tree_->Compile(atoms);
68 LOG(DFATAL) << "FirstMatch called before Compile";
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-linkage.cc30 static Handle<JSFunction> Compile(const char* source) { function
46 Handle<JSFunction> function = Compile("a + b");
88 Handle<JSFunction> function = Compile("a + c");
/external/chromium_org/third_party/re2/re2/testing/
H A Dset_test.cc22 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/
H A DOptionValueRegex.h81 m_regex.Compile (value, regex_flags);
/external/llvm/test/Object/Inputs/
H A Delfver.S0 # Compile with:
/external/regex-re2/re2/testing/
H A Dset_test.cc22 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/Core/
H A DRegularExpression.h125 /// Compile a regular expression.
127 /// Compile a regular expression using the supplied regular
146 Compile (const char* re);
149 Compile (const char* re, int flags);
/external/openfst/src/include/fst/
H A Dstring.h50 // 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, function in class:fst::StringCompiler
107 void Compile(const vector<Label> &labels, function in class:fst::StringCompiler
113 void Compile(const vector<Label> &labels, function in class:fst::StringCompiler

Completed in 1782 milliseconds

1234567