HomeSort by relevance Sort by last modified time
    Searched defs:exec (Results 1 - 25 of 348) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
api_exec.c 119 * \param ctx GL context to which \c exec belongs.
120 * \param exec dispatch table.
125 struct _glapi_table *exec; local
127 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
128 if (exec == NULL)
132 _mesa_loopback_init_api_table(ctx, exec);
137 SET_AlphaFunc(exec, _mesa_AlphaFunc);
140 SET_BlendFunc(exec, _mesa_BlendFunc);
141 SET_Clear(exec, _mesa_Clear);
142 SET_ClearColor(exec, _mesa_ClearColor)
    [all...]
  /external/mesa3d/src/mesa/main/
api_exec.c 119 * \param ctx GL context to which \c exec belongs.
120 * \param exec dispatch table.
125 struct _glapi_table *exec; local
127 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
128 if (exec == NULL)
132 _mesa_loopback_init_api_table(ctx, exec);
137 SET_AlphaFunc(exec, _mesa_AlphaFunc);
140 SET_BlendFunc(exec, _mesa_BlendFunc);
141 SET_Clear(exec, _mesa_Clear);
142 SET_ClearColor(exec, _mesa_ClearColor)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec.c 39 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
41 exec->ctx = ctx;
49 vbo_exec_vtx_init( exec );
50 vbo_exec_array_init( exec );
52 /* Hook our functions into exec and compile dispatch tables.
54 _mesa_install_exec_vtxfmt( ctx, &exec->vtxfmt );
67 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
74 vbo_exec_vtx_destroy( exec );
86 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-617.js 36 RegExp.prototype.exec = make_sure_we_dont_get_here;
40 re.exec = make_sure_we_dont_get_here;
  /external/mesa3d/src/mesa/vbo/
vbo_exec.c 39 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
41 exec->ctx = ctx;
49 vbo_exec_vtx_init( exec );
50 vbo_exec_array_init( exec );
52 /* Hook our functions into exec and compile dispatch tables.
54 _mesa_install_exec_vtxfmt( ctx, &exec->vtxfmt );
67 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
74 vbo_exec_vtx_destroy( exec );
86 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/
regexp-string-methods.js 33 assertEquals(["g"], /g/.exec("gg"));
37 assertEquals(["F"], f1.exec("F"));
42 assertEquals(["G"], f2.exec("G"));
45 // On the other hand test is defined in a semi-coherent way as a call to exec.
47 // We match other browsers in using the original value of RegExp.prototype.exec.
49 // RegExp.prototype.exec.
50 RegExp.prototype.exec = function(string) { return 'x'; };
  /libcore/luni/src/main/java/java/util/concurrent/
RecursiveAction.java 159 protected final boolean exec() { method in class:RecursiveAction
RecursiveTask.java 63 protected final boolean exec() { method in class:RecursiveTask
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
FmCamelCaseToUnderscoreMethod.java 32 public TemplateModel exec(List args) throws TemplateModelException { method in class:FmCamelCaseToUnderscoreMethod
FmSlashedPackageNameMethod.java 32 public TemplateModel exec(List args) throws TemplateModelException { method in class:FmSlashedPackageNameMethod
FmUnderscoreToCamelCaseMethod.java 33 public TemplateModel exec(List args) throws TemplateModelException { method in class:FmUnderscoreToCamelCaseMethod
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
RSSFeedUtil.java 52 ExecTask exec = new ExecTask(); local
53 exec.setExecutable(executable);
54 exec.setResolveExecutable(true);
55 exec.setDir((new File(dir)).getAbsoluteFile());
57 exec.setProject(project);
58 exec.setFailIfExecutionFails(true);
59 exec.setFailonerror(true);
60 exec.setErrorProperty(RUN_EXEC_TASK_ERROR);
61 exec.setOutputproperty(RUN_EXEC_TASK_OUTPUT);
62 exec.setResultProperty(RUN_EXEC_TASK_RESULT)
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ListenableFutureTester.java 38 private final ExecutorService exec; field in class:ListenableFutureTester
43 this.exec = Executors.newCachedThreadPool();
53 }, exec);
61 exec.shutdown();
  /bionic/libc/kernel/uapi/asm-arm/asm/
a.out.h 24 struct exec struct
  /bionic/libc/kernel/uapi/asm-x86/asm/
a.out.h 21 struct exec struct
  /development/ndk/platforms/android-3/arch-arm/include/asm/
a.out.h 18 struct exec struct
  /development/ndk/platforms/android-9/arch-mips/include/asm/
a.out.h 21 struct exec struct
  /development/ndk/platforms/android-9/arch-x86/include/asm/
a.out.h 21 struct exec struct
  /development/ndk/platforms/android-L/arch-arm/include/asm/
a.out.h 24 struct exec struct
  /development/ndk/platforms/android-L/arch-x86/include/asm/
a.out.h 21 struct exec struct
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
a.out.h 21 struct exec struct
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptRegexp.cpp 79 v8::Local<v8::Function> exec = regex->Get(v8AtomicString(isolate, "exec")).As<v8::Function>(); local
81 v8::Local<v8::Value> returnValue = V8ScriptRunner::callInternalFunction(exec, regex, WTF_ARRAY_LENGTH(argv), argv, isolate);
86 // RegExp#exec returns null if there's no match, otherwise it returns an
91 // https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/RegExp/exec
  /external/kernel-headers/original/uapi/asm-arm/asm/
a.out.h 7 struct exec struct
  /external/kernel-headers/original/uapi/asm-x86/asm/
a.out.h 4 struct exec struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/
a.out.h 4 struct exec struct

Completed in 1796 milliseconds

1 2 3 4 5 6 7 8 91011>>