HomeSort by relevance Sort by last modified time
    Searched defs:lh (Results 1 - 19 of 19) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java 232 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); local
233 data.dispatchAsComment(lh);
303 LexicalHandler lh = isLexH local
308 lh.startCDATA();
316 lh.endCDATA();
394 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); local
396 lh.endEntity(m_dtm.getNodeName(node));
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 293 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); local
295 lh.comment(data.toCharArray(), 0, data.length());
384 LexicalHandler lh = isLexH local
389 lh.startCDATA();
397 lh.endCDATA();
517 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); local
519 lh.endEntity(eref.getNodeName());
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 151 * @param lh A non-null reference to a LexicalHandler.
155 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh)
158 lh.comment((char[])m_obj, m_start, m_length);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
bootparam_prot.h 34 char lh; member in struct:ip_addr_t
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 319 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); local
321 lh.comment(data.toCharArray(), 0, data.length());
389 LexicalHandler lh = isLexH
394 lh.startCDATA();
402 lh.endCDATA();
498 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
500 lh.endEntity(eref.getNodeName());
  /external/grub/stage2/
boot.c 48 struct linux_kernel_header *lh; local
96 lh = (struct linux_kernel_header *) buffer;
219 else if (lh->boot_flag == BOOTSEC_SIGNATURE
220 && lh->setup_sects <= LINUX_MAX_SETUP_SECTS)
223 int setup_sects = lh->setup_sects;
225 if (lh->header == LINUX_MAGIC_SIGNATURE && lh->version >= 0x0200)
227 big_linux = (lh->loadflags & LINUX_FLAG_BIG_KERNEL);
228 lh->type_of_loader = LINUX_BOOT_LOADER_TYPE;
237 if (lh->version >= 0x0201
804 struct linux_kernel_header *lh local
    [all...]
  /external/jhead/
jpgfile.c 142 int ll,lh, got; local
161 lh = fgetc(infile);
164 itemlen = (lh << 8) | ll;
183 Data[0] = (uchar)lh;
338 int ll,lh, got; local
356 lh = buffer[pos++];
359 itemlen = (lh << 8) | ll;
376 Data[0] = (uchar)lh;
  /external/libvpx/vpx_scale/generic/
bicubic_scaler.c 492 int h, w, lw, lh; local
509 lh = l_h[h];
510 ip = input_image + (in_stride * lh);
518 if (phase_offset_h && (lh < in_height - 2))
  /external/openssl/crypto/ec/
ec2_smpl.c 879 BIGNUM *lh, *y2; local
901 lh = BN_CTX_get(ctx);
902 if (lh == NULL) goto err;
909 if (!BN_GF2m_add(lh, &point->X, &group->a)) goto err;
910 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err;
911 if (!BN_GF2m_add(lh, lh, &point->Y)) goto err;
912 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLTest.java 1102 TestURLStreamHandler lh = new TestURLStreamHandler(); local
1131 TestURLStreamHandler lh = new TestURLStreamHandler(); local
    [all...]
  /bootable/recovery/applypatch/
imgdiff.c 243 unsigned char* lh = img + hoffset; local
245 if (!(lh[0] == 0x50 && lh[1] == 0x4b && lh[2] == 0x03 && lh[3] == 0x04)) {
250 if (Read2(lh+26) != nlen || memcmp(lh+30, filename, nlen) != 0) {
255 xlen = Read2(lh+28); // extra field len; might be different from CD entry?
  /external/icu4c/i18n/
ucol_tok.h 121 UColTokListHeader *lh; member in struct:__anon6293
  /external/opencv/cxcore/src/
cxsvd.cpp 398 int lh = nu - i; local
410 icvMatrAXPY3_64f( lh, l-1, hv+1, lduT, uT+1, h );
420 for( j = 1; j < lh; j++ )
442 int lh = nv - i; local
453 icvMatrAXPY3_64f( lh, l-1, hv+1, ldvT, vT+1, h );
463 for( j = 1; j < lh; j++ )
795 int lh = nu - i; local
807 icvMatrAXPY3_32f( lh, l-1, hv+1, lduT, uT+1, h );
817 for( j = 1; j < lh; j++ )
839 int lh = nv - i local
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
JPEGTest.c 219 int ll = 0,lh = 0, got = 0; local
249 ReadFile(infile, &lh, 1, &got, NULL);
252 lh = fgetc(infile);
256 itemlen = (lh << 8) | ll;
268 Data[0] = (uchar)lh;
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 1293 void Assembler::lh(Register rd, const MemOperand& rs) { function in class:v8::internal::Assembler
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java 675 TestURLStreamHandler lh = new TestURLStreamHandler(); local
677 lh);
680 new URL(null, "1", 0, "file", lh);
  /external/yaffs2/yaffs2/
yaffs_guts.c 3701 struct list_head *lh; local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventDisplayOptions.java 495 Label lh = new Label(mHistOptions, SWT.NONE); local
496 lh.setText("Histogram width (hours):");
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 499 Length lh = lineHeight(); local
502 if (lh.isNegative())
505 if (lh.isPercent())
506 return lh.calcMinValue(fontSize());
508 return lh.value();
    [all...]

Completed in 681 milliseconds