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

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
ISourceRevealer.java 38 * @param perspective If not null, switch to this perspective before
42 boolean revealMethod(String fqmn, String fileName, int lineNumber, String perspective);
JavaSourceRevealer.java 70 String perspective) {
73 if (revealer.revealMethod(fqmn, fileName, linenumber, perspective)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
DeviceSelectorView.java 48 IPerspectiveDescriptor perspective = getViewSite().getPage().getPerspective(); local
51 if (perspective.getId().equals(PixelPerfectPespective.ID)) {
53 } else if (perspective.getId().equals(TreeViewPerspective.ID)) {
100 public void perspectiveActivated(IWorkbenchPage page, IPerspectiveDescriptor perspective) {
101 if (perspective.getId().equals(PixelPerfectPespective.ID)) {
104 } else if (perspective.getId().equals(TreeViewPerspective.ID)) {
114 public void perspectiveChanged(IWorkbenchPage page, IPerspectiveDescriptor perspective,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
SourceRevealer.java 101 * @param perspective perspective to switch to before the source is revealed, null to not
105 public boolean revealMethod(String fqmn, String fileName, int lineNumber, String perspective) {
112 return revealLineMatch(fileMatches, fileName, lineNumber, perspective);
126 return revealLineMatch(filteredMatches, fileName, lineNumber, perspective);
155 if (perspective != null) {
156 SourceRevealer.switchToPerspective(perspective);
171 return displayMethod((IMethod) methodMatches.get(0).getElement(), perspective);
177 return revealLineMatch(fileMatches, fileName, lineNumber, perspective);
190 if (perspective != null)
    [all...]
  /external/skia/tools/lua/
bitmap_statistics.lua 32 if matrixType.perspective then
56 ", perspective = ", num_perspective_bitmaps,
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_point.c 82 * perspective divide.
100 * \param perspective does the shader expects pre-multiplied w, i.e.,
109 boolean perspective)
125 if (perspective) {
145 if (perspective) {
157 info->a0[slot][3] = perspective ? w0 : 1.0f;
220 boolean perspective = !!(interp == LP_INTERP_PERSPECTIVE); local
223 if (perspective & usage_mask) {
255 perspective);
265 if (perspective) {
    [all...]
  /external/skia/gm/
glyph_pos.cpp 91 // Perspective test.
94 SkMatrix perspective; variable
95 perspective.setIdentity();
96 perspective.setPerspX(-SkScalarInvert(340));
97 perspective.setSkewX(8.0f / 25.0f);
98 perspective.setSkewY(2.0f / 25.0f);
101 canvas->concat(perspective);
gradients.cpp 154 // Based on the original gradient slide, but with perspective applied to the
185 // apply an increasing y perspective as we move to the right
186 SkMatrix perspective; local
187 perspective.setIdentity();
188 perspective.setPerspY(SkIntToScalar(i+1) / 500);
189 perspective.setSkewX(SkIntToScalar(i+1) / 10);
191 SkShader* shader = gGradMakers[j](pts, gGradData[i], tm, perspective);
208 // Based on the original gradient slide, but with perspective applied to
219 SkMatrix perspective; local
220 perspective.setIdentity()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
SourceRevealer.java 80 // workbench page has an editor area (typically the ddms perspective doesn't).
85 // no editor area? we open the java perspective.
117 public boolean revealMethod(String fqmn, String fileName, int lineNumber, String perspective) {
124 MethodSearchRequestor requestor = new MethodSearchRequestor(perspective);
142 public MethodSearchRequestor(String perspective) {
143 mPerspective = perspective;
175 // ignore exception, perspective won't be switched
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
LogCatPreferencePage.java 98 IPerspectiveDescriptor perspective = perspectiveDescriptors[i]; local
99 perspectives[i][0] = perspective.getLabel();
100 perspectives[i][1] = perspective.getId();
  /frameworks/native/opengl/libagl/
vertex.cpp 54 void perspective(ogles_context_t* c, vertex_t* v, uint32_t enables) function in namespace:android
102 // if the vertex is clipped, we don't do the perspective
104 perspective(c, v, enables);
137 perspective(c, v, c->rasterizer.state.enables);
matrix.cpp 99 c->arrays.perspective = (c->clipPlanes.enable) ?
102 c->arrays.perspective = ogles_vertex_perspective3DZ;
104 c->arrays.perspective = ogles_vertex_clipAllPerspective3DZ;
108 c->arrays.perspective = ogles_vertex_perspective2D;
110 c->arrays.perspective(c, v);
115 c->arrays.perspective = validate_perspective;
142 // invalidate perspective (divide by W) and view volume clipping
context.h 219 void (*perspective)(ogles_context_t*c, vertex_t* v); member in struct:android::gl::array_machine_t
627 uint32_t perspective : 1; member in struct:android::gl::ogles_context_t
array.cpp 962 c->arrays.perspective(c, v);
979 c->arrays.perspective(c, v);
1018 //c->arrays.perspective(c, v);
1093 GLboolean perspective = local
    [all...]
state.cpp 295 c->perspective = (mode == GL_NICEST) ? 1 : 0;
  /external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/spec/gl-matrix/
mat4-spec.js 521 describe("perspective", function() {
523 beforeEach(function() { result = mat4.perspective(out, fovy, 1, 0, 1); });
534 beforeEach(function() { result = mat4.perspective(out, 45 * Math.PI / 180.0, 640/480, 0.1, 200); });
  /external/skia/tests/
Matrix44Test.cpp 406 SkMatrix44 perspective(SkMatrix44::kIdentity_Constructor);
407 perspective.setDouble(3, 2, 1.0);
408 perspective.invert(&inverse);
666 // elements (except perspective) have entries, to test that they are ignored.
687 // Try the same test cases again, but this time add perspective which is
758 // Perspective cases.
760 transform.set(3, 2, -0.1); // Perspective depth 10
766 transform.set(3, 2, -0.1); // Perspective depth 10
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /frameworks/rs/api/
rs_matrix.spec 304 summary: Load a perspective projection matrix
306 Constructs a perspective projection matrix, assuming a symmetrical field of view.
  /external/v8/benchmarks/spinning-balls/
v.js 322 // Perform perspective projection.
  /external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/gl-matrix/
mat4.js 1068 * Generates a perspective projection matrix with the given bounds
1077 mat4.perspective = function (out, fovy, aspect, near, far) {
1100 * Generates a perspective projection matrix with the given field of view.
    [all...]
  /external/libvpx/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 171 ;# From the "address-bit" perspective discussed above, we simply need to
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 171 ;# From the "address-bit" perspective discussed above, we simply need to
    [all...]
  /build/tools/droiddoc/templates-ds/assets/css/
default.css     [all...]

Completed in 2024 milliseconds

1 2