/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
CompactQuaternionArray.java | 86 protected void serialize(int i, Quaternion store) {
88 array[j] = store.getX();
89 array[j + 1] = store.getY();
90 array[j + 2] = store.getZ();
91 array[j + 3] = store.getW();
95 protected Quaternion deserialize(int i, Quaternion store) {
97 store.set(array[j], array[j + 1], array[j + 2], array[j + 3]);
98 return store;
|
CompactVector3Array.java | 86 protected void serialize(int i, Vector3f store) {
88 array[j] = store.getX();
89 array[j+1] = store.getY();
90 array[j+2] = store.getZ();
94 protected Vector3f deserialize(int i, Vector3f store) {
96 store.set(array[j], array[j+1], array[j+2]);
97 return store;
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/ |
EmitterShape.java | 45 * @param store 46 * store variable for initial position 48 public void getRandomPoint(Vector3f store); 52 * @param store 53 * store variable for initial position 55 * store variable for initial normal 57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal);
|
/cts/tools/dex-tools/test/dex/reader/util/ |
SpecialJavaFileManager.java | 36 private Map<String, MemoryByteCode> store; field in class:SpecialJavaFileManager 40 store = new HashMap<String, MemoryByteCode>(); 46 store.put(name, mbc); 51 return new HashSet<MemoryByteCode>(store.values()); 55 return store.get(className);
|
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_store_unittest_helper.h | 30 // Test that the empty store looks empty. 31 void SafeBrowsingStoreTestEmpty(SafeBrowsingStore* store); 33 // Write some prefix data to the store and verify that it looks like 35 void SafeBrowsingStoreTestStorePrefix(SafeBrowsingStore* store); 38 void SafeBrowsingStoreTestSubKnockout(SafeBrowsingStore* store); 41 void SafeBrowsingStoreTestDeleteChunks(SafeBrowsingStore* store); 43 // Test that deleting the store deletes the store. 44 void SafeBrowsingStoreTestDelete(SafeBrowsingStore* store, 50 // within the class, as a pointer, and |filename| is that store' [all...] |
/external/chromium_org/base/prefs/ |
pref_service_builder.h | 30 // These take ownership of the |store| parameter. 31 PrefServiceBuilder& WithManagedPrefs(PrefStore* store); 32 PrefServiceBuilder& WithExtensionPrefs(PrefStore* store); 33 PrefServiceBuilder& WithCommandLinePrefs(PrefStore* store); 34 PrefServiceBuilder& WithUserPrefs(PersistentPrefStore* store); 35 PrefServiceBuilder& WithRecommendedPrefs(PrefStore* store); 43 // Specifies to use an actual file-backed user pref store.
|
/external/chromium_org/chrome/browser/safe_browsing/ |
safe_browsing_store_unittest_helper.h | 29 // Test that the empty store looks empty. 30 void SafeBrowsingStoreTestEmpty(SafeBrowsingStore* store); 32 // Write some prefix data to the store and verify that it looks like 34 void SafeBrowsingStoreTestStorePrefix(SafeBrowsingStore* store); 37 void SafeBrowsingStoreTestSubKnockout(SafeBrowsingStore* store); 40 void SafeBrowsingStoreTestDeleteChunks(SafeBrowsingStore* store); 42 // Test that deleting the store deletes the store. 43 void SafeBrowsingStoreTestDelete(SafeBrowsingStore* store, 49 // within the class, as a pointer, and |filename| is that store' [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
passwords_helper.h | 19 // Adds the login held in |form| to the password store |store|. Even though 22 void AddLogin(PasswordStore* store, const content::PasswordForm& form); 24 // Update the data held in password store |store| with a modified |form|. 26 void UpdateLogin(PasswordStore* store, const content::PasswordForm& form); 28 // Searches |store| for all logins matching a fake signon realm used only by 31 void GetLogins(PasswordStore* store, 34 // Removes the login held in |form| from the password store |store|. Thi [all...] |
/libcore/crypto/src/test/java/org/conscrypt/ |
TrustedCertificateStoreTest.java | 192 private TrustedCertificateStore store; field in class:TrustedCertificateStoreTest 204 store = new TrustedCertificateStore(DIR_SYSTEM, DIR_ADDED, DIR_DELETED); 221 store = null; 235 store.deleteCertificateEntry(getAliasSystemCa1()); 242 store.deleteCertificateEntry(getAliasSystemCa1()); 244 store.deleteCertificateEntry(getAliasSystemCa2()); 262 store.getCertificate(null); 266 assertNull(store.getCertificate("")); 269 store.getCreationDate(null); 273 assertNull(store.getCreationDate("")) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vb_program.c | 128 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store) 135 store->ormask = 0; 136 store->andmask = CLIP_FRUSTUM_BITS; 143 &store->ndcCoords, 144 store->clipmask, 145 &store->ormask, 146 &store->andmask, 153 store->clipmask, 154 &store->ormask, 155 &store->andmask 314 struct vp_stage_data *store = VP_STAGE_DATA(stage); local 514 struct vp_stage_data *store; local 536 struct vp_stage_data *store = VP_STAGE_DATA(stage); local [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_vb_program.c | 128 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store) 135 store->ormask = 0; 136 store->andmask = CLIP_FRUSTUM_BITS; 143 &store->ndcCoords, 144 store->clipmask, 145 &store->ormask, 146 &store->andmask, 153 store->clipmask, 154 &store->ormask, 155 &store->andmask 314 struct vp_stage_data *store = VP_STAGE_DATA(stage); local 514 struct vp_stage_data *store; local 536 struct vp_stage_data *store = VP_STAGE_DATA(stage); local [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
Store.h | 1 //== Store.h - Interface for maps from Locations to Values ------*- C++ -*--==// 10 // This file defined the types Store and StoreManager. 55 /// \param[in] store The analysis state. 61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0; 64 /// \param[in] store The analysis state. 70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0; 72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V) [all...] |
/external/chromium/chrome/browser/prefs/ |
pref_service_mock_builder.h | 30 // These take ownership of the |store| parameter. 31 PrefServiceMockBuilder& WithManagedPlatformPrefs(PrefStore* store); 32 PrefServiceMockBuilder& WithManagedCloudPrefs(PrefStore* store); 33 PrefServiceMockBuilder& WithExtensionPrefs(PrefStore* store); 34 PrefServiceMockBuilder& WithCommandLinePrefs(PrefStore* store); 35 PrefServiceMockBuilder& WithUserPrefs(PersistentPrefStore* store); 36 PrefServiceMockBuilder& WithRecommendedPlatformPrefs(PrefStore* store); 37 PrefServiceMockBuilder& WithRecommendedCloudPrefs(PrefStore* store); 49 // Specifies to use an actual command-line backed command-line pref store. 52 // Specifies to use an actual file-backed user pref store [all...] |
/external/chromium_org/net/ssl/ |
default_server_bound_cert_store_unittest.cc | 142 DefaultServerBoundCertStore store(persistent_store.get()); 144 EXPECT_EQ(0, store.GetCertCount()); 145 store.SetServerBoundCert( 152 EXPECT_EQ(2, store.GetCertCount()); 153 store.SetServerBoundCert( 159 EXPECT_EQ(3, store.GetCertCount()); 162 //TODO(mattm): add more tests of without a persistent store? 164 // No persistent store, all calls will be synchronous. 165 DefaultServerBoundCertStore store(NULL); 168 EXPECT_EQ(0, store.GetCertCount()) [all...] |
/external/chromium/net/base/ |
network_change_notifier_mac.h | 34 virtual void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store) { 35 net_config_watcher_->SetDynamicStoreNotificationKeys(store); 47 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
|
keygen_handler.h | 41 void set_stores_key(bool store) { stores_key_ = store;}
|
/external/chromium_org/content/test/data/indexeddb/ |
value_size_test.js | 13 debug('Creating object store'); 14 var store = db.createObjectStore('store'); 15 store.put("FIRST!!!111!", -Infinity); 44 var transaction = db.transaction("store", 'readwrite'); 45 var store = transaction.objectStore("store"); 48 debug("store.add underLimit"); 49 request = store.add(underLimit, key++); 52 debug("store.add succeeded") [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/ |
GeoMap.java | 155 * @param store A preallocated FloatBuffer where to store the data (optional), size must be >= getWidth()*getHeight()*3 156 * @returns store, or a new FloatBuffer if store is null 160 public FloatBuffer writeNormalArray(FloatBuffer store, Vector3f scale) { 162 if (store!=null){ 163 if (store.remaining() < getWidth()*getHeight()*3) 166 store = BufferUtils.createFloatBuffer(getWidth()*getHeight()*3); 168 store.rewind(); 214 // store.put(tempNorm.x).put(tempNorm.y).put(tempNorm.z) [all...] |
/external/chromium_org/chrome/browser/extensions/api/content_settings/ |
content_settings_store_unittest.cc | 49 const ContentSettingsStore* store, 55 store->GetRuleIterator(content_type, resource_identifier, incognito)); 63 const ContentSettingsStore* store, 70 store->GetRuleIterator(content_type, resource_identifier, incognito)); 88 ContentSettingsStore* store() { function in class:extensions::ContentSettingsStoreTest 99 store()->AddObserver(&observer); 104 GetContentSettingFromStore(store(), 116 GetContentSettingFromStore(store(), 127 store()->SetExtensionContentSetting(ext_id, 137 GetContentSettingFromStore(store(), [all...] |
/external/chromium_org/chrome/browser/ui/webui/options/ |
password_manager_handler.cc | 34 PasswordStore* store = GetPasswordStore(); local 35 if (store) 36 store->RemoveObserver(this); 82 PasswordStore* store = GetPasswordStore(); local 83 if (store) 84 store->AddObserver(this); 126 PasswordStore* store = GetPasswordStore(); local 127 if (!store) 133 store->RemoveLogin(*password_list_[index]); 138 PasswordStore* store = GetPasswordStore() local 152 PasswordStore* store = GetPasswordStore(); local 161 PasswordStore* store = GetPasswordStore(); local 218 PasswordStore* store = page_->GetPasswordStore(); local 254 PasswordStore* store = page_->GetPasswordStore(); local [all...] |
/dalvik/vm/mterp/x86/ |
OP_CONST_WIDE_16.S | 6 SET_VREG_WORD rIBASE rINST 1 # store msw 9 SET_VREG_WORD %eax rINST 0 # store lsw
|
OP_CONST_WIDE_32.S | 6 SET_VREG_WORD rIBASE rINST,1 # store msw 9 SET_VREG_WORD %eax rINST 0 # store lsw
|
/external/chromium_org/chrome/browser/policy/cloud/ |
cloud_policy_manager.cc | 22 store()->AddObserver(this); 24 // If the underlying store is already initialized, publish the loaded 26 if (store()->is_initialized()) 29 store()->Load(); 39 // right away. Otherwise, store the closure so it can be invoked when the 49 store()->RemoveObserver(this); 55 return store()->is_initialized(); 71 DCHECK_EQ(store(), cloud_policy_store); 76 DCHECK_EQ(store(), cloud_policy_store); 119 .CopyFrom(store()->policy_map()) [all...] |
/external/chromium_org/net/base/ |
keygen_handler.h | 41 void set_stores_key(bool store) { stores_key_ = store;}
|
/packages/apps/Email/tests/src/com/android/email/mail/transport/ |
DiscourseLoggerTest.java | 125 DiscourseLogger store = new DiscourseLogger(storeSize); local 128 store.addSentCommand((String) o); 131 store.addReceivedByte(b); 137 MoreAsserts.assertEquals(expected, store.getLines()); 140 store.logLastDiscourse(); 141 assertEquals(0, store.getLines().length);
|