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

1 2 3 4 56 7 8 91011>>

  /development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
GLES20TriangleRenderer.java 160 int[] compiled = new int[1]; local
161 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
162 if (compiled[0] == 0) {
  /external/llvm/utils/
codegen-diff 95 by running B<objdump> on the B<llc> compiled and linked binary. You need to
101 the function you want is compiled. Then use the B<disassemble> command
102 to print out the assembly dump of the function B<lli> just compiled.
  /external/skia/src/gpu/gl/builders/
GrGLShaderStringBuilder.cpp 139 GrGLint compiled = GR_GL_INIT_ZERO; local
140 GR_GL_CALL(gli, GetShaderiv(shaderId, GR_GL_COMPILE_STATUS, &compiled));
142 if (!compiled) {
  /external/skqp/src/gpu/gl/builders/
GrGLShaderStringBuilder.cpp 139 GrGLint compiled = GR_GL_INIT_ZERO; local
140 GR_GL_CALL(gli, GetShaderiv(shaderId, GR_GL_COMPILE_STATUS, &compiled));
142 if (!compiled) {
  /frameworks/av/cmds/screenrecord/
Program.cpp 148 GLint compiled = 0; local
149 glGetShaderiv(shader, GL_COMPILE_STATUS, &compiled);
150 if (!compiled) {
  /frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
TestLatencyView.java 174 int[] compiled = new int[1]; local
175 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
176 if (compiled[0] == 0) {
  /frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
Texture2dProgram.java 303 int[] compiled = new int[1]; local
304 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
305 if (compiled[0] == 0) {
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
SurfaceTextureView.java 39 int[] compiled = new int[1]; local
40 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
41 if (compiled[0] == 0) {
  /packages/services/Car/evs/sampleDriver/
GlWrapper.cpp 114 GLint compiled = 0; local
115 glGetShaderiv(shader, GL_COMPILE_STATUS, &compiled);
116 if (!compiled) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_strptime.py 141 # Check that compiled regex is correct
145 compiled = self.time_re.compile(r"%a %b")
146 found = compiled.match("%s %s" % (self.locale_time.a_weekday[4],
150 (compiled.pattern, "%s %s" % (self.locale_time.a_weekday[4],
160 compiled = self.time_re.compile("%" + directive)
161 found = compiled.match(time.strftime("%" + directive))
164 compiled.pattern))
378 # unbalanced parentheses when the regex is compiled if they are not
  /external/python/cpython2/Lib/test/
test_strptime.py 139 # Check that compiled regex is correct
143 compiled = self.time_re.compile(r"%a %b")
144 found = compiled.match("%s %s" % (self.locale_time.a_weekday[4],
148 (compiled.pattern, "%s %s" % (self.locale_time.a_weekday[4],
158 compiled = self.time_re.compile("%" + directive)
159 found = compiled.match(time.strftime("%" + directive))
162 compiled.pattern))
374 # unbalanced parentheses when the regex is compiled if they are not
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
DatabaseWrapper.java 94 SQLiteStatement compiled = mCompiledStatements.get(index); local
95 if (compiled == null) {
96 compiled = mDatabase.compileStatement(statement);
97 Assert.isTrue(compiled.toString().contains(statement.trim()));
98 mCompiledStatements.put(index, compiled);
100 return compiled;
  /prebuilts/gdb/darwin-x86/lib/python2.7/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))
375 # unbalanced parentheses when the regex is compiled if they are not
  /prebuilts/gdb/linux-x86/lib/python2.7/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))
375 # unbalanced parentheses when the regex is compiled if they are not
  /prebuilts/go/darwin-x86/src/cmd/go/internal/run/
run.go 27 By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
34 cross-compiled programs when a simulator or other execution method is
118 // been compiled. We ignore exit status.
  /prebuilts/go/linux-x86/src/cmd/go/internal/run/
run.go 27 By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
34 cross-compiled programs when a simulator or other execution method is
118 // been compiled. We ignore exit status.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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))
375 # unbalanced parentheses when the regex is compiled if they are not
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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))
375 # unbalanced parentheses when the regex is compiled if they are not
  /external/icu/icu4c/source/i18n/
number_fluent.cpp 305 const NumberFormatterImpl* compiled = local
308 const_cast<LocalizedNumberFormatter *>(this)->fCompiled = compiled;
310 compiled->apply(results->quantity, results->string, status);
  /external/webrtc/webrtc/modules/video_render/android/
video_render_opengles20.cc 246 GLint compiled = 0; local
247 glGetShaderiv(shader, GL_COMPILE_STATUS, &compiled);
248 if (!compiled) {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLDepthTestActivity.java 269 int[] compiled = new int[1]; local
270 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
271 if (compiled[0] == 0) {
  /frameworks/native/libs/gui/tests/
GLTest.cpp 263 GLint compiled = 0; local
264 glGetShaderiv(shader, GL_COMPILE_STATUS, &compiled);
266 if (!compiled) {
  /frameworks/native/opengl/tests/gl_perf/
fill_common.cpp 38 GLint compiled = 0; local
39 glGetShaderiv(shader, GL_COMPILE_STATUS, &compiled);
40 if (!compiled) {
  /frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 240 int[] compiled = new int[1]; local
241 GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, compiled, 0);
242 if (compiled[0] == 0) {
  /system/sepolicy/tools/
check_seapp.c 94 pcre2_code *compiled; member in struct:key_map_regex
326 int ret = pcre2_match(assert->regex.compiled, (PCRE2_SPTR) tomatch,
348 km->regex.compiled = pcre2_compile((PCRE2_SPTR) anchored,
353 if (!km->regex.compiled) {
358 km->regex.compiled, NULL);
360 pcre2_code_free(km->regex.compiled);
466 if (!m->regex.compiled) {
603 if (m->regex.compiled) {
604 pcre2_code_free(m->regex.compiled);

Completed in 656 milliseconds

1 2 3 4 56 7 8 91011>>