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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/prebuilt-intermediates/main/
api_exec.c 117 * Initialize a context's exec table with pointers to Mesa's supported
122 * \param ctx GL context to which \c exec belongs.
127 struct _glapi_table *exec; local
129 exec = ctx->Exec;
130 assert(exec != NULL);
134 vbo_initialize_exec_dispatch(ctx, exec);
137 SET_DepthRangeArrayfvOES(exec, _mesa_DepthRangeArrayfvOES);
138 SET_DepthRangeIndexedfOES(exec, _mesa_DepthRangeIndexedfOES);
139 SET_PrimitiveBoundingBox(exec, _mesa_PrimitiveBoundingBox)
    [all...]
  /prebuilts/go/darwin-x86/src/os/exec/
exec_posix.go 7 package exec package
internal_test.go 5 package exec package
lp_unix_test.go 7 package exec package
lp_plan9.go 5 package exec package
lp_test.go 5 package exec package
27 t.Fatal("LookPath error is not an exec.Error")
lp_unix.go 7 package exec package
lp_windows.go 5 package exec package
  /prebuilts/go/linux-x86/src/os/exec/
exec_posix.go 7 package exec package
internal_test.go 5 package exec package
lp_unix_test.go 7 package exec package
lp_plan9.go 5 package exec package
lp_test.go 5 package exec package
27 t.Fatal("LookPath error is not an exec.Error")
lp_unix.go 7 package exec package
lp_windows.go 5 package exec package
  /packages/apps/Test/connectivity/PMC/
build_pmc.sh 53 exec () { function
64 exec mm -B "building $APP_NAME.apk"
81 #exec adb install $APP_NAME.apk "installing apk to device"
82 #exec adb push $APP_NAME.apk /system/priv-app "installing apk to previliged dir"
83 exec adb install -r $APP_NAME.apk "installing apk to previliged dir"
  /external/mesa3d/src/mesa/main/
vtxfmt.c 230 install_vtxfmt(ctx, ctx->Exec, vfmt);
256 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
257 _mesa_install_exec_vtxfmt(ctx, &exec->vtxfmt);
  /external/protobuf/js/
gulpfile.js 5 function exec(command, cb) { function
12 exec(protoc + ' --js_out=library=testproto_libs,binary:. -I ../src -I . *.proto ../src/google/protobuf/descriptor.proto',
21 exec('mkdir -p commonjs_out && ' + protoc + ' --js_out=import_style=commonjs,binary:commonjs_out -I ../src -I commonjs -I . *.proto commonjs/test*/*.proto ../src/google/protobuf/descriptor.proto',
32 exec('./node_modules/google-closure-library/closure/bin/calcdeps.py -i message.js -i binary/reader.js -i binary/writer.js -i commonjs/export.js -p . -p node_modules/google-closure-library/closure -o compiled --compiler_jar node_modules/google-closure-compiler/compiler.jar > google-protobuf.js',
41 exec('mkdir -p commonjs_out/test_node_modules && ./node_modules/google-closure-library/closure/bin/calcdeps.py -i commonjs/export_asserts.js -p . -p node_modules/google-closure-library/closure -o compiled --compiler_jar node_modules/google-closure-compiler/compiler.jar > commonjs_out/test_node_modules/closure_asserts_commonjs.js',
50 exec('mkdir -p commonjs_out/test_node_modules && ./node_modules/google-closure-library/closure/bin/calcdeps.py -i commonjs/export_testdeps.js -p . -p node_modules/google-closure-library/closure -o compiled --compiler_jar node_modules/google-closure-compiler/compiler.jar > commonjs_out/test_node_modules/testdeps_commonjs.js',
70 exec(cmd +
82 exec('./node_modules/google-closure-library/closure/bin/build/depswriter.py *.js binary/*.js > deps.js',
91 exec('JASMINE_CONFIG_PATH=jasmine.json ./node_modules/.bin/jasmine',
100 exec('cd commonjs_out && JASMINE_CONFIG_PATH=jasmine.json NODE_PATH=test_node_modules ../node_modules/. (…)
    [all...]
  /art/test/595-profile-saving/
profile-saving.cc 40 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method); local
41 ArtMethod* art_method = exec->GetArtMethod();
58 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method); local
59 ArtMethod* art_method = exec->GetArtMethod();
  /external/syslinux/gpxe/src/include/gpxe/
command.h 19 int ( * exec ) ( int argc, char **argv ); member in struct:command
  /frameworks/support/buildSrc/src/main/java/android/support/checkapi/
ApiXmlConversionTask.java 76 public void exec() { method in class:ApiXmlConversionTask
78 super.exec();
  /external/jacoco/org.jacoco.core.test/src-java8/org/jacoco/core/test/validation/targets/
LambdaExpressionsTarget.java 14 import static org.jacoco.core.test.validation.targets.Stubs.exec;
25 exec(() -> { method
  /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 );
60 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
67 vbo_exec_vtx_destroy( exec );
79 struct vbo_exec_context *exec = &vbo->exec; local
81 if (!exec->validating && new_state & (_NEW_PROGRAM|_NEW_ARRAY))
    [all...]
  /external/v8/src/inspector/
v8-regex.cc 57 v8::Local<v8::Value> exec; local
58 if (!regex->Get(context, toV8StringInternalized(isolate, "exec"))
59 .ToLocal(&exec))
64 if (!exec.As<v8::Function>()
69 // RegExp#exec returns null if there's no match, otherwise it returns an
74 // https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/RegExp/exec