/bionic/libc/arch-arm/syscalls/ |
dup.S | 5 ENTRY(dup) function 14 END(dup)
|
/bionic/libc/arch-x86/syscalls/ |
dup.S | 5 .type dup, @function 6 .globl dup 9 dup: label
|
/bionic/libc/arch-sh/syscalls/ |
dup.S | 5 .type dup, @function 6 .globl dup 9 dup: label
|
/external/bison/lib/ |
unistd--.h | 24 #undef dup macro 25 #define dup dup_safer macro
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/dup/jm/ |
T_dup_1.java | 17 package dxc.junit.opcodes.dup.jm;
|
T_dup_2.java | 17 package dxc.junit.opcodes.dup.jm;
|
T_dup_3.java | 17 package dxc.junit.opcodes.dup.jm;
|
T_dup_4.java | 17 package dxc.junit.opcodes.dup.jm;
|
T_dup_5.java | 17 package dxc.junit.opcodes.dup.jm;
|
T_dup_6.java | 17 package dxc.junit.opcodes.dup.jm;
|
T_dup_7.java | 17 package dxc.junit.opcodes.dup.jm;
|
/external/antlr/src/org/antlr/runtime/tree/ |
RewriteRuleNodeStream.java | 65 protected Object dup(Object el) { method in class:RewriteRuleNodeStream 66 // we dup every node, so don't have to worry about calling dup; short- 68 throw new UnsupportedOperationException("dup can't be called for a node stream.");
|
RewriteRuleSubtreeStream.java | 58 * must dup the type node, but ID has been added. 60 * Referencing a rule result twice is ok; dup entire tree as 64 * a proper way to refactor. This needs to always call dup node 65 * and super.next() doesn't know which to call: dup node or dup tree. 71 // if out of elements and size is 1, dup (at most a single node 81 Object el = adaptor.dupNode(tree); // dup just the root (want node here) 85 protected Object dup(Object el) { method in class:RewriteRuleSubtreeStream
|
RewriteRuleTokenStream.java | 73 protected Object dup(Object el) { method in class:RewriteRuleTokenStream 74 throw new UnsupportedOperationException("dup can't be called for a token stream.");
|
RewriteRuleElementStream.java | 58 /** Once a node / subtree has been used in a stream, it must be dup'd 61 * If dirty, then next() always returns a dup. 134 * size==1. If we've already used the element, dup (dirty bit set). 139 // if out of elements and size is 1, dup 141 return dup(el); 160 if ( n ==1 ) { // if size is 1, it's ok; return and we'll dup 163 // out of elements and size was not 1, so we can't dup 177 /** When constructing trees, sometimes we need to dup a token or AST 178 * subtree. Dup'ing a token means just creating another AST node 180 * the element is for a tree root; then it must be a node dup 182 protected abstract Object dup(Object el); method in class:RewriteRuleElementStream [all...] |
/external/stlport/test/eh/ |
LeakCheck.h | 72 Value dup = v; local 77 op( dup ); 84 CheckInvariant(dup); 153 Value dup = v; local 159 op( dup ); 166 bool unchanged = (dup == v); 174 EH_STD::copy(dup.begin(), dup.end(), o);
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/dup/ |
Test_dup.java | 17 package dxc.junit.opcodes.dup; 21 import dxc.junit.opcodes.dup.jm.T_dup_1; 22 import dxc.junit.opcodes.dup.jm.T_dup_6; 23 import dxc.junit.opcodes.dup.jm.T_dup_7; 59 Class.forName("dxc.junit.opcodes.dup.jm.T_dup_2"); 73 Class.forName("dxc.junit.opcodes.dup.jm.T_dup_3"); 87 Class.forName("dxc.junit.opcodes.dup.jm.T_dup_4"); 101 Class.forName("dxc.junit.opcodes.dup.jm.T_dup_5");
|
/external/oprofile/daemon/ |
opd_extended.h | 51 int (*dup)(struct sfile *, struct sfile *); member in struct:opd_ext_sfile_handlers
|
/frameworks/base/voip/jni/rtp/ |
RtpStream.cpp | 89 jint dup(JNIEnv *env, jobject thiz) function in namespace:__anon15539 91 int socket = ::dup(env->GetIntField(thiz, gNative)); 107 {"dup", "()I", (void *)dup},
|
/frameworks/base/core/java/android/net/ |
VpnService.java | 166 ParcelFileDescriptor dup = null; local 168 dup = ParcelFileDescriptor.fromFd(socket); 169 return getService().protectVpn(dup); 174 dup.close();
|
/external/icu4c/common/ |
cstring.c | 304 char *dup = (char *) uprv_malloc(len); local 306 if (dup) { 307 uprv_memcpy(dup, src, len); 310 return dup; 315 char *dup; local 318 dup = uprv_strdup(src); 320 dup = (char*)uprv_malloc(n+1); 321 if (dup) { 322 uprv_memcpy(dup, src, n); 323 dup[n] = 0 [all...] |
/external/proguard/src/proguard/evaluation/ |
TracedStack.java | 202 public void dup() method in class:TracedStack 204 super.dup();
|
/external/webkit/Source/JavaScriptCore/wtf/ |
FastMalloc.cpp | 187 char* dup = static_cast<char*>(fastMalloc(len)); local 188 memcpy(dup, src, len); 189 return dup; [all...] |
/frameworks/base/voip/java/android/net/rtp/ |
RtpStream.java | 168 synchronized native int dup(); method in class:RtpStream
|
/external/bluetooth/glib/gio/ |
gappinfo.h | 59 * @dup: Copies a #GAppInfo. 92 GAppInfo * (* dup) (GAppInfo *appinfo); member in struct:_GAppInfoIface
|