Searched refs:identifier (Results 76 - 100 of 551) sorted by relevance

1234567891011>>

/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/
H A DVisitedLinkTableController.h38 static PassRefPtr<VisitedLinkTableController> getOrCreate(uint64_t identifier);
42 explicit VisitedLinkTableController(uint64_t identifier);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DPropertyNameArray.h72 void add(const Identifier& identifier) { add(identifier.impl()); } argument
74 void addKnownUnique(StringImpl* identifier) { m_data->propertyNameVector().append(Identifier(m_vm, identifier)); } argument
H A DJSCell.cpp97 void JSCell::put(JSCell* cell, ExecState* exec, PropertyName identifier, JSValue value, PutPropertySlot& slot) argument
100 JSValue(cell).putToPrimitive(exec, identifier, value, slot);
104 thisObject->methodTable(exec->vm())->put(thisObject, exec, identifier, value, slot);
107 void JSCell::putByIndex(JSCell* cell, ExecState* exec, unsigned identifier, JSValue value, bool shouldThrow) argument
111 JSValue(cell).putToPrimitive(exec, Identifier::from(exec, identifier), value, slot);
115 thisObject->methodTable(exec->vm())->putByIndex(thisObject, exec, identifier, value, shouldThrow);
118 bool JSCell::deleteProperty(JSCell* cell, ExecState* exec, PropertyName identifier) argument
121 return thisObject->methodTable(exec->vm())->deleteProperty(thisObject, exec, identifier);
124 bool JSCell::deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned identifier) argument
127 return thisObject->methodTable(exec->vm())->deletePropertyByIndex(thisObject, exec, identifier);
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A DsslSession.h46 SSLBuffer *identifier,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A DsslSession.h46 SSLBuffer *identifier,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A DsslSession.h46 SSLBuffer *identifier,
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DIWebResourceLoadDelegatePrivate.idl61 HRESULT shouldUseCredentialStorage([in] IWebView* webView, [in] unsigned long identifier, [in] IWebDataSource* dataSource, [out, retval] BOOL* shouldUse);
63 HRESULT shouldCacheResponse([in] IWebView* webView, [in] unsigned long identifier, [in] IWebURLResponse* response, [in] const char* data, [in] unsigned long long length, [in] IWebDataSource* dataSource, [out, retval] BOOL* shouldCache);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_page_group.h57 EAPI Ewk_Page_Group *ewk_page_group_create(const char *identifier);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebPageGroup.h43 WebPageGroup(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true);
44 static PassRefPtr<WebPageGroup> create(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true);
45 static PassRef<WebPageGroup> createNonNull(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true);
53 const String& identifier() const { return m_data.identifer; } function in class:WebKit::WebPageGroup
H A DWebPreferences.cpp40 PassRefPtr<WebPreferences> WebPreferences::create(const String& identifier, const String& keyPrefix, const String& globalDebugKeyPrefix) argument
42 return adoptRef(new WebPreferences(identifier, keyPrefix, globalDebugKeyPrefix));
45 PassRefPtr<WebPreferences> WebPreferences::createWithLegacyDefaults(const String& identifier, const String& keyPrefix, const String& globalDebugKeyPrefix) argument
47 RefPtr<WebPreferences> preferences = adoptRef(new WebPreferences(identifier, keyPrefix, globalDebugKeyPrefix));
57 WebPreferences::WebPreferences(const String& identifier, const String& keyPrefix, const String& globalDebugKeyPrefix) argument
58 : m_identifier(identifier)
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/mac/
H A DWebPreferencesMac.mm35 static inline NSString* makeKey(NSString *identifier, NSString *keyPrefix, NSString *key)
37 ASSERT(identifier.length);
41 return [NSString stringWithFormat:@"%@%@%@", identifier, keyPrefix, key];
104 static id debugUserDefaultsValue(NSString *identifier, NSString *keyPrefix, NSString *globalDebugKeyPrefix, NSString *key)
112 if (identifier.length)
113 object = [standardUserDefaults objectForKey:[NSString stringWithFormat:@"%@%@%@", identifier, keyPrefix, key]];
123 static void setDebugBoolValueIfInUserDefaults(const String& identifier, const String& keyPrefix, const String& globalDebugKeyPrefix, const String& key, WebPreferencesStore& store)
125 id object = debugUserDefaultsValue(identifier, keyPrefix, globalDebugKeyPrefix, key);
/macosx-10.10.1/bootp-298/bootplib/
H A Dbsdp.h127 bsdp_image_identifier_is_server_local(u_int32_t identifier) argument
129 return (bsdp_image_index_is_server_local(bsdp_image_index(identifier)));
133 bsdp_image_identifier_is_install(u_int32_t identifier) argument
135 if ((bsdp_image_attributes(identifier) & BSDP_IMAGE_ATTRIBUTES_INSTALL)
199 * Parse the given option into the arch and system identifier
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DNavigationItem.js26 WebInspector.NavigationItem = function(identifier, role, label) {
29 this._identifier = identifier || null;
55 get identifier()
H A DSearchBar.js26 WebInspector.SearchBar = function(identifier, placeholder, delegate) {
27 WebInspector.NavigationItem.call(this, identifier);
41 this._searchInput.setAttribute("autosave", identifier + "-autosave");
H A DDetailsSection.js26 WebInspector.DetailsSection = function(identifier, title, groups, optionsElement, defaultCollapsedSettingValue) {
29 console.assert(identifier);
33 this._element.classList.add(identifier);
56 this._identifier = identifier;
60 this._collapsedSetting = new WebInspector.Setting(identifier + "-details-section-collapsed", !!defaultCollapsedSettingValue);
85 get identifier()
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPageGroup.cpp40 WKPageGroupRef WKPageGroupCreateWithIdentifier(WKStringRef identifier) argument
42 RefPtr<WebPageGroup> pageGroup = WebPageGroup::create(toWTFString(identifier));
48 return toCopiedAPI(toImpl(pageGroupRef)->identifier());
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/UserContent/
H A DWebUserContentController.h41 static PassRefPtr<WebUserContentController> getOrCreate(uint64_t identifier);
46 uint64_t identifier() { return m_identifier; } function in class:WebKit::final
49 explicit WebUserContentController(uint64_t identifier);
/macosx-10.10.1/bootp-298/BSDPClient/
H A DBSDPClient.h34 * - added image kind and made the whole 32-bit identifier the
151 BSDPImageDescriptionIdentifierIsServerLocal(CFNumberRef identifier);
156 * Returns the BSDPImageKind for the given identifier.
159 BSDPImageDescriptionIdentifierImageKind(CFNumberRef identifier);
164 * Returns whether the identifier refers to an install image or not.
167 BSDPImageDescriptionIdentifierIsInstall(CFNumberRef identifier);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/comp_match/
H A DauthorityKeyIdentifier.c58 if ( ( comp->type_id.identifier.bv_val && strncmp(comp->type_id.identifier.bv_val, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) || ( strncmp(comp->type_id.id_buf, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) ) {
64 if ( ( comp->value.identifier.bv_val && strncmp(comp->value.identifier.bv_val, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) || ( strncmp(comp->value.id_buf, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) ) {
109 (&k->type_id)->identifier.bv_val = (&k->type_id)->id_buf;
110 (&k->type_id)->identifier.bv_len = strlen("type_id");
111 strcpy( (&k->type_id)->identifier.bv_val, "type_id");
125 (&k->value)->identifier.bv_val = (&k->value)->id_buf;
126 (&k->value)->identifier.bv_len = strlen("value");
127 strcpy( (&k->value)->identifier
[all...]
H A Dcertificate.c116 if ( ( comp->algorithm.identifier.bv_val && strncmp(comp->algorithm.identifier.bv_val, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) || ( strncmp(comp->algorithm.id_buf, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) ) {
122 if ( ( comp->parameters.identifier.bv_val && strncmp(comp->parameters.identifier.bv_val, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) || ( strncmp(comp->parameters.id_buf, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) ) {
168 (&k->algorithm)->identifier.bv_val = (&k->algorithm)->id_buf;
169 (&k->algorithm)->identifier.bv_len = strlen("algorithm");
170 strcpy( (&k->algorithm)->identifier.bv_val, "algorithm");
192 (&k->parameters)->identifier.bv_val = (&k->parameters)->id_buf;
193 (&k->parameters)->identifier.bv_len = strlen("parameters");
194 strcpy( (&k->parameters)->identifier
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/Keychain/
H A DKDSecItems.m66 NSString *identifier = [aTableColumn identifier];
68 if ([@"account" isEqualToString:identifier]) {
71 if ([@"name" isEqualToString:identifier]) {
75 return [NSString stringWithFormat:@"*** c=%@ r%ld", [aTableColumn identifier], (long)rowIndex];
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dlivescript.js77 var identifier = '(?![\\d\\s])[$\\w\\xAA-\\uFFDC](?:(?!\\s)[$\\w\\xAA-\\uFFDC]|-[A-Za-z])*';
78 var indenter = RegExp('(?:[({[=:]|[-~]>|\\b(?:e(?:lse|xport)|d(?:o|efault)|t(?:ry|hen)|finally|import(?:\\s*all)?|const|var|let|new|catch(?:\\s*' + identifier + ')?))\\s*$');
112 token: 'identifier',
113 regex: identifier + '\\s*:(?![:=])'
116 regex: identifier
202 token: 'identifier',
203 regex: identifier,
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Dastp_cpx.c162 char const *identifier; /* place to receive the identifier text pointer */
165 NAMETABLE_id_to_string (name, &identifier);
174 log_error (location->lineno, NIDL_NAMEPREVDECLAT, identifier,
178 log_error (location->lineno, NIDL_NAMEALRDEC, identifier, NULL);
382 NAMETABLE_id_t identifier
395 structure_node_ptr->tag_name = identifier;
403 if (identifier != NAMETABLE_NIL_ID)
408 tag_type_node_ptr = (AST_type_n_t *) NAMETABLE_lookup_tag_binding(identifier);
427 ASTP_add_tag_binding(location, identifier, tag_type_node_pt
159 char const *identifier; /* place to receive the identifier text pointer */ local
618 AST_disc_union_node( parser_location_p location, NAMETABLE_id_t identifier, NAMETABLE_id_t union_name, NAMETABLE_id_t disc_name, AST_type_n_t *disc_type, AST_arm_n_t *arm_list ) argument
1151 char const *identifier; /* place to receive the identifier text */ local
1180 char const *identifier; local
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/ios/
H A DNativeWebTouchEventIOS.mm86 unsigned identifier = touchPoint.identifier;
89 touchPointList.uncheckedAppend(WebPlatformTouchPoint(identifier, location, phase));
/macosx-10.10.1/eap8021x-198/EAP8021X.fproj/
H A DEAPTLSUtil.h127 EAPTLSPacketCreate(EAPCode code, int type, u_char identifier, int mtu,
131 EAPTLSPacketCreate2(EAPCode code, int type, u_char identifier, int mtu,
179 * given domain, identifier, and server_hash_str, all of which must be
187 CFStringRef domain, CFStringRef identifier,
192 * Finds a stored trust exceptions object for the given domain, identifier,
198 CFStringRef identifier,
205 * trust domain and identifier.
212 CFStringRef identifier);
220 * trust exceptions identifier 'identifier'
[all...]

Completed in 301 milliseconds

1234567891011>>