HomeSort by relevance Sort by last modified time
    Searched refs:compiled (Results 201 - 225 of 757) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/testdata/
hist.go 6 // by the compiler. It is compiled with various flags, then the resulting
  /external/apache-http/
Android.mk 73 # Previously, this JAR was included on the bootclasspath so was compiled using
74 # the speed-profile. ensures that it continues to be compiled using the
76 # app launch times. Without this it would be compiled using quicken (which is
  /external/python/cpython2/Lib/test/
test_import.py 255 # compiled file too.
342 compiled = source + ('c' if __debug__ else 'o')
355 os.stat(compiled)
372 compiled = source + ('c' if __debug__ else 'o')
382 if not os.path.exists(compiled):
390 with open(compiled, 'rb') as f:
393 unlink(compiled)
  /external/python/cpython3/Lib/test/
test_strptime.py 138 # Check that compiled regex is correct
142 compiled = self.time_re.compile(r"%a %b")
143 found = compiled.match("%s %s" % (self.locale_time.a_weekday[4],
147 (compiled.pattern, "%s %s" % (self.locale_time.a_weekday[4],
157 compiled = self.time_re.compile("%" + directive)
158 found = compiled.match(time.strftime("%" + directive))
161 compiled.pattern))
403 # unbalanced parentheses when the regex is compiled if they are not
  /external/tensorflow/tensorflow/python/eager/
function_test.py 191 compiled = function.defun(f)
192 compiled()
203 compiled = function.defun(f)
204 compiled()
216 compiled = function.defun(f)
217 compiled()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_import.py 255 # compiled file too.
342 compiled = source + ('c' if __debug__ else 'o')
355 os.stat(compiled)
372 compiled = source + ('c' if __debug__ else 'o')
382 if not os.path.exists(compiled):
390 with open(compiled, 'rb') as f:
393 unlink(compiled)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_import.py 255 # compiled file too.
342 compiled = source + ('c' if __debug__ else 'o')
355 os.stat(compiled)
372 compiled = source + ('c' if __debug__ else 'o')
382 if not os.path.exists(compiled):
390 with open(compiled, 'rb') as f:
393 unlink(compiled)
  /prebuilts/go/darwin-x86/src/go/build/
doc.go 29 // has its compiled form installed to "DIR/pkg/GOOS_GOARCH/foo/bar.a"
32 // The bin/ directory holds compiled commands.
163 // The source code may include additional Go code. That code is never compiled
  /prebuilts/go/linux-x86/src/go/build/
doc.go 29 // has its compiled form installed to "DIR/pkg/GOOS_GOARCH/foo/bar.a"
32 // The bin/ directory holds compiled commands.
163 // The source code may include additional Go code. That code is never compiled
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_import.py 255 # compiled file too.
342 compiled = source + ('c' if __debug__ else 'o')
355 os.stat(compiled)
372 compiled = source + ('c' if __debug__ else 'o')
382 if not os.path.exists(compiled):
390 with open(compiled, 'rb') as f:
393 unlink(compiled)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_import.py 255 # compiled file too.
342 compiled = source + ('c' if __debug__ else 'o')
355 os.stat(compiled)
372 compiled = source + ('c' if __debug__ else 'o')
382 if not os.path.exists(compiled):
390 with open(compiled, 'rb') as f:
393 unlink(compiled)
  /prebuilts/go/darwin-x86/src/cmd/cgo/
doc.go 85 file. This allows pre-compiled static libraries to be included in the package
98 compiled with the C compiler. Any .cc, .cpp, or .cxx files will be
99 compiled with the C++ compiler. Any .f, .F, .for or .f90 files will be
100 compiled with the fortran compiler. Any .h, .hh, .hpp, or .hxx files will
101 not be compiled separately, but, if these header files are changed,
634 file compiled by gcc, the file x.cgo2.c:
653 Once the _cgo_export.c and *.cgo2.c files have been compiled with gcc,
688 In the end, the compiled Go package, which will eventually be
691 _go_.o # gc-compiled object for _cgo_gotypes.go, _cgo_import.go, *.cgo1.go
692 _all.o # gcc-compiled object for _cgo_export.c, *.cgo2.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
doc.go 85 file. This allows pre-compiled static libraries to be included in the package
98 compiled with the C compiler. Any .cc, .cpp, or .cxx files will be
99 compiled with the C++ compiler. Any .f, .F, .for or .f90 files will be
100 compiled with the fortran compiler. Any .h, .hh, .hpp, or .hxx files will
101 not be compiled separately, but, if these header files are changed,
634 file compiled by gcc, the file x.cgo2.c:
653 Once the _cgo_export.c and *.cgo2.c files have been compiled with gcc,
688 In the end, the compiled Go package, which will eventually be
691 _go_.o # gc-compiled object for _cgo_gotypes.go, _cgo_import.go, *.cgo1.go
692 _all.o # gcc-compiled object for _cgo_export.c, *.cgo2.
    [all...]
  /external/pcre/dist2/src/
pcre2grep.c 270 /* Structure for pattern and its compiled form; used for matching patterns and
276 pcre2_code *compiled; member in struct:patstr
515 p->compiled = NULL;
543 if (p->compiled != NULL) pcre2_code_free(p->compiled);
989 if (pcre2_match(ep->compiled, (PCRE2_SPTR)path, plen, 0, 0, match_data, NULL) >= 0)
997 if (pcre2_match(ip->compiled, (PCRE2_SPTR)path, plen, 0, 0, match_data, NULL) >= 0)
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/source/
test_file_loader.py 198 compiled = self.util.cache_from_source(source)
215 self.assertTrue(os.path.exists(compiled))
216 os.unlink(compiled)
222 self.assertEqual(mod.__cached__, compiled)
225 self.assertTrue(os.path.exists(compiled))
  /external/v8/src/asmjs/
asm-js.cc 191 MaybeHandle<JSObject> compiled = SyncCompileTranslatedAsmJs( local
195 DCHECK(!compiled.is_null());
210 result->set(kWasmDataCompiledModule, *compiled.ToHandleChecked());
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
VideoDumpView.java 607 int[] compiled = new int[1]; local
608 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
609 if (compiled[0] == 0) {
  /frameworks/base/services/core/java/com/android/server/display/
ColorFade.java 210 int[] compiled = new int[1]; local
211 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
212 if (compiled[0] == 0) {
  /prebuilts/go/darwin-x86/src/go/types/
gotype.go 26 imported packages (default), or by importing from compiled and
67 To check the external test package (if any) in the current directory, based on installed packages compiled with
151 imported packages (default), or by importing from compiled and
  /prebuilts/go/linux-x86/src/go/types/
gotype.go 26 imported packages (default), or by importing from compiled and
67 To check the external test package (if any) in the current directory, based on installed packages compiled with
151 imported packages (default), or by importing from compiled and
  /build/soong/cc/
coverage.go 55 // Even if we don't have coverage enabled, if any of our object files were compiled
  /external/capstone/
config.mk 53 # By default, Capstone is compiled with 'CAPSTONE_X86_REDUCE = no',
  /external/golang-protobuf/ptypes/empty/
empty.pb.go 25 // is compatible with the proto package it is being compiled against.
  /external/one-true-awk/
README 66 compiled this without any changes using gcc -Wall and/or local C
  /external/parameter-framework/
XmlGenerator.mk 30 # Scripts are not compiled so the prebuild mechanism is used to export them.

Completed in 530 milliseconds

1 2 3 4 5 6 7 891011>>