HomeSort by relevance Sort by last modified time
    Searched refs:Normal (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/webkit/Source/JavaScriptCore/runtime/
Completion.h 34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted, Terminated };
42 Completion(ComplType type = Normal, JSValue value = JSValue())
Completion.cpp 47 return Completion(Normal);
75 return Completion(Normal, result);
  /external/webkit/Source/WebCore/rendering/style/
ShadowData.h 35 enum ShadowStyle { Normal, Inset };
47 , m_style(Normal)
ShadowData.cpp 63 if (shadow->style() == Normal) {
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Quad.java 114 setBuffer(Type.Normal, 3, new float[]{0, 0, 1,
StripBox.java 149 if (getBuffer(Type.Normal) == null){
163 setBuffer(Type.Normal, 3, BufferUtils.createFloatBuffer(normals));
Box.java 150 if (getBuffer(Type.Normal) == null){
151 setBuffer(Type.Normal, 3, BufferUtils.createFloatBuffer(GEOMETRY_NORMALS_DATA));
Cylinder.java 224 // VertexBuffer nvb = getBuffer(Type.Normal);
233 setBuffer(Type.Normal, 3, createVector3Buffer(getFloatBuffer(Type.Normal), vertCount));
280 FloatBuffer nb = getFloatBuffer(Type.Normal);
Line.java 74 setBuffer(Type.Normal, 3, new float[]{0, 0, 1,
  /external/llvm/lib/Target/PTX/MCTargetDesc/
PTXBaseInfo.h 37 Normal = 0,
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshake.h 49 Incomplete, Normal, Failed, Connected
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/qt/
ActivateFontsQt.cpp 94 f.setWeight(QFont::Normal);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PatternUnlockScreen.java 102 Normal,
117 case Normal:
118 if (DEBUG) Log.d(TAG, "mode normal");
196 // assume normal footer mode for now
197 updateFooter(FooterMode.Normal);
296 updateFooter(FooterMode.Normal);
410 updateFooter(FooterMode.Normal);
KeyguardStatusViewManager.java 441 return StatusMode.Normal;
461 return StatusMode.Normal;
489 case Normal:
570 * Normal case (sim card present, it's not locked)
572 Normal(true),
  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptManager.cpp 58 if (comp.complType() != JSC::Normal && comp.complType() != JSC::ReturnValue)
WorkerScriptController.cpp 137 if (completionType == Normal || completionType == ReturnValue)
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontPlatformDataQt.cpp 47 return QFont::Normal; // QFont::Normal == Weight of 50
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 63 VertexBuffer normals = mesh.getBuffer(Type.Normal);
91 normals = new VertexBuffer(Type.Normal);
94 mesh.clearBuffer(Type.Normal);
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestTangentGen.java 132 strip.setBuffer(Type.Normal, 3, nb);
  /external/v8/test/mjsunit/
debug-script.js 53 } else if (scripts[i].type == Debug.ScriptType.Normal) {
66 // a normal script during startup too.
91 // Test a normal script.
94 assertEquals(Debug.ScriptType.Normal, mjsunit_js_script.type);
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 118 enum ExecutionFlag { Normal, InitializeAndReturn };
  /external/valgrind/main/massif/
ms_main.c 202 // - Normal: these record the current time, total memory size, total heap
204 // - Detailed: these record those things in a normal snapshot, plus a very
214 // normal snapshots, a small fraction are detailed snapshots.
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TangentBinormalGenerator.java 69 public final Vector3f normal; field in class:TangentBinormalGenerator.VertexInfo
72 public VertexInfo(Vector3f position, Vector3f normal) {
74 this.normal = normal;
86 /** Keeps track of tangent, binormal, and normal for one triangle.
91 public final Vector3f normal; field in class:TangentBinormalGenerator.TriangleData
93 public TriangleData(Vector3f tangent, Vector3f binormal, Vector3f normal) {
96 this.normal = normal;
124 && mesh.getBuffer(Type.Normal) != null)
317 Vector3f normal = new Vector3f(); local
397 Vector3f normal = new Vector3f(); local
440 Vector3f normal = new Vector3f(); local
674 Vector3f normal = new Vector3f(); local
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 191 for (; i > -1; i--) CurN[i] = VMulti2(MQube, Q.Normal[i]);
304 Q.Normal = new Array();
305 for (var i = 0; i < Q.Edge.length; i++) Q.Normal[i] = CalcNormal(Q[Q.Edge[i][0]].V, Q[Q.Edge[i][1]].V, Q[Q.Edge[i][2]].V);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 191 for (; i > -1; i--) CurN[i] = VMulti2(MQube, Q.Normal[i]);
304 Q.Normal = new Array();
305 for (var i = 0; i < Q.Edge.length; i++) Q.Normal[i] = CalcNormal(Q[Q.Edge[i][0]].V, Q[Q.Edge[i][1]].V, Q[Q.Edge[i][2]].V);

Completed in 983 milliseconds

1 2 3 4 5