/external/pcre/pcrecpp/include/ |
pcrecpp.h | 685 // Compile the regexp for the specified anchoring mode 686 pcre2_code * Compile(Anchor anchor);
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
graph_compiler.cc | 86 Status GraphCompiler::Compile() { 176 // For functional nodes, compile them using compiler from the context and call 198 // Prepare the arguments and compile the function.
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
dynamic_stitch_op.cc | 54 void Compile(XlaOpKernelContext* ctx) override {
|
extract_image_patches_op.cc | 35 void Compile(XlaOpKernelContext* ctx) override {
|
reverse_sequence_op.cc | 33 void Compile(XlaOpKernelContext* context) override {
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
local_client_test_base.cc | 195 local_client_->Compile(computation, argument_layouts, build_options));
|
/prebuilts/go/darwin-x86/src/cmd/compile/ |
doc.go | 6 Compile, typically invoked as ``go tool compile,'' compiles a single Go package 22 go tool compile [flags] file... 92 Compile with race detector enabled.
|
/prebuilts/go/darwin-x86/src/cmd/go/internal/work/ |
security.go | 147 r, err := regexp.Compile(env) 154 r, err := regexp.Compile(env)
|
/prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/ |
driver_focus.go | 69 rx, err := regexp.Compile(value) 121 fx, err := regexp.Compile(tagf)
|
/prebuilts/go/darwin-x86/src/regexp/syntax/ |
compile.go | 78 // Compile compiles the regexp into a program to be executed. 80 func Compile(re *Regexp) (*Prog, error) { 83 f := c.compile(re) 98 func (c *compiler) compile(re *Regexp) frag { func 138 sub := c.compile(re.Sub[0]) 142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0) 144 return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0) 146 return c.quest(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0) 154 f = c.compile(sub) 156 f = c.cat(f, c.compile(sub) [all...] |
doc.go | 10 facilities of package regexp (such as Compile and Match) instead of this package.
|
/prebuilts/go/linux-x86/src/cmd/compile/ |
doc.go | 6 Compile, typically invoked as ``go tool compile,'' compiles a single Go package 22 go tool compile [flags] file... 92 Compile with race detector enabled.
|
/prebuilts/go/linux-x86/src/cmd/go/internal/work/ |
security.go | 147 r, err := regexp.Compile(env) 154 r, err := regexp.Compile(env)
|
/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/ |
driver_focus.go | 69 rx, err := regexp.Compile(value) 121 fx, err := regexp.Compile(tagf)
|
/prebuilts/go/linux-x86/src/regexp/syntax/ |
compile.go | 78 // Compile compiles the regexp into a program to be executed. 80 func Compile(re *Regexp) (*Prog, error) { 83 f := c.compile(re) 98 func (c *compiler) compile(re *Regexp) frag { func 138 sub := c.compile(re.Sub[0]) 142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0) 144 return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0) 146 return c.quest(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0) 154 f = c.compile(sub) 156 f = c.cat(f, c.compile(sub) [all...] |
doc.go | 10 facilities of package regexp (such as Compile and Match) instead of this package.
|
/prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/ |
compiler.h | 95 // Holds all of the state required to compile source GLSL into SPIR-V. 312 std::tuple<bool, std::vector<uint32_t>, size_t> Compile( 416 // The target environment to compile with. This controls the glslang
|
/art/compiler/utils/ |
assembler_test_base.h | 118 Compile(assembly_text, &res, test_name); 210 // Compile the assembly file from_file to a binary file to_file. Returns true on success. 377 // Compile the given assembly code and extract the binary, if possible. Put result into res. 378 bool Compile(const std::string& assembly_code, 397 res->error_msg = "Could not compile.";
|
/build/soong/android/ |
testing.go | 171 matcher, err := regexp.Compile(pattern) 173 t.Errorf("failed to compile regular expression %q because %s", pattern, err)
|
/external/google-breakpad/android/google_breakpad/ |
Android.mk | 65 # Compile++ thumb : google_breakpad_client <= crash_generation_client.cc
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
local_computation_builder.cc | 257 StatusOr<CompiledLocalComputation*> LocalComputation::Compile( 273 client->Compile(computation_, argument_shape_pointers, options));
|
/external/v8/src/compiler-dispatcher/ |
compiler-dispatcher.cc | 27 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), 56 job->Compile(); 89 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), 98 job->Compile(); 267 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), 275 PrintF(" for parse and compile\n"); 288 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), 310 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), 318 PrintF(" for compile\n"); 336 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), [all...] |
/external/v8/tools/vim/ |
ninja-build.vim | 5 " Adds a "Compile this file" function, using ninja. On Mac, binds Cmd-k to 65 """Returns the shell command to compile the file in the current buffer."""
|
/prebuilts/go/darwin-x86/src/regexp/ |
example_test.go | 13 // Compile the expression once, usually at init time.
|
/prebuilts/go/linux-x86/src/regexp/ |
example_test.go | 13 // Compile the expression once, usually at init time.
|