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

1 2 3

  /external/mockito/cglib-and-asm/src/org/mockito/asm/
FieldWriter.java 47 private final ClassWriter cw; field in class:FieldWriter
100 * @param cw the class writer to which this field must be added.
108 final ClassWriter cw,
115 if (cw.firstField == null) {
116 cw.firstField = this;
118 cw.lastField.next = this;
120 cw.lastField = this;
121 this.cw = cw;
123 this.name = cw.newUTF8(name);
    [all...]
AnnotationWriter.java 43 private final ClassWriter cw; field in class:AnnotationWriter
93 * @param cw the class writer to which this annotation must be added.
101 final ClassWriter cw,
107 this.cw = cw;
121 bv.putShort(cw.newUTF8(name));
124 bv.put12('s', cw.newUTF8((String) value));
126 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index);
129 bv.put12('Z', cw.newInteger(v).index);
131 bv.put12('C', cw.newInteger(((Character) value).charValue()).index);
    [all...]
Attribute.java 136 * @param cw the class to which this attribute must be added. This parameter
154 final ClassWriter cw,
184 * @param cw the class writer to be used to convert the attributes into byte
202 final ClassWriter cw,
211 cw.newUTF8(attr.type);
212 size += attr.write(cw, code, len, maxStack, maxLocals).length + 6;
222 * @param cw the class writer to be used to convert the attributes into byte
239 final ClassWriter cw,
248 ByteVector b = attr.write(cw, code, len, maxStack, maxLocals);
249 out.putShort(cw.newUTF8(attr.type)).putInt(b.length);
    [all...]
Frame.java 585 * @param cw the ClassWriter to which this label belongs.
590 private void push(final ClassWriter cw, final String desc) {
591 int type = type(cw, desc);
603 * @param cw the ClassWriter to which this label belongs.
607 private static int type(final ClassWriter cw, final String desc) {
628 return OBJECT | cw.addType(t);
666 data = OBJECT | cw.addType(t);
746 * @param cw the ClassWriter to which this label belongs.
751 private int init(final ClassWriter cw, final int t) {
754 s = OBJECT | cw.addType(cw.thisName);
    [all...]
MethodWriter.java 127 final ClassWriter cw; field in class:MethodWriter
158 * the ClassReader associated to this writer in <code>cw.cr</code>. More
160 * <code>cw.cr.b</code>.
166 * the ClassReader associated to this writer in <code>cw.cr</code>. More
168 * <code>cw.cr.b</code>.
399 * @param cw the class writer in which the method must be added.
412 final ClassWriter cw,
421 if (cw.firstMethod == null) {
422 cw.firstMethod = this;
424 cw.lastMethod.next = this;
    [all...]
  /external/chromium_org/ui/base/ime/
candidate_window.cc 26 bool CandidateWindow::IsEqual(const CandidateWindow& cw) const {
27 if (page_size() != cw.page_size() ||
28 cursor_position() != cw.cursor_position() ||
29 is_cursor_visible() != cw.is_cursor_visible() ||
30 orientation() != cw.orientation() ||
31 show_window_at_composition() != cw.show_window_at_composition() ||
32 is_auxiliary_text_visible() != cw.is_auxiliary_text_visible() ||
33 auxiliary_text() != cw.auxiliary_text() ||
34 candidates_.size() != cw.candidates_.size())
39 const Entry& right = cw.candidates_[i]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_clip_tmp.h 62 const GLfloat cw = from[3]; local
66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
71 mask |= (((cw < cz) << CLIP_FAR_SHIFT));
72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT));
76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT;
77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT;
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT
142 const GLfloat cw = from[3]; local
    [all...]
m_debug_clip.c 85 const GLfloat cw = from[3]; local
87 if ( -cx + cw < 0 ) mask |= CLIP_RIGHT_BIT;
88 if ( cx + cw < 0 ) mask |= CLIP_LEFT_BIT;
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT;
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT;
92 if ( -cz + cw < 0 ) mask |= CLIP_FAR_BIT;
93 if ( cz + cw < 0 ) mask |= CLIP_NEAR_BIT;
105 GLfloat oow = 1.0F / cw;
  /external/mesa3d/src/mesa/math/
m_clip_tmp.h 62 const GLfloat cw = from[3]; local
66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
71 mask |= (((cw < cz) << CLIP_FAR_SHIFT));
72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT));
76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT;
77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT;
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT
142 const GLfloat cw = from[3]; local
    [all...]
m_debug_clip.c 85 const GLfloat cw = from[3]; local
87 if ( -cx + cw < 0 ) mask |= CLIP_RIGHT_BIT;
88 if ( cx + cw < 0 ) mask |= CLIP_LEFT_BIT;
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT;
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT;
92 if ( -cz + cw < 0 ) mask |= CLIP_FAR_BIT;
93 if ( cz + cw < 0 ) mask |= CLIP_NEAR_BIT;
105 GLfloat oow = 1.0F / cw;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DefaultGeneratorStrategy.java 24 ClassWriter cw = getClassWriter(); local
25 transform(cg).generateClass(cw);
26 return transform(cw.toByteArray());
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ClassLoaderLocalMap.java 155 ClassWriter cw = new ClassWriter(0); local
158 cw.visit(V1_2, ACC_PUBLIC + ACC_SUPER, holderClassName, null, "java/lang/Object", null);
161 cw.visitField(
170 mv = cw.visitMethod(ACC_STATIC, "<clinit>", "()V", null, null);
181 mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);
189 cw.visitEnd();
190 return cw.toByteArray();
  /art/test/121-modifiers/src/
Asm.java 95 ClassWriter cw = new ClassWriter(0); local
96 classNode.accept(cw);
97 byte[] b = cw.toByteArray();
  /development/tools/mkstubs/src/com/android/mkstubs/
StubGenerator.java 106 ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_MAXS); local
108 ClassVisitor stubWriter = new ClassStubber(cw);
111 return cw.toByteArray();
  /bionic/libc/kernel/uapi/asm-x86/asm/
sigcontext32.h 40 __u32 cw; member in struct:_fpstate_ia32
  /bionic/libc/kernel/uapi/linux/dvb/
ca.h 64 unsigned char cw[8]; member in struct:ca_descr
  /development/ndk/platforms/android-9/arch-x86/include/asm/
sigcontext.h 40 unsigned long cw; member in struct:_fpstate
  /development/ndk/platforms/android-L/arch-x86/include/asm/
sigcontext32.h 40 __u32 cw; member in struct:_fpstate_ia32
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
sigcontext32.h 40 __u32 cw; member in struct:_fpstate_ia32
  /development/ndk/platforms/android-L/include/linux/dvb/
ca.h 64 unsigned char cw[8]; member in struct:ca_descr
  /external/chromium_org/sandbox/linux/services/
android_i386_ucontext.h 24 unsigned long cw; member in struct:_libc_fpstate
  /external/kernel-headers/original/uapi/asm-x86/asm/
sigcontext32.h 28 __u32 cw; member in struct:_fpstate_ia32
  /external/kernel-headers/original/uapi/linux/dvb/
ca.h 73 unsigned char cw[8]; member in struct:ca_descr
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_rss.c 150 int cw, ccw; local
152 /* Hardware frontwinding is always CW, so if ours is also CW,
158 cw = 1;
162 cw = 0;
170 EMIT_RS( svga, curr->stencil[cw].func, STENCILFUNC, fail );
171 EMIT_RS( svga, curr->stencil[cw].fail, STENCILFAIL, fail );
172 EMIT_RS( svga, curr->stencil[cw].zfail, STENCILZFAIL, fail );
173 EMIT_RS( svga, curr->stencil[cw].pass, STENCILPASS, fail );
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 150 int cw, ccw; local
152 /* Hardware frontwinding is always CW, so if ours is also CW,
158 cw = 1;
162 cw = 0;
170 EMIT_RS( svga, curr->stencil[cw].func, STENCILFUNC, fail );
171 EMIT_RS( svga, curr->stencil[cw].fail, STENCILFAIL, fail );
172 EMIT_RS( svga, curr->stencil[cw].zfail, STENCILZFAIL, fail );
173 EMIT_RS( svga, curr->stencil[cw].pass, STENCILPASS, fail );

Completed in 6717 milliseconds

1 2 3