Searched refs:component (Results 1 - 25 of 256) sorted by relevance

1234567891011

/external/jetty/src/java/org/eclipse/jetty/util/component/
H A DDestroyable.java19 package org.eclipse.jetty.util.component;
24 * <p>Typically a Destroyable is a {@link LifeCycle} component that can hold onto
H A DDumpable.java19 package org.eclipse.jetty.util.component;
/external/llvm/tools/llvm-config/
H A DLibraryDependencies.inc10 /// The name of the component.
13 /// The name of the library for this component (or NULL).
16 /// Whether the component is installed.
19 /// The list of libraries required when linking this component.
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_util.h46 unsigned component );
52 unsigned component );
58 unsigned component );
68 unsigned component );
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiArrayType.java27 private MultiType component; field in class:MultiArrayType
30 public MultiArrayType(MultiType component, int dims) { argument
32 this.component = component;
37 CtClass clazz = component.getCtClass();
55 return component.popChanged();
63 return dims == 1 ? (Type)component : new MultiArrayType(component, dims - 1);
114 return component.isAssignableTo(typeRoot);
122 return component
[all...]
/external/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { argument
46 SkASSERT(component <= 255);
47 return (scale * component + (1 << 23)) >> 24;
/external/proguard/src/proguard/gui/
H A DTabbedPane.java66 * Adds a component with a given title to the tabbed pane.
69 * @param component the component that will be added as a tab.
71 public Component add(final String title, Component component) argument
137 cardPanel.add(title, component);
139 return component;
148 * @return the component containing the image.
158 JButton component = new JButton(new ImageIcon(image));
159 component.setFocusPainted(false);
160 component
[all...]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Dmjpeg_decoder.h104 // Sample factors of the n-th component.
105 int GetHorizSampFactor(int component);
107 int GetVertSampFactor(int component);
109 int GetHorizSubSampFactor(int component);
111 int GetVertSubSampFactor(int component);
117 int GetComponentScanlinesPerImcuRow(int component);
119 // Width of a component in bytes.
120 int GetComponentWidth(int component);
122 // Height of a component.
123 int GetComponentHeight(int component);
[all...]
/external/libyuv/files/include/libyuv/
H A Dmjpeg_decoder.h81 // Sample factors of the n-th component.
82 int GetHorizSampFactor(int component);
84 int GetVertSampFactor(int component);
86 int GetHorizSubSampFactor(int component);
88 int GetVertSubSampFactor(int component);
94 int GetComponentScanlinesPerImcuRow(int component);
96 // Width of a component in bytes.
97 int GetComponentWidth(int component);
99 // Height of a component.
100 int GetComponentHeight(int component);
[all...]
/external/libselinux/src/
H A Dcontext.c14 char *(component[4]); member in struct:__anon9096
19 * 4 colon-separated components and no whitespace in any component other
20 * than the MLS component.
38 n->current_str = n->component[0] = n->component[1] = n->component[2] =
39 n->component[3] = 0;
62 n->component[3] = 0;
67 /* MLS range is one component */
71 n->component[
[all...]
/external/selinux/libselinux/src/
H A Dcontext.c14 char *(component[4]); member in struct:__anon13606
19 * 4 colon-separated components and no whitespace in any component other
20 * than the MLS component.
38 n->current_str = n->component[0] = n->component[1] = n->component[2] =
39 n->component[3] = 0;
62 n->component[3] = 0;
67 /* MLS range is one component */
71 n->component[
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/
H A DRequestLog.java21 import org.eclipse.jetty.util.component.LifeCycle;
H A DHandlerContainer.java21 import org.eclipse.jetty.util.component.LifeCycle;
H A DHandler.java29 import org.eclipse.jetty.util.component.Destroyable;
30 import org.eclipse.jetty.util.component.LifeCycle;
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.cpp63 float aMin = a.component(ndx).getMin().asFloat();
64 float aMax = a.component(ndx).getMax().asFloat();
65 float bMin = b.component(ndx).getMin().asFloat();
66 float bMax = b.component(ndx).getMax().asFloat();
78 int aMin = a.component(ndx).getMin().asInt();
79 int aMax = a.component(ndx).getMax().asInt();
80 int bMin = b.component(ndx).getMin().asInt();
81 int bMax = b.component(ndx).getMax().asInt();
91 bool aMin = a.component(ndx).getMin().asBool();
92 bool aMax = a.component(nd
[all...]
H A DrsgUtils.cpp67 float minVal = valueRange.component(ndx).getMin().asFloat();
68 float maxVal = valueRange.component(ndx).getMax().asFloat();
69 dst.component(ndx).asFloat() = getQuantizedFloat(rnd, minVal, maxVal, quantizeStep);
76 int minVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0;
77 int maxVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0;
78 dst.component(ndx).asBool() = rnd.getInt(minVal, maxVal) == 1;
87 int minVal = valueRange.component(ndx).getMin().asInt();
88 int maxVal = valueRange.component(ndx).getMax().asInt();
89 dst.component(ndx).asInt() = rnd.getInt(minVal, maxVal);
138 if (valueRange.getMin().component(nd
[all...]
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
H A DRemoteAPI.java56 ComponentName component = ComponentName.unflattenFromString(testerName);
57 if (component == null) {
58 Log.e(LOG_TAG, "Invalid component name supplied (" + testerName + "), using default");
59 component = getDefaultTesterComponent();
61 return component;
69 // Choose component
70 ComponentName component = getTesterComponent(testerName);
73 testIntent.setComponent(component);
90 Log.e(LOG_TAG, "Can't resolve component as activity or service (" + component
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/thread/
H A DThreadPool.java21 import org.eclipse.jetty.util.component.LifeCycle;
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
H A DAwtMouseInput.java65 private Component component; field in class:AwtMouseInput
100 if (component != null){
101 component.removeMouseListener(this);
102 component.removeMouseMotionListener(this);
103 component.removeMouseWheelListener(this);
119 component = comp;
120 component.addMouseListener(this);
121 component.addMouseMotionListener(this);
122 component.addMouseWheelListener(this);
152 component
286 recenterMouse(final Component component) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DChangeComponentsComponent.java20 * A game component that can swap other components in and out of its parent game object. The
64 GameComponent component = unrelasedComponents.get(x);
65 if (!component.shared) {
66 factory.releaseComponent(component);
95 public void addSwapInComponent(GameComponent component) { argument
96 mComponentsToInsert.add(component);
99 public void addSwapOutComponent(GameComponent component) { argument
100 mComponentsToRemove.add(component);
/external/skia/src/gpu/effects/
H A DGrCustomXfermode.cpp60 char component = kComponents[i]; local
61 fsBuilder->codeAppendf("if (2.0 * %s.%c <= %s.a) {", src, component, src);
63 final, component, src, component, dst, component);
66 final, component, src, dst, dst, dst, component, src, src,
67 component);
74 // Does one component of color-dodge
79 const char component) {
75 color_dodge_component(GrGLFragmentBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
99 color_burn_component(GrGLFragmentBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
120 soft_light_component_pos_dst_alpha(GrGLFragmentBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
[all...]
/external/libpng/contrib/examples/
H A Dpngpixel.c30 /* Return component 'c' of pixel 'x' from the given row. */
32 component(png_const_bytep row, png_uint_32 x, unsigned int c, function
79 printf("GRAY %u\n", component(row, x, 0, bit_depth, 1));
88 PNG_CONST unsigned int index = component(row, x, 0, bit_depth, 1);
117 printf("RGB %u %u %u\n", component(row, x, 0, bit_depth, 3),
118 component(row, x, 1, bit_depth, 3),
119 component(row, x, 2, bit_depth, 3));
123 printf("GRAY+ALPHA %u %u\n", component(row, x, 0, bit_depth, 2),
124 component(row, x, 1, bit_depth, 2));
128 printf("RGBA %u %u %u %u\n", component(ro
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_pass0.c81 GLuint component,
89 c->pass0_fp_reg[file][idx][component] = ref;
96 GLuint component,
99 c->pass0_fp_reg[file][idx][component] = src_ref;
169 GLuint component )
171 const struct brw_wm_ref *ref = c->pass0_fp_reg[file][idx][component];
183 ref = get_param_ref(c, &c->fp->program.Base.LocalParams[idx][component]);
187 ref = get_param_ref(c, &c->env_param[idx][component]);
207 ref = get_const_ref(c, &plist->ParameterValues[idx][component].f);
214 ref = get_param_ref(c, &plist->ParameterValues[idx][component]
78 pass0_set_fpreg_value( struct brw_wm_compile *c, GLuint file, GLuint idx, GLuint component, struct brw_wm_value *value ) argument
93 pass0_set_fpreg_ref( struct brw_wm_compile *c, GLuint file, GLuint idx, GLuint component, const struct brw_wm_ref *src_ref ) argument
267 GLuint component = GET_SWZ(src.Swizzle,i); local
[all...]
/external/deqp/modules/glshared/
H A DglsRandomShaderProgram.cpp196 access.component(0).asFloat(ndx) = attribValue[0];
197 if (numComponents >= 2) access.component(1).asFloat(ndx) = attribValue[1];
198 if (numComponents >= 3) access.component(2).asFloat(ndx) = attribValue[2];
199 if (numComponents >= 4) access.component(3).asFloat(ndx) = attribValue[3];
214 packet->position[0] = access.component(0).asFloat(ndx);
215 packet->position[1] = access.component(1).asFloat(ndx);
216 packet->position[2] = access.component(2).asFloat(ndx);
217 packet->position[3] = access.component(3).asFloat(ndx);
237 dst[0] = access.component(0).asFloat(ndx);
238 if (numComponents >= 2) dst[1] = access.component(
[all...]
/external/libpng/contrib/tools/
H A Dcvtcolor.c28 "%s: usage: %s [-linear|-sRGB] [-gray|-color] component{1,4}\n",
34 component(const char *prog, const char *arg, int issRGB) function
41 fprintf(stderr, "%s: %s: invalid component value (%lu)\n", prog, arg, c);
91 c[3] = component(prog, argv[3], to_linear);
94 c[2] = component(prog, argv[2], to_linear);
97 c[1] = component(prog, argv[1], to_linear);
100 c[0] = component(prog, argv[0], to_linear);

Completed in 825 milliseconds

1234567891011