Searched defs:attribs (Results 1 - 25 of 27) sorted by relevance

12

/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/
H A DSAXUtil.java126 public static Vector3f parseVector3(Attributes attribs) throws SAXException{ argument
127 float x = parseFloat(attribs.getValue("x"));
128 float y = parseFloat(attribs.getValue("y"));
129 float z = parseFloat(attribs.getValue("z"));
133 public static ColorRGBA parseColor(Attributes attribs) throws SAXException{ argument
134 float r = parseFloat(attribs.getValue("r"));
135 float g = parseFloat(attribs.getValue("g"));
136 float b = parseFloat(attribs.getValue("b"));
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DShHandle.h58 const TVariableInfoList& getAttribs() const { return attribs; }
71 // Collect info for all attribs and uniforms.
88 TVariableInfoList attribs; // Active attributes in the compiled shader. member in class:TCompiler
H A DVariableInfo.cpp131 CollectAttribsUniforms::CollectAttribsUniforms(TVariableInfoList& attribs, argument
133 : mAttribs(attribs),
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DSkeletonLoader.java84 public void startElement(String uri, String localName, String qName, Attributes attribs) throws SAXException { argument
86 position = SAXUtil.parseVector3(attribs);
88 angle = SAXUtil.parseFloat(attribs.getValue("angle"));
92 axis = SAXUtil.parseVector3(attribs);
94 scale = SAXUtil.parseVector3(attribs);
97 time = SAXUtil.parseFloat(attribs.getValue("time"));
102 String boneName = SAXUtil.parseString(attribs.getValue("bone"));
108 String boneName = attribs.getValue("bone");
109 String parentName = attribs.getValue("parent");
117 bone = new Bone(attribs
[all...]
H A DSceneLoader.java109 private Quaternion parseQuat(Attributes attribs) throws SAXException{ argument
110 if (attribs.getValue("x") != null){
112 float x = parseFloat(attribs.getValue("x"));
113 float y = parseFloat(attribs.getValue("y"));
114 float z = parseFloat(attribs.getValue("z"));
115 float w = parseFloat(attribs.getValue("w"));
117 }else if (attribs.getValue("qx") != null){
119 float x = parseFloat(attribs.getValue("qx"));
120 float y = parseFloat(attribs.getValue("qy"));
121 float z = parseFloat(attribs
144 parseLightNormal(Attributes attribs) argument
155 parseLightAttenuation(Attributes attribs) argument
183 parseLightSpotLightRange(Attributes attribs) argument
199 parseLight(Attributes attribs) argument
229 startElement(String uri, String localName, String qName, Attributes attribs) argument
[all...]
H A DMeshLoader.java392 private void startVertexBuffer(Attributes attribs) throws SAXException { argument
393 if (parseBool(attribs.getValue("positions"), false)) {
399 if (parseBool(attribs.getValue("normals"), false)) {
405 if (parseBool(attribs.getValue("colours_diffuse"), false)) {
411 if (parseBool(attribs.getValue("tangents"), false)) {
412 int dimensions = parseInt(attribs.getValue("tangent_dimensions"), 3);
418 if (parseBool(attribs.getValue("binormals"), false)) {
425 int texCoords = parseInt(attribs.getValue("texture_coords"), 0);
427 int dims = parseInt(attribs.getValue("texture_coord_dimensions_" + i), 2);
448 private void pushAttrib(Type type, Attributes attribs) throw argument
457 pushTangent(Attributes attribs) argument
470 pushTexCoord(Attributes attribs) argument
493 pushColor(Attributes attribs) argument
605 startElement(String uri, String localName, String qName, Attributes attribs) argument
[all...]
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c71 const EGLint attribs[] = { local
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java74 this.attribs = new HashMap<String, String>();
304 this.attribs.put(name, value);
308 return this.attribs.get(name);
312 return this.attribs.get(name) != null;
318 clone.attribs = new HashMap<String, String>(this.attribs);
352 private Map<String, String> attribs; field in class:BasicClientCookie
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShader.java71 private IntMap<Attribute> attribs; field in class:Shader
222 attribs = new IntMap<Attribute>();
236 //attribs = new IntMap<Attribute>();
249 oc.writeIntSavableMap(attribs, "attribs", null);
257 attribs = (IntMap<Attribute>) ic.readIntSavableMap("attribs", null);
265 * but have not been compiled yet. Does not copy the uniforms or attribs.
337 Attribute attrib = attribs.get(ordinal);
341 attribs
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gl.c106 int attribs[64]; local
133 attribs[i++] = GLX_RGBA;
134 attribs[i++] = GLX_RED_SIZE;
135 attribs[i++] = this->gl_config.red_size;
136 attribs[i++] = GLX_GREEN_SIZE;
137 attribs[i++] = this->gl_config.green_size;
138 attribs[i++] = GLX_BLUE_SIZE;
139 attribs[i++] = this->gl_config.blue_size;
142 attribs[i++] = GLX_ALPHA_SIZE;
143 attribs[
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidInput.java151 public AndroidInput(Context ctx, AttributeSet attribs) { argument
152 super(ctx, attribs);
/external/openssh/
H A Dssh-pkcs11.c404 CK_ATTRIBUTE attribs[] = { local
422 /* XXX 3 attributes in attribs[] */
424 attribs[i].pValue = NULL;
425 attribs[i].ulValueLen = 0;
431 if ((rv = f->C_GetAttributeValue(session, obj, attribs, 3))
437 if (attribs[0].ulValueLen == 0 ||
438 attribs[1].ulValueLen == 0 ||
439 attribs[2].ulValueLen == 0) {
444 attribs[i].pValue = xmalloc(attribs[
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_vidandroid.c219 GLint attribs[32]; local
H A Dgl_vidlinux.c558 GLint attribs[32]; local
579 attribs[0] = FXMESA_DOUBLEBUFFER;
580 attribs[1] = FXMESA_ALPHA_SIZE;
581 attribs[2] = 1;
582 attribs[3] = FXMESA_DEPTH_SIZE;
583 attribs[4] = 1;
584 attribs[5] = FXMESA_NONE;
610 attribs);
H A Dgl_vidlinux_svga.c596 GLint attribs[32]; local
617 attribs[0] = FXMESA_DOUBLEBUFFER;
618 attribs[1] = FXMESA_ALPHA_SIZE;
619 attribs[2] = 1;
620 attribs[3] = FXMESA_DEPTH_SIZE;
621 attribs[4] = 1;
622 attribs[5] = FXMESA_NONE;
648 attribs);
H A Dvid_x.c492 XSetWindowAttributes attribs; local
498 attribs.event_mask = StructureNotifyMask | KeyPressMask
501 attribs.border_pixel = 0;
502 attribs.colormap = tmpcmap;
514 &attribs );
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
H A DVertexDataManager.cpp107 const VertexAttributeArray &attribs = mContext->getVertexAttributes(); local
118 Buffer *buffer = attribs[i].mBoundBuffer.get();
120 if (translated[i].active && attribs[i].mArrayEnabled && (buffer || attribs[i].mPointer))
126 int totalCount = buffer->size() / attribs[i].stride();
127 staticBuffer->addRequiredSpace(spaceRequired(attribs[i], totalCount));
129 else if (!staticBuffer || staticBuffer->lookupAttribute(attribs[i]) == -1)
133 mStreamingBuffer->addRequiredSpace(spaceRequired(attribs[i], count));
142 Buffer *buffer = attribs[i].mBoundBuffer.get();
144 if (translated[i].active && attribs[
[all...]
/external/openssl/apps/
H A Dreq.c129 int attribs,unsigned long chtype);
134 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect, int attribs,
137 STACK_OF(CONF_VALUE) *attr, int attribs,
1117 int attribs, unsigned long chtype)
1163 i = auto_info(req, dn_sk, attr_sk, attribs, chtype);
1169 i = prompt_info(req, dn_sk, dn_sect, attr_sk, attr_sect, attribs, chtype);
1203 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect, int attribs,
1306 if (attribs)
1381 STACK_OF(CONF_VALUE) *attr_sk, int attribs, unsigned long chtype)
1431 if (attribs)
1116 make_REQ(X509_REQ *req, EVP_PKEY *pkey, char *subj, int multirdn, int attribs, unsigned long chtype) argument
1201 prompt_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect, STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect, int attribs, unsigned long chtype) argument
1380 auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk, STACK_OF(CONF_VALUE) *attr_sk, int attribs, unsigned long chtype) argument
[all...]
/external/quake/quake/src/WinQuake/
H A Dgl_vidandroid.cpp302 GLint attribs[32]; local
H A Dgl_vidlinux.cpp611 GLint attribs[32]; local
630 attribs[0] = FXMESA_DOUBLEBUFFER;
631 attribs[1] = FXMESA_ALPHA_SIZE;
632 attribs[2] = 1;
633 attribs[3] = FXMESA_DEPTH_SIZE;
634 attribs[4] = 1;
635 attribs[5] = FXMESA_NONE;
661 attribs);
H A Dvid_x.cpp569 XSetWindowAttributes attribs; local
575 attribs.event_mask = StructureNotifyMask | KeyPressMask
578 attribs.border_pixel = 0;
579 attribs.colormap = tmpcmap;
591 &attribs );
H A Dvid_sunx.cpp699 XSetWindowAttributes attribs; local
705 attribs.event_mask = x_std_event_mask;
706 attribs.border_pixel = 0;
707 attribs.colormap = tmpcmap;
719 &attribs );
H A Dvid_sunxil.cpp546 XSetWindowAttributes attribs; local
552 attribs.event_mask = x_std_event_mask;
553 attribs.border_pixel = 0;
554 attribs.colormap = tmpcmap;
566 &attribs );
/external/v8/src/
H A Dbootstrapper.cc388 PropertyAttributes attribs = static_cast<PropertyAttributes>( local
395 CallbacksDescriptor d(*factory()->length_symbol(), *f, attribs);
400 CallbacksDescriptor d(*factory()->name_symbol(), *f, attribs);
405 CallbacksDescriptor d(*factory()->arguments_symbol(), *f, attribs);
410 CallbacksDescriptor d(*factory()->caller_symbol(), *f, attribs);
416 attribs = static_cast<PropertyAttributes>(attribs & ~READ_ONLY);
419 CallbacksDescriptor d(*factory()->prototype_symbol(), *f, attribs);
533 PropertyAttributes attribs = static_cast<PropertyAttributes>( local
540 CallbacksDescriptor d(*factory()->length_symbol(), *f, attribs);
[all...]
/external/webkit/Source/WebKit/qt/tests/qwebpage/
H A Dtst_qwebpage.cpp2140 QList<QInputMethodEvent::Attribute> attribs; local
2142 QInputMethodEvent eventText("\n", attribs);
2145 QInputMethodEvent eventText2("third line", attribs);

Completed in 1912 milliseconds

12