HomeSort by relevance Sort by last modified time
    Searched defs:persistence (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/network/
Credential.cpp 44 Credential::Credential(const String& user, const String& password, CredentialPersistence persistence)
47 , m_persistence(persistence)
54 Credential::Credential(const Credential& original, CredentialPersistence persistence)
57 , m_persistence(persistence)
91 CredentialPersistence Credential::persistence() const function in class:WebCore::Credential
97 Credential::Credential(SecIdentityRef identity, CFArrayRef certificates, CredentialPersistence persistence)
100 , m_persistence(persistence)
125 // Check persistence first since all credential types
126 // have the persistence property.
127 if (a.persistence() != b.persistence()
    [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
AuthenticationCF.cpp 98 CFURLCredentialPersistence persistence = kCFURLCredentialPersistenceNone; local
99 switch (coreCredential.persistence()) {
103 persistence = kCFURLCredentialPersistenceForSession;
106 persistence = kCFURLCredentialPersistencePermanent;
114 CFURLCredentialRef result = CFURLCredentialCreate(0, user, password, 0, persistence);
191 CredentialPersistence persistence = CredentialPersistenceNone;
196 persistence = CredentialPersistenceForSession;
199 persistence = CredentialPersistencePermanent;
205 return Credential(CFURLCredentialGetUsername(cfCredential), CFURLCredentialCopyPassword(cfCredential), persistence);
  /external/webkit/Source/WebKit/win/
WebURLCredential.cpp 108 /* [in] */ WebURLCredentialPersistence persistence)
111 switch (persistence) {
137 HRESULT STDMETHODCALLTYPE WebURLCredential::persistence( function in class:WebURLCredential
140 switch (m_credential.persistence()) {
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h 171 encoder->encode(CoreIPC::In(credential.user(), credential.password(), static_cast<uint32_t>(credential.persistence())));
178 int persistence; local
179 if (!decoder->decode(CoreIPC::Out(user, password, persistence)))
182 credential = WebCore::Credential(user, password, static_cast<WebCore::CredentialPersistence>(persistence));
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
MidpointDisplacementHeightMap.java 49 private float persistence; // How the random offset evolves with increasing passes field in class:MidpointDisplacementHeightMap
59 * the <code>persistence</code> parameter each pass to smoothen close cell heights.
69 * @param persistence
77 public MidpointDisplacementHeightMap(int size, float range, float persistence, long seed) throws Exception {
84 this.persistence = persistence;
96 * the <code>persistence</code> parameter each pass to smoothen close cell heights.
102 * @param persistence
108 public MidpointDisplacementHeightMap(int size, float range, float persistence) throws Exception {
109 this(size, range, persistence, new Random().nextLong());
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 

Completed in 204 milliseconds