/external/proguard/src/proguard/classfile/instruction/ |
SwitchInstruction.java | 17 * You should have received a copy of the GNU General Public License along 59 public SwitchInstruction copy(SwitchInstruction switchInstruction) method in class:SwitchInstruction
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayerStreamListener.cpp | 6 * You may obtain a copy of the License at 142 size_t copy = entry->mSize; local 143 if (copy > size) { 144 copy = size; 150 copy); 152 entry->mOffset += copy; 153 entry->mSize -= copy; 161 return copy;
|
/frameworks/base/graphics/java/android/graphics/ |
BitmapShader.java | 6 * You may obtain a copy of the License at 54 protected Shader copy() { method in class:BitmapShader 55 final BitmapShader copy = new BitmapShader(mBitmap, mTileX, mTileY); local 56 copyLocalMatrix(copy); 57 return copy;
|
/frameworks/base/tools/aapt/ |
FileFinder.cpp | 63 DirectoryWalker* copy = dw->clone(); local 64 findFiles(fullPath, extensions, fileStore,copy); 65 delete copy;
|
/pdk/apps/CameraITS/tests/ |
test_formats.py | 5 # You may obtain a copy of the License at 20 import copy namespace 31 out_surface = copy.deepcopy(size) 40 out_surface = copy.deepcopy(size)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementInclude.py | 25 # Permission to use, copy, modify, and distribute this software and 51 import copy namespace 116 node = copy.copy(node)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementInclude.py | 25 # Permission to use, copy, modify, and distribute this software and 51 import copy namespace 116 node = copy.copy(node)
|
/system/core/libcutils/ |
process_name.c | 6 * You may obtain a copy of the License at 48 char* copy = (char*) malloc(len + 1); local 49 strcpy(copy, new_name); 50 process_name = (const char*) copy;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
FixLaunchConfig.java | 6 * You may obtain a copy of the License at 92 // get the working copy so that we can make changes. 93 ILaunchConfigurationWorkingCopy copy = config.getWorkingCopy(); local 105 // put it in the copy 106 copy.setAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, activity); 109 copy.doSave(); 112 // couldn't get the working copy. we output the error in the console
|
/art/runtime/base/ |
stringpiece.cc | 6 * You may obtain a copy of the License at 28 int StringPiece::copy(char* buf, size_type n, size_type pos) const { function in class:art::StringPiece
|
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
Vector2D.cpp | 5 * in compliance with the License. You may obtain a copy of the License at 26 Vector2D Vector2D::copy() { function in class:Vector2D
|
/external/apache-http/src/org/apache/http/params/ |
DefaultedHttpParams.java | 13 * with the License. You may obtain a copy of the License at 61 * Creates a copy of the local collection with the same default 63 public HttpParams copy() { method in class:DefaultedHttpParams 64 HttpParams clone = this.local.copy();
|
/external/chromium/base/ |
version.cc | 32 Version* copy = new Version(); local 33 copy->components_ = components_; 34 copy->is_valid_ = true; 35 return copy;
|
/external/chromium/net/base/ |
dnsrr_resolver_unittest.cc | 197 uint8 copy[sizeof(kExamplePacket)]; local 205 memcpy(copy, kExamplePacket, sizeof(copy)); 206 copy[byte] ^= (1 << bit); 208 response.ParseFromResponse(copy, sizeof(copy), kDNS_TXT);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
taskparent.cc | 90 ChildSet copy = *children_; local 91 for (ChildSet::iterator it = copy.begin(); it != copy.end(); ++it) {
|
/external/chromium_org/cc/animation/ |
animation_registrar.cc | 14 AnimationControllerMap copy = all_animation_controllers_; local 15 for (AnimationControllerMap::iterator iter = copy.begin(); 16 iter != copy.end();
|
/external/chromium_org/chrome/tools/build/win/ |
sln_deps.py | 6 import copy namespace 74 # First, create a copy of the map. 75 projects_reversed = copy.deepcopy(projects)
|
/external/chromium_org/content/common/dom_storage/ |
dom_storage_map_unittest.cc | 28 scoped_refptr<DOMStorageMap> copy; local 37 copy = map->DeepCopy(); 38 EXPECT_EQ(0u, copy->Length()); 39 EXPECT_EQ(0u, copy->bytes_used()); 70 copy = map->DeepCopy(); 71 EXPECT_EQ(2u, copy->Length()); 72 EXPECT_EQ(kValue, copy->GetItem(kKey).string()); 73 EXPECT_EQ(kValue2, copy->GetItem(kKey2).string()); 74 EXPECT_EQ(kKey, copy->Key(0).string()); 75 EXPECT_EQ(kKey2, copy->Key(1).string()) [all...] |
/external/chromium_org/content/common/ |
set_process_title_linux.cc | 80 char* copy = strdup(environ[i]); local 82 if (!copy) 84 environ[i] = copy;
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
easy_template.py | 6 import copy namespace 58 template_dict = copy.copy(template_dict)
|
/external/chromium_org/ppapi/tests/ |
test_buffer.cc | 98 // Implicitly test that the copy constructor doesn't cause a double-unmap on 100 pp::Buffer_Dev* copy = new pp::Buffer_Dev(*buffer); local 106 // Test that we can still write to copy's copy of the data. 107 char* copy_data = static_cast<char*>(copy->data()); 111 delete copy;
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
in_file.py | 29 import copy namespace 58 self.parameters = copy.deepcopy(default_parameters if default_parameters else {}) 60 self._valid_values = copy.deepcopy(valid_values if valid_values else {}) 133 args = copy.deepcopy(self._defaults)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
StyleBackgroundData.h | 18 * You should have received a copy of the GNU Library General Public License 39 PassRefPtr<StyleBackgroundData> copy() const { return adoptRef(new StyleBackgroundData(*this)); } function in class:WebCore::StyleBackgroundData
|
StyleGridItemData.h | 45 PassRefPtr<StyleGridItemData> copy() const { return adoptRef(new StyleGridItemData(*this)); } function in class:WebCore::StyleGridItemData
|
StyleInheritedData.h | 18 * You should have received a copy of the GNU Library General Public License 40 PassRefPtr<StyleInheritedData> copy() const { return adoptRef(new StyleInheritedData(*this)); } function in class:WebCore::StyleInheritedData
|