Searched refs:copy (Results 276 - 300 of 2627) sorted by relevance

<<11121314151617181920>>

/external/google-fonts/coming-soon/
H A DAndroid.mk5 # You may obtain a copy of the License at
16 # to copy over the NOTICE file.
/external/google-fonts/cutive-mono/
H A DAndroid.mk5 # You may obtain a copy of the License at
16 # to copy over the NOTICE file.
/external/google-fonts/dancing-script/
H A DAndroid.mk5 # You may obtain a copy of the License at
16 # to copy over the NOTICE file.
/external/javassist/src/main/javassist/bytecode/
H A DFieldInfo.java92 invisibleAnnotations = invisibleAnnotations.copy(cp, null);
99 visibleAnnotations = visibleAnnotations.copy(cp, null);
106 signature = signature.copy(cp, null);
112 index = constPool.copy(index, cp, null);
H A DInnerClassesAttribute.java200 * Makes a copy. Class names are replaced according to the
203 * @param newCp the constant pool table used by the new copy.
207 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:InnerClassesAttribute
222 innerClass = cp.copy(innerClass, newCp, classnames);
227 outerClass = cp.copy(outerClass, newCp, classnames);
232 innerName = cp.copy(innerName, newCp, classnames);
H A DSourceFileAttribute.java60 * Makes a copy. Class names are replaced according to the
63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SourceFileAttribute
/external/libcxx/test/algorithms/alg.sorting/alg.permutation.generators/
H A Dnext_permutation.pass.cpp46 std::copy(ia, ia+e, prev);
H A Dnext_permutation_comp.pass.cpp48 std::copy(ia, ia+e, prev);
H A Dprev_permutation.pass.cpp46 std::copy(ia, ia+e, prev);
H A Dprev_permutation_comp.pass.cpp48 std::copy(ia, ia+e, prev);
/external/llvm/include/llvm/IR/
H A DPredIteratorCache.h52 std::copy(PredCache.begin(), PredCache.end(), Entry);
/external/lohit-fonts/
H A DAndroid.mk5 # You may obtain a copy of the License at
16 # to copy over the NOTICE file.
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_exa.h41 } copy; member in struct:exa_context
/external/mesa3d/src/glsl/
H A Dlink_functions.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
150 ir_instruction *copy = original->clone(linked, ht); local
151 formal_parameters.push_tail(copy);
159 ir_instruction *copy = original->clone(linked, ht); local
160 linked_sig->body.push_tail(copy);
/external/naver-fonts/
H A DAndroid.mk5 # You may obtain a copy of the License at
16 # to copy over the NOTICE file.
/external/openssl/crypto/
H A Dpariscid.pl145 copy $cnt,$rv
147 copy $tick,$lasttick
157 copy $tick,$lasttick
178 copy $cnt,$rv
182 copy $tick,$lasttick
192 copy $tick,$lasttick
194 copy $diff,$lastdiff
205 copy $tick,$lasttick
/external/owasp/sanitizer/tools/
H A Dupdate_tree_in_svn.py74 def copy(src, dst): run(['cp', '-f', src, dst]) function in function:sync
77 if not filecmp.cmp(src, dst, shallow=0): copy(src, dst)
101 (FILE, NO_EXIST): (copy, svn_add,),
103 (FILE, DIR) : (recurse, remove, svn_delete, copy, svn_add, cnf),
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowWifiManager.java76 WifiConfiguration copy = shadowOf(config).copy();
77 copy.networkId = networkId;
78 return copy;
/external/skia/experimental/iOSSampleApp/
H A DSkSampleUIView.h36 @property (nonatomic, copy) NSString* fTitle;
/external/skia/include/core/
H A DSkTDict.h40 char* copy = (char*)fStrings.alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType); local
41 memcpy(copy, name, len);
42 copy[len] = '\0';
43 pair->fName = copy;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocation.cpp331 GeoNotifierVector copy; local
332 copyToVector(m_oneShots, copy);
334 stopTimer(copy);
339 GeoNotifierVector copy; local
340 m_watchers.getNotifiersVector(copy);
342 stopTimer(copy);
360 GeoNotifierVector copy; local
361 copyToVector(m_oneShots, copy);
362 cancelRequests(copy);
363 m_watchers.getNotifiersVector(copy);
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DCharInfo.java8 * You may obtain a copy of the License at
153 * making a mutable copy, {@link #mutableCopyOf(CharInfo)}.
500 // Put the common copy of charInfo in the cache, but return
501 // a copy of it.
531 * Create a mutable copy of the cached one.
536 CharInfo copy = new CharInfo();
539 System.arraycopy(charInfo.array_of_bits,0,copy.array_of_bits,0,max);
541 copy.firstWordNotUsed = charInfo.firstWordNotUsed;
544 System.arraycopy(charInfo.shouldMapAttrChar_ASCII,0,copy.shouldMapAttrChar_ASCII,0,max);
547 System.arraycopy(charInfo.shouldMapTextChar_ASCII,0,copy
[all...]
/external/chromium_org/cc/quads/
H A Drender_pass_unittest.cc100 scoped_ptr<RenderPass> copy = pass->Copy(new_id); local
101 EXPECT_EQ(new_id, copy->id);
102 EXPECT_RECT_EQ(pass->output_rect, copy->output_rect);
103 EXPECT_EQ(pass->transform_to_root_target, copy->transform_to_root_target);
104 EXPECT_RECT_EQ(pass->damage_rect, copy->damage_rect);
105 EXPECT_EQ(pass->has_transparent_background, copy->has_transparent_background);
106 EXPECT_EQ(0u, copy->quad_list.size());
108 // The copy request should not be copied/duplicated.
110 EXPECT_EQ(0u, copy->copy_requests.size());
231 // Make a copy wit
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dsidenav_data_source.py5 import copy namespace
104 sidenav = copy.deepcopy(sidenav)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseGitDiffHeader.pl140 diffName => "copy (with similarity index 100%)",
144 copy from foo
145 copy to foo_new
154 copy from foo
155 copy to foo_new
164 diffName => "copy (with similarity index < 100%)",
168 copy from foo
169 copy to foo_new
178 copy from foo
179 copy t
[all...]

Completed in 926 milliseconds

<<11121314151617181920>>