HomeSort by relevance Sort by last modified time
    Searched defs:dup (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /bionic/libc/arch-arm/syscalls/
dup.S 5 ENTRY(dup) function
14 END(dup)
  /bionic/libc/arch-arm64/syscalls/
dup.S 5 ENTRY(dup) function
14 END(dup)
  /bionic/libc/arch-mips/syscalls/
dup.S 5 ENTRY(dup) function
19 END(dup)
  /bionic/libc/arch-mips64/syscalls/
dup.S 5 ENTRY(dup) function
25 END(dup)
  /bionic/libc/arch-x86/syscalls/
dup.S 5 ENTRY(dup) function
21 END(dup)
  /bionic/libc/arch-x86_64/syscalls/
dup.S 5 ENTRY(dup) function
15 END(dup)
  /external/bison/lib/
unistd--.h 23 #undef dup macro
24 #define dup dup_safer macro
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 74 llvm::raw_fd_ostream *OutputFile::dup() { function in class:OutputFile
78 newfd = ::dup(mFD);
87 // dup() returns ok.
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/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);
  /external/chromium_org/third_party/WebKit/Source/wtf/
FastMalloc.cpp 48 char* dup = static_cast<char*>(fastMalloc(len)); local
49 memcpy(dup, src, len);
50 return dup;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_memory.h 73 void *dup = MALLOC(size); local
74 if (dup)
75 memcpy(dup, src, size);
76 return dup;
  /external/mesa3d/src/gallium/auxiliary/util/
u_memory.h 73 void *dup = MALLOC(size); local
74 if (dup)
75 memcpy(dup, src, size);
76 return dup;
  /external/oprofile/daemon/
opd_extended.h 51 int (*dup)(struct sfile *, struct sfile *); member in struct:opd_ext_sfile_handlers
  /system/keymaster/include/keymaster/
google_keymaster_utils.h 65 * responsibility. Note that the dup is necessarily returned as a pointer, so size is lost. Call
69 T* dup = new T[N]; variable
70 if (dup != NULL) {
71 memcpy(dup, &a, array_size(a));
73 return dup;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_newlib.cc 60 OP(fdio, dup); \
98 int WRAP(dup)(int fd, int* newfd) { function
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3rewritestreams.h 92 /// Once a node / subtree has been used in a stream, it must be dup'ed
95 /// If dirty, then next() always returns a dup.
122 /// When constructing trees, sometimes we need to dup a token or AST
123 /// subtree. Dup'ing a token means just creating another AST node
126 void * (*dup) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream, void * el); member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
141 /// must dup the type node, but ID has been added.
143 /// Referencing to a rule result twice is ok; dup entire tree as
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/common/
cstring.c 315 char *dup = (char *) uprv_malloc(len); local
317 if (dup) {
318 uprv_memcpy(dup, src, len);
321 return dup;
326 char *dup; local
329 dup = uprv_strdup(src);
331 dup = (char*)uprv_malloc(n+1);
332 if (dup) {
333 uprv_memcpy(dup, src, n);
334 dup[n] = 0
    [all...]
  /frameworks/native/libs/ui/
Fence.cpp 98 int Fence::dup() const { function in class:android::Fence
99 return ::dup(mFenceFd);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 12 f.dup()
99 def dup(self): member in class:_posixfile_
103 raise AttributeError, 'dup() method unavailable'
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
111 raise AttributeError, 'dup() method unavailable'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 12 f.dup()
99 def dup(self): member in class:_posixfile_
103 raise AttributeError, 'dup() method unavailable'
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
111 raise AttributeError, 'dup() method unavailable'

Completed in 6065 milliseconds

1 2 3 4 5 6 7