/external/curl/lib/ |
D | dotdot.c | 53 char *clone; in Curl_dedotdotify() local 63 clone = strdup(input); in Curl_dedotdotify() 64 if(!clone) { in Curl_dedotdotify() 68 orgclone = clone; in Curl_dedotdotify() 76 queryp = strchr(clone, '?'); in Curl_dedotdotify() 85 if(!strncmp("./", clone, 2)) { in Curl_dedotdotify() 86 clone+=2; in Curl_dedotdotify() 89 else if(!strncmp("../", clone, 3)) { in Curl_dedotdotify() 90 clone+=3; in Curl_dedotdotify() 97 else if(!strncmp("/./", clone, 3)) { in Curl_dedotdotify() [all …]
|
/external/mesa3d/src/glsl/ |
D | ir_clone.cpp | 31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_rvalue 45 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_variable 78 var->constant_value = this->constant_value->clone(mem_ctx, ht); in clone() 82 this->constant_initializer->clone(mem_ctx, ht); in clone() 92 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_swizzle 94 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask); in clone() 98 ir_return::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_return 103 new_value = this->value->clone(mem_ctx, ht); in clone() 109 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_discard 114 new_condition = this->condition->clone(mem_ctx, ht); in clone() [all …]
|
/external/testng/src/main/java/org/testng/internal/ |
D | TestNGMethod.java | 176 public BaseTestMethod clone() { in clone() method in TestNGMethod 177 TestNGMethod clone= new TestNGMethod(getMethod(), getAnnotationFinder(), false, getXmlTest(), in clone() local 181 testClass.setBeforeTestMethods(clone(tc.getBeforeTestMethods())); in clone() 182 testClass.setAfterTestMethod(clone(tc.getAfterTestMethods())); in clone() 183 clone.m_testClass= testClass; in clone() 184 clone.setDate(getDate()); in clone() 185 clone.setGroups(getGroups()); in clone() 186 clone.setGroupsDependedUpon(getGroupsDependedUpon(), Collections.<String>emptyList()); in clone() 187 clone.setMethodsDependedUpon(getMethodsDependedUpon()); in clone() 188 clone.setAlwaysRun(isAlwaysRun()); in clone() [all …]
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
D | FieldData.java | 191 public final FieldData clone() { in clone() method in FieldData 192 FieldData clone = new FieldData(); in clone() local 194 clone.cachedExtension = cachedExtension; in clone() 196 clone.unknownFieldData = null; in clone() 198 clone.unknownFieldData.addAll(unknownFieldData); in clone() 207 clone.value = ((MessageNano) value).clone(); in clone() 209 clone.value = ((byte[]) value).clone(); in clone() 213 clone.value = cloneArray; in clone() 215 cloneArray[i] = valueArray[i].clone(); in clone() 218 clone.value = ((boolean[]) value).clone(); in clone() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | ReverseAxesWalker.java | 138 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getProximityPosition() local 140 clone.setRoot(this.getRoot()); in getProximityPosition() 142 clone.setPredicateCount(predicateIndex); in getProximityPosition() 144 clone.setPrevWalker(null); in getProximityPosition() 145 clone.setNextWalker(null); in getProximityPosition() 146 wi().setLastUsedWalker(clone); in getProximityPosition() 152 while (DTM.NULL != (next = clone.nextNode())) in getProximityPosition() 201 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getLastPos() local 203 clone.setRoot(this.getRoot()); in getLastPos() 205 clone.setPredicateCount(m_predicateIndex); in getLastPos() [all …]
|
D | OneStepIterator.java | 135 public Object clone() throws CloneNotSupportedException in clone() method in OneStepIterator 139 OneStepIterator clone = (OneStepIterator) super.clone(); in clone() local 143 clone.m_iterator = m_iterator.cloneIterator(); in clone() 145 return clone; in clone() 159 OneStepIterator clone = (OneStepIterator) super.cloneWithReset(); in cloneWithReset() local 160 clone.m_iterator = m_iterator; in cloneWithReset() 162 return clone; in cloneWithReset() 204 OneStepIterator clone = (OneStepIterator) this.clone(); in getProximityPosition() local 208 clone.setRoot(root, xctxt); in getProximityPosition() 211 clone.m_predCount = predicateIndex; in getProximityPosition() [all …]
|
D | AxesWalker.java | 87 public Object clone() throws CloneNotSupportedException in clone() method in AxesWalker 91 AxesWalker clone = (AxesWalker) super.clone(); in clone() local 97 return clone; in clone() 116 AxesWalker clone = findClone(this, cloneList); in cloneDeep() local 117 if(null != clone) in cloneDeep() 118 return clone; in cloneDeep() 119 clone = (AxesWalker)this.clone(); in cloneDeep() 120 clone.setLocPathIterator(cloneOwner); in cloneDeep() 124 cloneList.addElement(clone); in cloneDeep() 128 cloneOwner.m_lastUsedWalker = clone; in cloneDeep() [all …]
|
D | LocPathIterator.java | 236 LocPathIterator clone = (LocPathIterator)m_clones.getInstance(); in executeCharsToContentHandler() local 239 clone.setRoot(current, xctxt); in executeCharsToContentHandler() 241 int node = clone.nextNode(); in executeCharsToContentHandler() 242 DTM dtm = clone.getDTM(node); in executeCharsToContentHandler() 243 clone.detach(); in executeCharsToContentHandler() 531 LocPathIterator clone; in getLength() local 535 clone = (LocPathIterator) clone(); in getLength() 548 clone.m_predCount = m_predicateIndex; in getLength() 556 while (DTM.NULL != (next = clone.nextNode())) in getLength() 713 LocPathIterator clone; in cloneWithReset() local [all …]
|
/external/opencv3/modules/imgproc/src/ |
D | colormap.cpp | 195 Mat(64,1, CV_32FC1, r).clone(), // red in init() 196 Mat(64,1, CV_32FC1, g).clone(), // green in init() 197 Mat(64,1, CV_32FC1, b).clone(), // blue in init() 219 Mat(64,1, CV_32FC1, r).clone(), // red in init() 220 Mat(64,1, CV_32FC1, g).clone(), // green in init() 221 Mat(64,1, CV_32FC1, b).clone(), // blue in init() 249 Mat(256,1, CV_32FC1, r).clone(), // red in init() 250 Mat(256,1, CV_32FC1, g).clone(), // green in init() 251 Mat(256,1, CV_32FC1, b).clone(), // blue in init() 273 Mat(11,1, CV_32FC1, r).clone(), // red in init() [all …]
|
/external/apache-http/src/org/apache/http/client/methods/ |
D | HttpRequestBase.java | 176 public Object clone() throws CloneNotSupportedException { in clone() method in HttpRequestBase 177 HttpRequestBase clone = (HttpRequestBase) super.clone(); in clone() local 178 clone.abortLock = new ReentrantLock(); in clone() 179 clone.aborted = false; in clone() 180 clone.releaseTrigger = null; in clone() 181 clone.connRequest = null; in clone() 182 clone.headergroup = (HeaderGroup) CloneUtils.clone(this.headergroup); in clone() 183 clone.params = (HttpParams) CloneUtils.clone(this.params); in clone() 184 return clone; in clone()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | NamespaceMappings.java | 331 public Object clone() throws CloneNotSupportedException { in clone() method in NamespaceMappings 332 NamespaceMappings clone = new NamespaceMappings(); in clone() local 333 clone.m_nodeStack = (NamespaceMappings.Stack) m_nodeStack.clone(); in clone() 334 clone.count = this.count; in clone() 335 clone.m_namespaces = (Hashtable) m_namespaces.clone(); in clone() 337 clone.count = count; in clone() 338 return clone; in clone() 379 public Object clone() throws CloneNotSupportedException { in clone() method in NamespaceMappings.Stack 380 NamespaceMappings.Stack clone = new NamespaceMappings.Stack(); in clone() local 381 clone.max = this.max; in clone() [all …]
|
/external/mesa3d/src/mesa/program/ |
D | program.c | 489 struct gl_program *clone; in _mesa_clone_program() local 491 clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id); in _mesa_clone_program() 492 if (!clone) in _mesa_clone_program() 495 assert(clone->Target == prog->Target); in _mesa_clone_program() 496 assert(clone->RefCount == 1); in _mesa_clone_program() 498 clone->String = (GLubyte *) _mesa_strdup((char *) prog->String); in _mesa_clone_program() 499 clone->Format = prog->Format; in _mesa_clone_program() 500 clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions); in _mesa_clone_program() 501 if (!clone->Instructions) { in _mesa_clone_program() 502 _mesa_reference_program(ctx, &clone, NULL); in _mesa_clone_program() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/ |
D | univ.py | 25 def __and__(self, value): return self.clone(self._value & value) 26 def __rand__(self, value): return self.clone(value & self._value) 27 def __or__(self, value): return self.clone(self._value | value) 28 def __ror__(self, value): return self.clone(value | self._value) 29 def __xor__(self, value): return self.clone(self._value ^ value) 30 def __rxor__(self, value): return self.clone(value ^ self._value) 31 def __lshift__(self, value): return self.clone(self._value << value) 32 def __rshift__(self, value): return self.clone(self._value >> value) 34 def __add__(self, value): return self.clone(self._value + value) 35 def __radd__(self, value): return self.clone(value + self._value) [all …]
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntry.java | 74 DirectoryEntry clone = new DirectoryEntry(path); in cloneWithNewPath() local 75 clone.setLastModified(getLastModified()); in cloneWithNewPath() 76 clone.setOwner(getOwner()); in cloneWithNewPath() 77 clone.setGroup(getGroup()); in cloneWithNewPath() 78 clone.setPermissions(getPermissions()); in cloneWithNewPath() 79 return clone; in cloneWithNewPath()
|