Searched refs:attribs (Results 1 - 25 of 33) sorted by relevance

12

/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
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...]
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...]
/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/WebCore/platform/graphics/mac/
H A DGraphicsContext3DMac.mm56 static void setPixelFormat(Vector<CGLPixelFormatAttribute>& attribs, int colorBits, int depthBits, bool accelerated, bool supersample, bool closest)
58 attribs.clear();
60 attribs.append(kCGLPFAColorSize);
61 attribs.append(static_cast<CGLPixelFormatAttribute>(colorBits));
62 attribs.append(kCGLPFADepthSize);
63 attribs.append(static_cast<CGLPixelFormatAttribute>(depthBits));
66 attribs.append(kCGLPFAAccelerated);
68 attribs.append(kCGLPFARendererID);
69 attribs.append(static_cast<CGLPixelFormatAttribute>(kCGLRendererGenericFloatID));
73 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/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
H A DCookieSpecBase.java86 NameValuePair[] attribs = headerelement.getParameters();
87 for (int j = attribs.length - 1; j >= 0; j--) {
88 NameValuePair attrib = attribs[j];
H A DRFC2965Spec.java126 NameValuePair[] attribs = headerelement.getParameters();
131 new HashMap<String, NameValuePair>(attribs.length);
132 for (int j = attribs.length - 1; j >= 0; j--) {
133 NameValuePair param = attribs[j];
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DVariableInfo.h11 // It is currently being used to store info about active attribs and uniforms.
22 CollectAttribsUniforms(TVariableInfoList& attribs,
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 DCompiler.cpp175 attribs.clear();
187 CollectAttribsUniforms collect(attribs, uniforms);
H A DVariableInfo.cpp131 CollectAttribsUniforms::CollectAttribsUniforms(TVariableInfoList& attribs, argument
133 : mAttribs(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/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/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/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/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/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/quake/quake/src/QW/client/
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 );
H A Dgl_vidandroid.c219 GLint attribs[32]; local
/external/quake/quake/src/WinQuake/
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 );
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 Dgl_vidandroid.cpp302 GLint attribs[32]; local

Completed in 1197 milliseconds

12