/external/javassist/src/main/javassist/bytecode/annotation/ |
LongMemberValue.java | 38 public LongMemberValue(int index, ConstPool cp) { 39 super('J', cp); 48 public LongMemberValue(long j, ConstPool cp) { 49 super('J', cp); 56 public LongMemberValue(ConstPool cp) { 57 super('J', cp); 61 Object getValue(ClassLoader cl, ClassPool cp, Method m) { 73 return cp.getLongInfo(valueIndex); 80 valueIndex = cp.addLongInfo(newValue);
|
ShortMemberValue.java | 38 public ShortMemberValue(int index, ConstPool cp) { 39 super('S', cp); 48 public ShortMemberValue(short s, ConstPool cp) { 49 super('S', cp); 56 public ShortMemberValue(ConstPool cp) { 57 super('S', cp); 61 Object getValue(ClassLoader cl, ClassPool cp, Method m) { 73 return (short)cp.getIntegerInfo(valueIndex); 80 valueIndex = cp.addIntegerInfo(newValue);
|
StringMemberValue.java | 38 public StringMemberValue(int index, ConstPool cp) { 39 super('s', cp); 48 public StringMemberValue(String str, ConstPool cp) { 49 super('s', cp); 56 public StringMemberValue(ConstPool cp) { 57 super('s', cp); 61 Object getValue(ClassLoader cl, ClassPool cp, Method m) { 73 return cp.getUtf8Info(valueIndex); 80 valueIndex = cp.addUtf8Info(newValue);
|
/external/openssh/openbsd-compat/ |
pwcache.c | 57 struct ncache *cp; local 59 cp = c_uid + (uid & MASK); 60 if (cp->uid != uid || cp->name == NULL) { 72 cp->uid = uid; 73 if (cp->name != NULL) 74 free(cp->name); 75 cp->name = strdup(pw ? pw->pw_name : nbuf); 77 return (cp->name); 92 struct ncache *cp; local [all...] |
/external/tcpdump/ |
print-krb.c | 132 krb4_print_hdr(const u_char *cp) 134 cp += 2; 136 #define PRINT if ((cp = c_print(cp, snapend)) == NULL) goto trunc 143 return (cp); 153 krb4_print(const u_char *cp) 159 #define PRINT if ((cp = c_print(cp, snapend)) == NULL) goto trunc 162 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? EXTRACT_LE_16BITS(cp) : EXTRACT_16BITS(cp) [all...] |
print-ip6.c | 56 register const u_char *cp; local 110 cp = (const u_char *)ip6; 113 while (cp < snapend && advance > 0) { 114 cp += advance; 117 if (cp == (const u_char *)(ip6 + 1) && 126 advance = hbhopt_print(cp); 127 nh = *cp; 130 advance = dstopt_print(cp); 131 nh = *cp; 134 advance = frag6_print(cp, (const u_char *)ip6) [all...] |
/external/valgrind/main/coregrind/m_ume/ |
script.c | 86 Char* cp; local 109 for (cp = interp; cp < end && !VG_(isspace)(*cp); cp++) 112 eol = (*cp == '\n'); 114 *cp++ = '\0'; 116 if (!eol && cp < end) { 118 while (cp < end && VG_(isspace)(*cp) && *cp != '\n' [all...] |
/bionic/libc/netbsd/resolv/ |
res_init.c | 171 register char *cp, **pp; local 237 if ((cp = getenv("LOCALDOMAIN")) != NULL) { 238 (void)strncpy(statp->defdname, cp, sizeof(statp->defdname) - 1); 249 cp = statp->defdname; 251 *pp++ = cp; 252 for (n = 0; *cp && pp < statp->dnsrch + MAXDNSRCH; cp++) { 253 if (*cp == '\n') /* silly backwards compat */ 255 else if (*cp == ' ' || *cp == '\t') 483 const char *cp = options; local [all...] |
/external/clang/test/Sema/ |
format-strings-non-iso.c | 7 char *cp; local 14 scanf("%ms", &cp); // expected-warning{{'m' length modifier is not supported by ISO C}}
|
/external/iproute2/doc/ |
do-psnup | 14 echo "cp $1 $2" 15 cp $1 $2
|
/external/javassist/src/main/javassist/bytecode/ |
LocalVariableTypeAttribute.java | 36 public LocalVariableTypeAttribute(ConstPool cp) { 37 super(cp, tag, new byte[2]); 41 LocalVariableTypeAttribute(ConstPool cp, int n, DataInputStream in) 44 super(cp, n, in); 47 private LocalVariableTypeAttribute(ConstPool cp, byte[] dest) { 48 super(cp, tag, dest); 59 LocalVariableAttribute makeThisAttr(ConstPool cp, byte[] dest) { 60 return new LocalVariableTypeAttribute(cp, dest);
|
DeprecatedAttribute.java | 31 DeprecatedAttribute(ConstPool cp, int n, DataInputStream in) 34 super(cp, n, in); 40 * @param cp a constant pool table. 42 public DeprecatedAttribute(ConstPool cp) { 43 super(cp, tag, new byte[0]);
|
SyntheticAttribute.java | 31 SyntheticAttribute(ConstPool cp, int n, DataInputStream in) 34 super(cp, n, in); 40 * @param cp a constant pool table. 42 public SyntheticAttribute(ConstPool cp) { 43 super(cp, tag, new byte[0]);
|
/external/tcpdump/missing/ |
inet_aton.c | 56 inet_aton(const char *cp, struct in_addr *addr) 58 addr->s_addr = inet_addr(cp);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh5.cpp | 17 catch (const char cp[]) {
|
rvalue1.cpp | 7 char *cp; member in class:String 16 cp = incp; 27 cp = constStringRef.cp;
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
eh5.cpp | 17 catch (const char cp[]) {
|
rvalue1.cpp | 7 char *cp; member in class:String 16 cp = incp; 27 cp = constStringRef.cp;
|
/system/core/sh/ |
machdep.h | 42 #define SHELL_SIZE (sizeof(union {int i; char *cp; double d; }) - 1)
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
wcscpy.c | 42 wchar_t *cp; local 44 cp = s1; 45 while ((*cp++ = *s2++) != L'\0')
|
/external/compiler-rt/BlocksRuntime/tests/ |
cast.c | 26 char *cp; local 30 cp = (char *)aBlock; 33 aBlock = (void (^)(void))cp;
|
/external/libpng/contrib/pngminim/preader/ |
gather.sh | 0 cp ../../gregbook/rpng2-x.c ../../gregbook/readpng2.[ch] . 2 cp ../../gregbook/COPYING ../../gregbook/LICENSE . 3 cp ../../../*.h . 4 cp ../../../*.c . 8 cp ../../../../zlib/*.h . 9 cp ../../../../zlib/*.c .
|
/external/qemu/distrib/sdl-1.2.15/Xcode/SDL/pkg-support/devel-resources/ |
install.sh | 49 cp -r "$ROOT/Project Stationary/SDL Application" "$PBXDIR/Project Templates/Application/" 50 cp -r "$ROOT/Project Stationary/SDL Cocoa Application" "$PBXDIR/Project Templates/Application/" 51 cp -r "$ROOT/Project Stationary/SDL Custom Cocoa Application" "$PBXDIR/Project Templates/Application/" 52 cp -r "$ROOT/Project Stationary/SDL OpenGL Application" "$PBXDIR/Project Templates/Application/" 53 cp "$ROOT/Project Stationary/Application.trgttmpl" "$PBXDIR/Target Templates/SDL/" 65 #cp "$ROOT/docs/man3/SDL"* "/Developer/Documentation/ManPages/man3/" 73 sudo -u $USER cp "$ROOT/Readme SDL Developer.txt" ~/
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
seq_midi_emul.h | 148 #define SNDRV_GM_BANK_SELECT(cp) (((cp)->control[0]<<7)|((cp)->control[32])) 149 #define SNDRV_GM_MODULATION_WHEEL(cp) (((cp)->control[1]<<7)|((cp)->control[33])) 150 #define SNDRV_GM_BREATH(cp) (((cp)->control[2]<<7)|((cp)->control[34])) 151 #define SNDRV_GM_FOOT_PEDAL(cp) (((cp)->control[4]<<7)|((cp)->control[36]) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
seq_midi_emul.h | 148 #define SNDRV_GM_BANK_SELECT(cp) (((cp)->control[0]<<7)|((cp)->control[32])) 149 #define SNDRV_GM_MODULATION_WHEEL(cp) (((cp)->control[1]<<7)|((cp)->control[33])) 150 #define SNDRV_GM_BREATH(cp) (((cp)->control[2]<<7)|((cp)->control[34])) 151 #define SNDRV_GM_FOOT_PEDAL(cp) (((cp)->control[4]<<7)|((cp)->control[36]) [all...] |