/external/javassist/src/main/javassist/bytecode/ |
ConstantAttribute.java | 31 ConstantAttribute(ConstPool cp, int n, DataInputStream in) 34 super(cp, n, in); 40 * @param cp a constant pool table. 44 public ConstantAttribute(ConstPool cp, int index) { 45 super(cp, tag);
|
AnnotationDefaultAttribute.java | 74 * @param cp constant pool 79 public AnnotationDefaultAttribute(ConstPool cp, byte[] info) { 80 super(cp, tag, info); 87 * @param cp constant pool 90 public AnnotationDefaultAttribute(ConstPool cp) { 91 this(cp, new byte[] { 0, 0 }); 97 AnnotationDefaultAttribute(ConstPool cp, int n, DataInputStream in) 100 super(cp, n, in);
|
/external/javassist/src/main/javassist/convert/ |
Transformer.java | 42 public void initialize(ConstPool cp, CodeAttribute attr) {} 44 public void initialize(ConstPool cp, CtClass clazz, MethodInfo minfo) throws CannotCompileException { 45 initialize(cp, minfo.getCodeAttribute()); 51 ConstPool cp) throws CannotCompileException, BadBytecode;
|
TransformBefore.java | 44 public void initialize(ConstPool cp, CodeAttribute attr) { 45 super.initialize(cp, attr); 52 int typedesc, ConstPool cp) throws BadBytecode 57 int nt = cp.addNameAndTypeInfo(newMethodname, desc); 58 int ci = cp.addClassInfo(newClassname); 59 newIndex = cp.addMethodrefInfo(ci, nt); 60 constPool = cp; 64 makeCode(parameterTypes, cp); 82 protected void makeCode(CtClass[] paramTypes, ConstPool cp) { 83 Bytecode save = new Bytecode(cp, 0, 0) [all...] |
/external/openssh/regress/ |
connect-privsep.sh | 6 cp $OBJ/sshd_proxy $OBJ/sshd_proxy.orig 16 cp $OBJ/sshd_proxy.orig $OBJ/sshd_proxy
|
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/inc/ |
Makefile | 10 cp -f $< $@
|
/external/openssh/ |
hostfile.c | 158 char *cp; local 161 for (cp = *cpp; *cp == ' ' || *cp == '\t'; cp++) 164 if (key_read(ret, &cp) != 1) 168 for (; *cp == ' ' || *cp == '\t'; cp++) 172 *cpp = cp; 197 char marker[32], *sp, *cp = *cpp; local 244 char *cp, *cp2, *hashed_host; local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/ |
string_h.pass.cpp | 24 char* cp = 0; local 28 static_assert((std::is_same<decltype(strcpy(cp, cpc)), char*>::value), ""); 29 static_assert((std::is_same<decltype(strncpy(cp, cpc, s)), char*>::value), ""); 30 static_assert((std::is_same<decltype(strcat(cp, cpc)), char*>::value), ""); 31 static_assert((std::is_same<decltype(strncat(cp, cpc, s)), char*>::value), ""); 36 static_assert((std::is_same<decltype(strxfrm(cp, cpc, s)), size_t>::value), ""); 38 static_assert((std::is_same<decltype(strchr(cp, 0)), char*>::value), ""); 40 static_assert((std::is_same<decltype(strpbrk(cp, cpc)), char*>::value), ""); 41 static_assert((std::is_same<decltype(strrchr(cp, 0)), char*>::value), ""); 43 static_assert((std::is_same<decltype(strstr(cp, cpc)), char*>::value), "") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/c.strings/ |
cstring.pass.cpp | 24 char* cp = 0; local 28 static_assert((std::is_same<decltype(std::strcpy(cp, cpc)), char*>::value), ""); 29 static_assert((std::is_same<decltype(std::strncpy(cp, cpc, s)), char*>::value), ""); 30 static_assert((std::is_same<decltype(std::strcat(cp, cpc)), char*>::value), ""); 31 static_assert((std::is_same<decltype(std::strncat(cp, cpc, s)), char*>::value), ""); 36 static_assert((std::is_same<decltype(std::strxfrm(cp, cpc, s)), std::size_t>::value), ""); 40 static_assert((std::is_same<decltype(std::strchr(cp, 0)), char*>::value), ""); 43 static_assert((std::is_same<decltype(std::strpbrk(cp, cpc)), char*>::value), ""); 45 static_assert((std::is_same<decltype(std::strrchr(cp, 0)), char*>::value), ""); 48 static_assert((std::is_same<decltype(std::strstr(cp, cpc)), char*>::value), "") [all...] |
/dalvik/hit/test/ |
testparser | 6 #java -Djava.compiler=NONE -Xdebug -Xrunjdwp:transport=dt_socket,address=53635,server=y,suspend=y -cp build com.android.hit.Main ../samples/android.hprof 8 java -cp build com.android.hit.Main ../samples/android.hprof
|
/development/tools/idegen/ |
idegen.sh | 12 java -cp $idegenjar Main
|
/external/icu4c/samples/layout/ |
UnicodeReader.cpp | 35 const char *cp = ""; local 53 cp = "UTF-16BE"; 57 cp = "UTF-32LE"; 60 cp = "UTF-16LE"; 64 cp = "UTF-8"; 67 cp = "SCSU"; 71 cp = "UTF-32BE"; 102 UnicodeString myText(byteBuffer, fileSize, cp);
|
/external/javassist/sample/evolve/ |
DemoLoader.java | 31 ClassPool cp = ClassPool.getDefault(); local 33 cl.addTranslator(cp, translator);
|
/external/qemu/distrib/sdl-1.2.15/test/ |
autogen.sh | 4 cp acinclude.m4 aclocal.m4
|
/dalvik/libdex/ |
OptInvocation.cpp | 53 char* cp; local 86 cp = absoluteFile + 1; 87 while (*cp != '\0') { 88 if (*cp == '/') { 89 *cp = '@'; 91 cp++;
|
/external/e2fsprogs/intl/ |
localealias.c | 256 char *cp; local 262 cp = buf; 264 while (isspace ((unsigned char) cp[0])) 265 ++cp; 268 if (cp[0] != '\0' && cp[0] != '#') 270 alias = cp++; 271 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) 272 ++cp; [all...] |
l10nflist.c | 181 char *cp; local 217 cp = abs_filename; 220 memcpy (cp, dirlist, dirlist_len); 221 __argz_stringify (cp, dirlist_len, PATH_SEPARATOR); 222 cp += dirlist_len; 223 cp[-1] = '/'; 226 cp = stpcpy (cp, language); 230 *cp++ = '_'; 231 cp = stpcpy (cp, territory) [all...] |
/external/e2fsprogs/lib/e2p/ |
feature.c | 238 static char *skip_over_blanks(char *cp) 240 while (*cp && isspace(*cp)) 241 cp++; 242 return cp; 245 static char *skip_over_word(char *cp) 247 while (*cp && !isspace(*cp) && *cp != ',') 248 cp++ 262 char *cp, *buf, *next; local [all...] |
/external/javassist/src/main/javassist/bytecode/annotation/ |
AnnotationMemberValue.java | 34 public AnnotationMemberValue(ConstPool cp) { 35 this(null, cp); 42 public AnnotationMemberValue(Annotation a, ConstPool cp) { 43 super('@', cp); 47 Object getValue(ClassLoader cl, ClassPool cp, Method m) 50 return AnnotationImpl.make(cl, getType(cl), cp, value);
|
/external/ppp/pppd/ |
eui64.h | 95 #define eui64_get(ll, cp) do { \ 96 eui64_copy((*cp), (ll)); \ 97 (cp) += sizeof(eui64_t); \ 100 #define eui64_put(ll, cp) do { \ 101 eui64_copy((ll), (*cp)); \ 102 (cp) += sizeof(eui64_t); \
|
/external/webkit/Source/WebCore/gyp/ |
streamline-inspector-source.sh | 20 cp "${DERIVED_FILE_DIR}/WebCore/inspector.html" inspector.html 21 cp "${DERIVED_FILE_DIR}/WebCore/inspector.js" inspector.js 22 cp "${DERIVED_FILE_DIR}/WebCore/scriptFormatterWorker.js" scriptFormatterWorker.js
|
/libcore/luni/src/test/java/tests/security/cert/ |
CertPathCertPathRepTest.java | 29 MyCertPath cp = new MyCertPath(testEncoding); local 30 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding); 35 cp.new MyCertPathRep(null, null); 43 MyCertPath cp = new MyCertPath(testEncoding); local 44 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding); 53 rep = cp.new MyCertPathRep("MyEncoding", new byte[] {(byte) 1, (byte) 2, (byte) 3 });
|
/external/oprofile/daemon/liblegacy/ |
opd_parse_proc.c | 48 char const * cp = line; local 51 while (*cp && *cp != ' ') 52 cp++; 55 if (!*cp || (!*(++cp)) || (!*(++cp)) || (*(++cp) != 'x')) 63 cp += 2; 66 if (sscanf(cp, "%lx", &offset) != 1 [all...] |
/frameworks/base/tools/aapt/ |
Main.cpp | 272 const char* cp = argv[0] +1; local 274 while (*cp != '\0') { 275 switch (*cp) { 474 if (strcmp(cp, "-debug-mode") == 0) { 476 } else if (strcmp(cp, "-min-sdk-version") == 0) { 485 } else if (strcmp(cp, "-target-sdk-version") == 0) { 494 } else if (strcmp(cp, "-max-sdk-version") == 0) { 503 } else if (strcmp(cp, "-max-res-version") == 0) { 512 } else if (strcmp(cp, "-version-code") == 0) { 521 } else if (strcmp(cp, "-version-name") == 0) [all...] |
/bionic/libc/netbsd/nameser/ |
ns_name.c | 105 const u_char *cp; local 111 cp = src; 115 while ((n = *cp++) != 0) { 128 if ((l = labellen(cp - 1)) < 0) { 144 if ((m = decode_bitstring(&cp, dn, eom)) < 0) 153 c = *cp++; 210 char *cp; local 220 if ((cp = strchr(src, ']')) == NULL) { 224 if ((e = encode_bitsring(&src, cp + 2, 240 else if ((cp = strchr(digits, c)) != NULL) 340 const u_char *cp; local 643 const u_char *cp; local 742 const u_char *dn, *cp, *sp; local 799 const unsigned char *cp = *cpp; local 849 const char *cp = *bp; local [all...] |