Searched refs:relativeString (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/CF-855.17/
H A DCFURL.c2368 If useCompatibilityMode is true, the rules historically used on the web are used to resolve relativeString against baseURL - these rules are generally listed in the RFC as optional or alternate interpretations. Otherwise, the strict rules from the RFC are used.
2390 CFStringRef relativeString; local
2392 relativeString = CFStringCreateWithBytes(alloc, relativeURLBytes, length, encoding, false);
2393 if ( relativeString != NULL ) {
2395 absString = relativeString;
2398 if ( CFStringGetLength(relativeString) > 0 ) {
2399 ch = CFStringGetCharacterAtIndex(relativeString, 0);
2409 absString = CFStringCreateMutable(alloc, CFStringGetLength(baseString) + CFStringGetLength(relativeString));
2411 CFStringAppend((CFMutableStringRef)absString, relativeString);
2417 _parseComponents(alloc, relativeString, baseUR
[all...]

Completed in 75 milliseconds