HomeSort by relevance Sort by last modified time
    Searched refs:lead (Results 126 - 150 of 267) sorted by null

1 2 3 4 56 7 8 91011

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Normalizer2Impl.java 31 public static final int JAMO_L_BASE=0x1100; /* "lead" jamo */
364 * is it a lead surrogate?
708 /** Returns true if the single-or-lead code unit c might have non-zero FCD data. */
709 public boolean singleLeadMightHaveNonZeroFCD16(int lead) {
710 // 0<=lead<=0xffff
711 byte bits=smallFCD[lead>>8];
713 return ((bits>>((lead>>5)&7))&1)!=0;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_gdb.py 432 '''Ensure that a reference loop involving a list doesn't lead proxyval
445 '''Ensure that a reference loop involving a dict doesn't lead proxyval
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 671 "Call to function 'vfork' is insecure as it can lead to "
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 1711 const char *lead; local
1726 O << lead; local
    [all...]
  /external/tinyxml2/
tinyxml2.cpp 113 // ef bb bf (Microsoft "lead bytes") - designates UTF-8
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gdb.py 480 '''Ensure that a reference loop involving a list doesn't lead proxyval
493 '''Ensure that a reference loop involving a dict doesn't lead proxyval
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gdb.py 480 '''Ensure that a reference loop involving a list doesn't lead proxyval
493 '''Ensure that a reference loop involving a dict doesn't lead proxyval
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 480 '''Ensure that a reference loop involving a list doesn't lead proxyval
493 '''Ensure that a reference loop involving a dict doesn't lead proxyval
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 480 '''Ensure that a reference loop involving a list doesn't lead proxyval
493 '''Ensure that a reference loop involving a dict doesn't lead proxyval
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
pa_avx.cpp 482 simdvector& lead = pa.leadingVertex.attrib[slot]; local
483 verts[0] = swizzleLane0(lead);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
config.go 142 // We'd use *gc.Node directly but that would lead to an import cycle.
writebarrier.go 178 // which would lead to fewer branches. We could do
  /prebuilts/go/darwin-x86/src/encoding/json/
encode.go 904 // because they can lead to security holes when
929 // and can lead to security holes there. It is valid JSON to
979 // because they can lead to security holes when
1004 // and can lead to security holes there. It is valid JSON to
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
js_test.go 197 // Furthermore, spoofing an escaping text span end could lead
  /prebuilts/go/darwin-x86/src/runtime/
mwbbuf.go 187 // barrier implementation, so this may lead to infinite loops or
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
config.go 142 // We'd use *gc.Node directly but that would lead to an import cycle.
writebarrier.go 178 // which would lead to fewer branches. We could do
  /prebuilts/go/linux-x86/src/encoding/json/
encode.go 904 // because they can lead to security holes when
929 // and can lead to security holes there. It is valid JSON to
979 // because they can lead to security holes when
1004 // and can lead to security holes there. It is valid JSON to
    [all...]
  /prebuilts/go/linux-x86/src/html/template/
js_test.go 197 // Furthermore, spoofing an escaping text span end could lead
  /prebuilts/go/linux-x86/src/runtime/
mwbbuf.go 187 // barrier implementation, so this may lead to infinite loops or
  /prebuilts/go/darwin-x86/src/go/printer/testdata/
parser.go 44 leadComment *ast.CommentGroup // last lead comment
292 // any comment groups encountered, and remember the last lead and
295 // A lead comment is a comment group that starts and ends in a
303 // Lead and line comments may be considered documentation that is
318 // cannot be a lead comment but may be a line comment.
335 // comment group, thus the last comment group is a lead comment.
    [all...]
  /prebuilts/go/linux-x86/src/go/printer/testdata/
parser.go 44 leadComment *ast.CommentGroup // last lead comment
292 // any comment groups encountered, and remember the last lead and
295 // A lead comment is a comment group that starts and ends in a
303 // Lead and line comments may be considered documentation that is
318 // cannot be a lead comment but may be a line comment.
335 // comment group, thus the last comment group is a lead comment.
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
BasicTest.java 676 int c, lead, trail; local
725 lead=UTF16.charAt(nfd, 0);
729 lccc2=UCharacter.getCombiningClass(lead);
734 errln("getIntPropertyValue(lccc)="+lccc1+" != "+lccc2+"=getCombiningClass(lead) for U+"+Integer.toHexString(c));
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UCharacter.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java 673 int c, lead, trail; local
722 lead=UTF16.charAt(nfd, 0);
726 lccc2=UCharacter.getCombiningClass(lead);
731 errln("getIntPropertyValue(lccc)="+lccc1+" != "+lccc2+"=getCombiningClass(lead) for U+"+Integer.toHexString(c));
    [all...]

Completed in 1164 milliseconds

1 2 3 4 56 7 8 91011