HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 526 - 550 of 1328) sorted by null

<<21222324252627282930>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 131 return copy();
134 public PKIXPolicyNode copy() method in class:PKIXPolicyNode
161 PKIXPolicyNode _child = ((PKIXPolicyNode)_iter.next()).copy();
  /external/chromium/net/tools/testserver/
chromiumsync.py 13 import copy namespace
151 """Return a deep copy of a protocol buffer."""
276 # The definitive copy of this client's items: a map from ID string to a
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokenizer.py 7 # You may obtain a copy of the License at
22 import copy namespace
342 # Make a copy so the original doesn't get modified.
343 matchers = copy.deepcopy(matchers)
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat4.js 83 * Copy the values from one mat4 to another
89 mat4.copy = function(out, a) {
466 if (a !== out) { // If the source and destination differ, copy the unchanged last row
495 if (a !== out) { // If the source and destination differ, copy the unchanged rows
538 if (a !== out) { // If the source and destination differ, copy the unchanged rows
581 if (a !== out) { // If the source and destination differ, copy the unchanged last row
vec2.js 69 * Copy the values from one vec2 to another
75 vec2.copy = function(out, a) {
vec3.js 73 * Copy the values from one vec3 to another
79 vec3.copy = function(out, a) {
vec4.js 77 * Copy the values from one vec4 to another
83 vec4.copy = function(out, a) {
  /external/chromium_org/base/
pickle_unittest.cc 83 // test copy constructor
300 Pickle copy; local
301 copy = copy_refs_source_buffer;
302 ASSERT_EQ(source.size(), copy.size());
  /external/chromium_org/base/strings/
string_piece.h 162 BASE_EXPORT StringPieceDetail<std::string>::size_type copy(
283 size_type copy(char* buf, size_type n, size_type pos = 0) const { function in class:base::BasicStringPiece
284 return internal::copy(*this, buf, n, pos);
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_data_source.py 5 import copy namespace
442 content = copy.deepcopy(table_info[category])
  /external/chromium_org/chrome/test/functional/
ntp.py 6 import copy namespace
  /external/chromium_org/content/browser/
browser_child_process_host_impl.cc 122 // Make a copy since the BrowserChildProcessHost dtor mutates the original
124 BrowserChildProcessList copy = g_child_process_list.Get(); local
125 for (BrowserChildProcessList::iterator it = copy.begin();
126 it != copy.end(); ++it) {
  /external/chromium_org/content/child/fileapi/
webfilesystem_impl.cc 402 void WebFileSystemImpl::copy( function in class:content::WebFileSystemImpl
411 &FileSystemDispatcher::Copy,
  /external/chromium_org/content/renderer/
v8_value_converter_impl_unittest.cc 276 scoped_ptr<base::Value> copy(
280 EXPECT_TRUE(original->Equals(copy.get()));
318 v8::Handle<v8::Object> copy = local
320 EXPECT_FALSE(copy.IsEmpty());
321 EXPECT_EQ(2u, copy->GetPropertyNames()->Length());
322 EXPECT_EQ("bar", GetString(copy, "bar"));
358 v8::Handle<v8::Array> copy = local
360 ASSERT_FALSE(copy.IsEmpty());
361 EXPECT_EQ(2u, copy->Length());
362 EXPECT_EQ("bar", GetString(copy, 1))
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
manifest_util.py 5 import copy namespace
464 overwritten with a copy of this bundle, at the same index as the original.
471 new_bundle_copy = copy.deepcopy(new_bundle)
  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
AccountHolder.java 100 return copy().password(password).build();
104 return copy().authTokens(authTokens).build();
108 return copy().authToken(authTokenType, authToken).build();
112 return copy().hasBeenAccepted(authTokenType, hasBeenAccepted).build();
116 return copy().alwaysAccept(alwaysAccept).build();
119 private Builder copy() { method in class:AccountHolder
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRule.h 16 * You should have received a copy of the GNU Library General Public License
70 PassRefPtr<StyleRuleBase> copy() const;
111 PassRefPtr<StyleRule> copy() const { return adoptRef(new StyleRule(*this)); } function in class:WebCore::StyleRule
134 PassRefPtr<StyleRuleFontFace> copy() const { return adoptRef(new StyleRuleFontFace(*this)); } function in class:WebCore::StyleRuleFontFace
157 PassRefPtr<StyleRulePage> copy() const { return adoptRef(new StyleRulePage(*this)); } function in class:WebCore::StyleRulePage
191 PassRefPtr<StyleRuleMedia> copy() const { return adoptRef(new StyleRuleMedia(*this)); } function in class:WebCore::StyleRuleMedia
209 PassRefPtr<StyleRuleSupports> copy() const { return adoptRef(new StyleRuleSupports(*this)); } function in class:WebCore::StyleRuleSupports
228 PassRefPtr<StyleRuleRegion> copy() const { return adoptRef(new StyleRuleRegion(*this)); } function in class:WebCore::StyleRuleRegion
248 PassRefPtr<StyleRuleViewport> copy() const { return adoptRef(new StyleRuleViewport(*this)); } function in class:WebCore::StyleRuleViewport
270 PassRefPtr<StyleRuleFilter> copy() const { return adoptRef(new StyleRuleFilter(*this)); function in class:WebCore::StyleRuleFilter
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareNonInheritedData.h 18 * You should have received a copy of the GNU Library General Public License
77 PassRefPtr<StyleRareNonInheritedData> copy() const { return adoptRef(new StyleRareNonInheritedData(*this)); } function in class:WebCore::StyleRareNonInheritedData
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformWheelEvent.h 103 PlatformWheelEvent copy = *this; local
105 copy.m_deltaX = copy.m_deltaY;
106 copy.m_deltaY = 0;
107 copy.m_wheelTicksX = copy.m_wheelTicksY;
108 copy.m_wheelTicksY = 0;
110 return copy;
SharedBuffer.cpp 335 PassRefPtr<SharedBuffer> SharedBuffer::copy() const function in class:WebCore::SharedBuffer
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
driver.py 30 import copy namespace
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Blit.cpp 8 // Blit.cpp: Surface copy utility class.
214 bool Blit::copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterface2D *storage, GLint level) function in class:rx::Blit
242 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
250 bool Blit::copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level) function in class:rx::Blit
278 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
286 bool Blit::copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest) function in class:rx::Blit
424 // Copy the render target into a texture
Image11.cpp 279 void Image11::copy(GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, gl::Framebuffer *source) function in class:rx::Image11
316 ERR("Failed to create resolve texture for Image11::copy, HRESULT: 0x%X.", result);
345 // This format requires conversion, so we must copy the texture to staging and manually convert via readPixels
Image9.cpp 483 void Image9::copy(GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, gl::Framebuffer *source) function in class:rx::Image9
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascripttokenizer.py 7 # You may obtain a copy of the License at
22 import copy namespace
342 # Make a copy so the original doesn't get modified.
343 matchers = copy.deepcopy(matchers)

Completed in 312 milliseconds

<<21222324252627282930>>