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

1 2

  /external/webrtc/webrtc/base/
macconversion.cc 54 CFNumberType ntype = CFNumberGetType(cfn); local
55 switch (ntype) {
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
78 converted = CFNumberGetValue(cfn, ntype,
84 converted = CFNumberGetValue(cfn, ntype,
90 converted = CFNumberGetValue(cfn, ntype,
96 converted = CFNumberGetValue(cfn, ntype,
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
parse.c 46 a->ntype = NSTAT;
101 x->ntype = NSTAT;
110 x->ntype = NSTAT;
119 x->ntype = NSTAT;
128 x->ntype = NSTAT;
137 x->ntype = NEXPR;
146 x->ntype = NEXPR;
155 x->ntype = NEXPR;
164 x->ntype = NEXPR;
175 x->ntype = NVALUE
    [all...]
awk.h 133 int ntype; member in struct:Node
182 #define isvalue(n) ((n)->ntype == NVALUE)
183 #define isexpr(n) ((n)->ntype == NEXPR)
  /toolchain/binutils/binutils-2.25/binutils/
rdcoff.c 139 /* Parse a COFF type code in NTYPE. */
143 struct coff_types *types, long coff_symno, int ntype,
149 if ((ntype & ~N_BTMASK) != 0)
153 newtype = DECREF (ntype);
155 if (ISPTR (ntype))
161 else if (ISFCN (ntype))
168 else if (ISARY (ntype))
203 non_fatal (_("parse_coff_type: Bad type code 0x%x"), ntype);
232 return parse_coff_base_type (abfd, symbols, types, coff_symno, ntype,
236 /* Parse a basic COFF type in NTYPE. *
    [all...]
  /external/libedit/src/
keymacro.c 187 * code is applied to the existing key. Ntype specifies if code is a
191 keymacro_add(EditLine *el, const Char *key, keymacro_value_t *val, int ntype)
199 if (ntype == XK_CMD && val->cmd == ED_SEQUENCE_LEAD_IN) {
210 (void) node__try(el, el->el_keymacro.map, key, val, ntype);
319 keymacro_value_t *val, int ntype)
354 switch (ptr->type = ntype) {
364 EL_ABORT((el->el_errfile, "Bad XK_ type %d\n", ntype));
371 (void) node__try(el, ptr->next, str, val, ntype);
586 keymacro_kprint(EditLine *el, const Char *key, keymacro_value_t *val, int ntype)
593 switch (ntype) {
    [all...]
map.c 1247 int ntype, rem; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TZDBTimeZoneNames.java 286 NameType ntype = match.type; local
300 && (ntype == NameType.SHORT_STANDARD || ntype == NameType.SHORT_DAYLIGHT)
303 ntype = NameType.SHORT_GENERIC;
305 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TZDBTimeZoneNames.java 284 NameType ntype = match.type; local
298 && (ntype == NameType.SHORT_STANDARD || ntype == NameType.SHORT_DAYLIGHT)
301 ntype = NameType.SHORT_GENERIC;
303 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength);
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y 57 %type <node> stmt ntype
426 dcl_name_list ntype
430 | dcl_name_list ntype '=' expr_list
440 dcl_name_list ntype '=' expr_list
451 | dcl_name_list ntype
470 typedclname ntype
1139 ntype
1250 | LDDD ntype
1255 ntype: label
1261 | '(' ntype ')'
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
go.y 54 %type <node> stmt ntype
423 dcl_name_list ntype
427 | dcl_name_list ntype '=' expr_list
437 dcl_name_list ntype '=' expr_list
448 | dcl_name_list ntype
467 typedclname ntype
1136 ntype
1247 | LDDD ntype
1252 ntype: label
1258 | '(' ntype ')'
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y 57 %type <node> stmt ntype
426 dcl_name_list ntype
430 | dcl_name_list ntype '=' expr_list
440 dcl_name_list ntype '=' expr_list
451 | dcl_name_list ntype
470 typedclname ntype
1139 ntype
1250 | LDDD ntype
1255 ntype: label
1261 | '(' ntype ')'
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
go.y 54 %type <node> stmt ntype
423 dcl_name_list ntype
427 | dcl_name_list ntype '=' expr_list
437 dcl_name_list ntype '=' expr_list
448 | dcl_name_list ntype
467 typedclname ntype
1136 ntype
1247 | LDDD ntype
1252 ntype: label
1258 | '(' ntype ')'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
  /external/f2fs-tools/fsck/
fsck.c 194 enum FILE_TYPE ftype, enum NODE_TYPE ntype,
224 if (ntype == TYPE_INODE &&
231 if (ntype != TYPE_INODE &&
246 if (ntype == TYPE_XATTR) {
256 if ((ntype == TYPE_INODE && ftype == F2FS_FT_DIR) ||
257 (ntype == TYPE_XATTR && ftype == F2FS_FT_XATTR)) {
314 u32 nid, enum FILE_TYPE ftype, enum NODE_TYPE ntype,
323 if (sanity_check_nid(sbi, nid, node_blk, ftype, ntype, &ni))
326 if (ntype == TYPE_INODE) {
329 switch (ntype) {
366 enum NODE_TYPE ntype; local
    [all...]
dump.c 139 static void dump_node_blk(struct f2fs_sb_info *sbi, int ntype,
147 switch (ntype) {
172 switch (ntype) {
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 1452 unsigned format, swap, ntype, endian; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 627 short ntype = n.getNodeType(); local
629 if (Node.ATTRIBUTE_NODE != ntype)
654 if (Node.ATTRIBUTE_NODE == ntype)
793 if (Node.ATTRIBUTE_NODE != ntype)
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_state.c 1263 unsigned format, swap, ntype, endian; local
    [all...]
evergreen_state.c 1248 unsigned format, swap, ntype, endian; local
    [all...]
  /toolchain/binutils/binutils-2.25/ld/
ldmain.c 999 enum bfd_link_hash_type ntype,
1032 if (ntype == bfd_link_hash_defined
1033 || ntype == bfd_link_hash_defweak
1034 || ntype == bfd_link_hash_indirect)
1046 ASSERT (ntype == bfd_link_hash_common);
1054 ASSERT (otype == bfd_link_hash_common && ntype == bfd_link_hash_common);
    [all...]
  /external/tcpdump/
print-decnet.c 753 int ntype = info & 3; local
754 switch (ntype) {
755 case 0: ND_PRINT((ndo, "reserved-ntype? ")); break;
832 int ntype = info & II_TYPEMASK; local
833 switch (ntype) {
834 case 0: ND_PRINT((ndo, "reserved-ntype? ")); break;
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/include/
bfdlink.h 539 NBFD is the BFD of the new symbol. NTYPE is the type of the new
541 bfd_link_hash_indirect. If NTYPE is bfd_link_hash_common, NSIZE
545 bfd *nbfd, enum bfd_link_hash_type ntype, bfd_vma nsize);

Completed in 475 milliseconds

1 2