Searched refs:active (Results 1 - 25 of 164) sorted by relevance

1234567

/external/v8/test/mjsunit/regress/
H A Dregress-982.js34 function g(active) {
36 if (i == active) {
/external/clang/test/CodeGen/
H A D2007-09-17-WeakRef.c6 int active (void) function
H A D2008-09-03-WeakAlias.c5 int active (void) function
/external/jemalloc/test/unit/
H A Dprof_idump.c26 bool active; local
31 active = true;
32 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)),
H A Dprof_reset.c91 bool active; local
97 active = true;
98 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)),
127 active = false;
128 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)),
185 bool active; local
[all...]
H A Dprof_accum.c63 bool active; local
70 active = true;
71 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)),
H A Dprof_gdump.c24 bool active, gdump, gdump_old; local
30 active = true;
31 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)),
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vs_constval.c37 /* Component is active if it may diverge from [0,0,0,1]. Undef values
42 GLubyte active[PROGRAM_OUTPUT+1][MAX_PROGRAM_TEMPS]; member in struct:tracker
50 GLubyte active )
57 assert(index < Elements(t->active[0]));
58 t->active[file][index] |= active;
67 GLuint active )
69 set_active_component( t, dst.File, dst.Index, active & dst.WriteMask );
89 return t->active[file][index] & (1<<component);
101 GLubyte active local
119 GLubyte active; local
[all...]
/external/selinux/libselinux/utils/
H A Dgetsebool.c17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; local
74 active = security_get_boolean_active(names[i]);
75 if (active < 0) {
78 fprintf(stderr, "Error getting active value for %s\n",
97 if (pending != active) {
99 (active ? "on" : "off"),
103 (active ? "on" : "off"));
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRemoteCallbackList.java101 Object[] active = activeBroadcast;
102 if (active == null || active.length < N) {
103 activeBroadcast = active = new Object[N];
107 active[i++] = cb;
128 Object[] active = activeBroadcast;
129 if (active != null) {
132 active[i] = null;
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
H A Dtool_button.css15 * /deep/ .tool-button.active {
/external/jmonkeyengine/engine/src/core/com/jme3/app/state/
H A DAppState.java71 * @param active activate the AppState or not.
73 public void setEnabled(boolean active); argument
/external/okhttp/website/static/
H A Dapp-theme.css11 .content-nav li.active a,
12 .content-nav li.active a:hover {
/external/valgrind/none/tests/s390x/
H A Dstfle.stdout.exp3 The z/Architecture architectural mode is installed and active
8 The z/Architecture architectural mode is installed and active
/external/skia/src/animator/
H A DSkDisplayList.cpp27 void SkDisplayList::append(SkActive* active) { argument
28 *fActiveList.append() = active;
38 SkActive* active = *activePtr; local
39 active->reset();
126 void SkDisplayList::remove(SkActive* active) { argument
127 int index = fActiveList.find(active);
130 SkASSERT(fActiveList.find(active) < 0);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_fetch_shade_emit.c61 struct draw_vs_variant *active; member in struct:fetch_shade_emit
146 fse->active = draw_vs_lookup_variant( draw->vs.vertex_shader,
149 if (!fse->active) {
155 fse->active->key.const_vbuffers);
160 fse->active->set_buffer( fse->active,
209 fse->active->run_linear( fse->active,
271 fse->active->run_elts( fse->active,
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di830_context.h138 GLuint active; member in struct:i830_hw_state
164 i830->state.active |= flag; \
166 i830->state.active &= ~flag; \
/external/aac/libAACenc/src/
H A Dtns_func.h106 INT active,
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DTestBloom.java60 boolean active=true; field in class:TestBloom
144 if(active){
145 active=false;
148 active=true;
H A DTestCrossHatch.java60 boolean active=true; field in class:TestCrossHatch
138 if(active){
139 active=false;
142 active=true;
H A DTestPosterization.java60 boolean active=true; field in class:TestPosterization
138 if(active){
139 active=false;
142 active=true;
/external/valgrind/docs/lib/
H A Dvg_basic.css2 a, a:link, a:visited, a:active { color: #74240f; }
20 code a, code a:link, code a:visited, code a:active, code a:hover {
/external/apache-http/android/src/android/net/http/
H A DConnectionThread.java130 String active = mWaiting ? "w" : "a";
131 return "cid " + mId + " " + active + " " + con;
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
H A DBulletAppState.java33 protected boolean active = true; field in class:BulletAppState
149 this.active = enabled;
153 return active;
169 if (!active) {
179 if (!active) {
185 pSpace.update(active ? tpf * speed : 0);
/external/selinux/libselinux/src/
H A Daudit2why.c34 int active; member in struct:boolean_t
58 boollist[boolcnt]->active = sepol_bool_get_value(boolean);
80 int active = boollist[i]->active; local
98 sepol_bool_set_value(boolean, !active);
125 sepol_bool_set_value(boolean, active);
155 b[i].active = !boollist[ctr]->active;
405 PyObject *bool_ = Py_BuildValue("(si)", b->name, b->active);

Completed in 1300 milliseconds

1234567