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

1 2 3 4 5 6 7

  /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...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_huff_cw.cpp 62 cw = bit field extracted from a leaf entry of packed mp3 Huffman Tables
153 uint16 cw; local
157 cw = *(huffTable_1 + tmp);
158 pMainData->usedBits -= (3 - (cw & 0xFF));
159 return(cw >> 8);
170 uint16 cw; local
183 cw = *(huffTable_2 + tmp);
184 pMainData->usedBits -= (6 - (cw & 0xFF));
186 return(cw >> 8);
196 uint16 cw; local
222 uint16 cw; local
251 uint16 cw; local
280 uint16 cw; local
313 uint16 cw; local
346 uint16 cw; local
379 uint16 cw; local
424 uint16 cw; local
464 uint16 cw; local
505 uint16 cw; local
570 uint16 cw; local
615 uint16 cw; local
683 uint16 cw; local
742 uint16 cw = *(huffTable_32 + (tmp & 0x1f)); local
    [all...]
pvmp3_huffman_decoding.cpp 197 uint16 cw = (*h->pdec_huff_tab)(pMainData); local
202 if (cw)
204 x = cw >> 4;
212 y = cw & 0xf;
221 y = cw & 0xf;
251 uint16 cw; local
255 cw = (*h->pdec_huff_tab)(pMainData);
256 x = cw >> 4;
278 y = cw & 0xf;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
CharArrayWriterTest.java 29 CharArrayWriter cw; field in class:CharArrayWriterTest
37 cw = new CharArrayWriter(90);
38 assertEquals("Created incorrect writer", 0, cw.size());
45 cw = new CharArrayWriter();
46 assertEquals("Created incorrect writer", 0, cw.size());
53 cw.close();
60 cw.flush();
67 cw.write("HelloWorld", 5, 5);
68 cw.reset();
69 cw.write("HelloWorld", 0, 5)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldCharArrayWriterTest.java 28 CharArrayWriter cw; field in class:OldCharArrayWriterTest
33 cw = new CharArrayWriter(90);
34 assertEquals("Test 1: Incorrect writer created.", 0, cw.size());
37 cw = new CharArrayWriter(-1);
46 cw = new CharArrayWriter();
48 cw.write(target, -1, 1);
54 cw.write(target, 0, -1);
60 cw.write(target, 1, target.length);
66 cw.write((char[]) null, 1, 1);
75 cw.write("HelloWorld", 0, 10)
    [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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
fpu_control.h 28 * (cw) register.
80 #define _FPU_RESERVED 0xF0C0 /* Reserved bits in cw */
95 #define _FPU_GETCW(cw) __asm__ ("fnstcw %0" : "=m" (*&cw))
96 #define _FPU_SETCW(cw) __asm__ ("fldcw %0" : : "m" (*&cw))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
fpu_control.h 28 * (cw) register.
80 #define _FPU_RESERVED 0xF0C0 /* Reserved bits in cw */
95 #define _FPU_GETCW(cw) __asm__ ("fnstcw %0" : "=m" (*&cw))
96 #define _FPU_SETCW(cw) __asm__ ("fldcw %0" : : "m" (*&cw))
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 172 CookieWrapper cw = (CookieWrapper) args.cookie; local
174 if (cw == null) {
186 if (DBG) Rlog.d(LOG_TAG, "Processing event: " + cw.event + " token (arg1): " + msg.arg1 +
189 switch (cw.event) {
246 CookieWrapper cw = (CookieWrapper) cookie; local
247 if (cw == null) {
259 if (cw.event == EVENT_END_OF_QUEUE) {
279 if (cw.event == EVENT_EMERGENCY_NUMBER) {
283 } else if (cw.event == EVENT_VOICEMAIL_NUMBER) {
284 mCallerInfo = new CallerInfo().markAsVoiceMail(cw.subId)
367 CookieWrapper cw = new CookieWrapper(); local
431 CookieWrapper cw = new CookieWrapper(); local
465 CookieWrapper cw = new CookieWrapper(); local
    [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...]
  /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...]
  /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());
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfoAsyncQuery.java 147 CookieWrapper cw = (CookieWrapper) args.cookie; local
149 if (cw == null) {
161 Log.d(this, "Processing event: " + cw.event + " token (arg1): " + msg.arg1 +
165 switch (cw.event) {
222 CookieWrapper cw = (CookieWrapper) cookie; local
223 if (cw == null) {
232 if (cw.event == EVENT_END_OF_QUEUE) {
249 if (cw.event == EVENT_EMERGENCY_NUMBER) {
253 } else if (cw.event == EVENT_VOICEMAIL_NUMBER) {
260 mQueryContext, cw.number, mCallerInfo)
360 CookieWrapper cw = new CookieWrapper(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoFallbackEffect.java 111 float cw = s.width() * scale; local
123 mTarget.set(cx - cw / 2, cy - ch / 2, cx - ch / 2, cy + ch / 2);
128 mTarget.set(cx + ch / 2, cy - ch / 2, cx + cw / 2, cy + ch / 2);
135 mTarget.set(cx - cw / 2, cy - cw / 2, cx + cw / 2, cy + cw / 2);
143 mTarget.set(cx - cw / 2, cy - ch / 2, cx + cw / 2, cy - cw / 2)
    [all...]
  /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

Completed in 1962 milliseconds

1 2 3 4 5 6 7