Searched refs:oc (Results 1 - 25 of 122) sorted by relevance

12345

/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DKerning.java64 OutputCapsule oc = ex.getCapsule(this);
65 oc.write(second, "second", 0);
66 oc.write(amount, "amount", 0);
H A DBitmapCharacter.java157 OutputCapsule oc = ex.getCapsule(this);
158 oc.write(c, "c", 0);
159 oc.write(x, "x", 0);
160 oc.write(y, "y", 0);
161 oc.write(width, "width", 0);
162 oc.write(height, "height", 0);
163 oc.write(xOffset, "xOffset", 0);
164 oc.write(yOffset, "yOffset", 0);
165 oc.write(xAdvance, "xAdvance", 0);
177 oc
[all...]
H A DBitmapCharacterSet.java52 OutputCapsule oc = ex.getCapsule(this);
53 oc.write(lineHeight, "lineHeight", 0);
54 oc.write(base, "base", 0);
55 oc.write(renderedSize, "renderedSize", 0);
56 oc.write(width, "width", 0);
57 oc.write(height, "height", 0);
58 oc.write(pageSize, "pageSize", 0);
67 writeCharset(oc, style, charset);
69 oc.write(styles, "styles", null);
72 protected void writeCharset(OutputCapsule oc, in argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Ddfa.c11 unsigned char oc = talx[c]; local
12 switch(oc){
23 if(isprint(oc))
24 fputc(oc, o);
/external/clang/test/SemaCXX/
H A DPR9461.cpp11 template<typename aT,typename,typename oc>
15 basic_string(const aT*,const oc&a=int());
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
H A Dtest_importer_unittest.py59 oc = OutputCapture()
60 oc.capture_output()
64 oc.restore_output()
72 oc = OutputCapture()
73 oc.capture_output()
77 oc.restore_output()
H A Dtest_converter_unittest.py83 oc = OutputCapture()
84 oc.capture_output()
90 oc.restore_output()
134 oc = OutputCapture()
135 oc.capture_output()
141 oc.restore_output()
170 oc = OutputCapture()
171 oc.capture_output()
178 oc.restore_output()
196 oc
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DUserData.java103 OutputCapsule oc = ex.getCapsule(this);
104 oc.write(type, "type", (byte)0);
109 oc.write(i, "intVal", 0);
113 oc.write(f, "floatVal", 0f);
117 oc.write(b, "boolVal", false);
121 oc.write(s, "strVal", null);
125 oc.write(l, "longVal", 0l);
/external/clang/test/CXX/expr/expr.mptr.oper/
H A Dp5.cpp19 const X0 &oc,
47 (oc.*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'const' qualifier}}
48 (oc.*pmc)();
49 (oc.*pmv)(); // expected-error{{call to pointer to member function of type 'void () volatile' drops 'const' qualifier}}
50 (oc.*pmcv)();
10 test_object_cvquals(void (X0::*pm)(), void (X0::*pmc)() const, void (X0::*pmv)() volatile, void (X0::*pmcv)() const volatile, X0 *p, const X0 *pc, volatile X0 *pv, const volatile X0 *pcv, X0 &o, const X0 &oc, volatile X0 &ov, const volatile X0 &ocv) argument
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DRenderState.java325 OutputCapsule oc = ex.getCapsule(this);
326 oc.write(pointSprite, "pointSprite", false);
327 oc.write(wireframe, "wireframe", false);
328 oc.write(cullMode, "cullMode", FaceCullMode.Back);
329 oc.write(depthWrite, "depthWrite", true);
330 oc.write(depthTest, "depthTest", true);
331 oc.write(colorWrite, "colorWrite", true);
332 oc.write(blendMode, "blendMode", BlendMode.Off);
333 oc.write(alphaTest, "alphaTest", false);
334 oc
[all...]
H A DTechniqueDef.java367 OutputCapsule oc = ex.getCapsule(this);
368 oc.write(name, "name", null);
369 oc.write(vertName, "vertName", null);
370 oc.write(fragName, "fragName", null);
371 oc.write(shaderLang, "shaderLang", null);
372 oc.write(presetDefines, "presetDefines", null);
373 oc.write(lightMode, "lightMode", LightMode.Disable);
374 oc.write(shadowMode, "shadowMode", ShadowMode.Disable);
375 oc.write(renderState, "renderState", null);
376 oc
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderVariable.java58 OutputCapsule oc = ex.getCapsule(this);
59 oc.write(name, "name", null);
/external/valgrind/main/VEX/switchback/
H A Dlinker.c231 static void addProddableBlock ( ObjectCode* oc, void* start, int size )
236 fprintf(stderr, "aPB oc=%p %p %d (%p .. %p)\n", oc, start, size,
241 pb->next = oc->proddables;
242 oc->proddables = pb;
245 static void checkProddableBlock ( ObjectCode* oc, void* addr )
248 for (pb = oc->proddables; pb != NULL; pb = pb->next) {
419 char* alloc_fixup_bytes ( ObjectCode* oc, int nbytes )
424 res = &(oc->fixup[oc
[all...]
/external/valgrind/main/VEX/unused/
H A Dlinker.c167 static void addProddableBlock ( ObjectCode* oc, void* start, int size ) argument
172 fprintf(stderr, "aPB oc=%p %p %d (%p .. %p)\n", oc, start, size,
177 pb->next = oc->proddables;
178 oc->proddables = pb;
181 static void checkProddableBlock ( ObjectCode* oc, void* addr ) argument
184 for (pb = oc->proddables; pb != NULL; pb = pb->next) {
353 char* alloc_fixup_bytes ( ObjectCode* oc, int nbytes ) argument
358 res = &(oc->fixup[oc
419 do_Elf_Rel_relocations( ObjectCode* oc, char* ehdrC, Elf_Shdr* shdr, int shnum, Elf_Sym* stab, char* strtab ) argument
545 do_Elf_Rela_relocations( ObjectCode* oc, char* ehdrC, Elf_Shdr* shdr, int shnum, Elf_Sym* stab, char* strtab ) argument
1158 ObjectCode* oc; local
1270 ObjectCode *oc; local
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLight.java183 OutputCapsule oc = ex.getCapsule(this);
184 oc.write(color, "color", null);
185 oc.write(enabled, "enabled", true);
186 oc.write(name, "name", null);
H A DSpotLight.java195 OutputCapsule oc = ex.getCapsule(this);
196 oc.write(direction, "direction", new Vector3f());
197 oc.write(position, "position", new Vector3f());
198 oc.write(spotInnerAngle, "spotInnerAngle", FastMath.QUARTER_PI / 8);
199 oc.write(spotOuterAngle, "spotOuterAngle", FastMath.QUARTER_PI / 6);
200 oc.write(spotRange, "spotRange", 100);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dqueries_unittest.py50 oc = OutputCapture()
52 oc.capture_output()
55 stdout, _, _ = oc.restore_output()
109 self.oc = None
116 if self.oc:
120 self.oc = OutputCapture()
121 self.oc.capture_output()
124 stdout, stderr, logs = self.oc.restore_output()
125 self.oc = None
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dfinder_unittest.py108 oc = OutputCapture()
109 oc.set_log_level(logging.ERROR)
110 oc.capture_output()
114 _, _, logs = oc.restore_output()
118 oc.capture_output()
122 _, _, logs = oc.restore_output()
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioNode.java733 OutputCapsule oc = ex.getCapsule(this);
734 oc.write(audioKey, "audio_key", null);
735 oc.write(loop, "looping", false);
736 oc.write(volume, "volume", 1);
737 oc.write(pitch, "pitch", 1);
738 oc.write(timeOffset, "time_offset", 0);
739 oc.write(dryFilter, "dry_filter", null);
741 oc.write(velocity, "velocity", null);
742 oc.write(reverbEnabled, "reverb_enabled", false);
743 oc
[all...]
H A DAudioKey.java124 OutputCapsule oc = ex.getCapsule(this);
125 oc.write(stream, "do_stream", false);
126 oc.write(streamCache, "use_stream_cache", false);
H A DLowPassFilter.java82 OutputCapsule oc = ex.getCapsule(this);
83 oc.write(volume, "volume", 0);
84 oc.write(highFreqVolume, "hf_volume", 0);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DWaterFilter.java304 OutputCapsule oc = ex.getCapsule(this);
306 oc.write(speed, "speed", 1f);
307 oc.write(lightDirection, "lightDirection", new Vector3f(0, -1, 0));
308 oc.write(lightColor, "lightColor", ColorRGBA.White);
309 oc.write(waterHeight, "waterHeight", 0.0f);
310 oc.write(waterColor, "waterColor", new ColorRGBA(0.0078f, 0.3176f, 0.5f, 1.0f));
311 oc.write(deepWaterColor, "deepWaterColor", new ColorRGBA(0.0039f, 0.00196f, 0.145f, 1.0f));
313 oc.write(colorExtinction, "colorExtinction", new Vector3f(5.0f, 20.0f, 30.0f));
314 oc.write(waterTransparency, "waterTransparency", 0.1f);
315 oc
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
H A Dapache_http_server_unittest.py60 oc = OutputCapture()
62 oc.capture_output()
66 _, _, logs = oc.restore_output()
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DKeyFrame.java65 OutputCapsule oc = ex.getCapsule(this);
66 oc.writeSavableArrayList((ArrayList) cinematicEvents, "cinematicEvents", null);
67 oc.write(index, "index", 0);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DAbstractControl.java101 OutputCapsule oc = ex.getCapsule(this);
102 oc.write(enabled, "enabled", true);
103 oc.write(spatial, "spatial", null);

Completed in 978 milliseconds

12345