Home
last modified time | relevance | path

Searched refs:NSBundle (Results 1 – 25 of 48) sorted by relevance

12

/external/chromium_org/base/mac/
Dbundle_locations.mm14 // NSBundle isn't threadsafe, all functions in this file must be called on the
16 static NSBundle* g_override_framework_bundle = nil;
17 static NSBundle* g_override_outer_bundle = nil;
19 NSBundle* MainBundle() {
20 return [NSBundle mainBundle];
24 NSBundle* bundle = MainBundle();
28 NSBundle* OuterBundle() {
31 return [NSBundle mainBundle];
35 NSBundle* bundle = OuterBundle();
39 NSBundle* FrameworkBundle() {
[all …]
Dbundle_locations.h14 class NSBundle; variable
48 BASE_EXPORT NSBundle* MainBundle();
50 BASE_EXPORT NSBundle* OuterBundle();
52 BASE_EXPORT NSBundle* FrameworkBundle();
57 BASE_EXPORT void SetOverrideOuterBundle(NSBundle* bundle);
58 BASE_EXPORT void SetOverrideFrameworkBundle(NSBundle* bundle);
/external/chromium_org/chrome/common/
Dchrome_paths_internal.h14 @class NSBundle;
16 class NSBundle; variable
94 NSBundle* OuterAppBundle();
102 bool GetUserDataDirectoryForBrowserBundle(NSBundle* bundle,
Dchrome_paths_mac.mm29 // Return a retained (NOT autoreleased) NSBundle* as the internal
32 NSBundle* OuterAppBundleInternal() {
42 return [[NSBundle mainBundle] retain];
51 return [[NSBundle bundleWithPath:outer_app_dir_ns] retain];
55 char* ProductDirNameForBundle(NSBundle* chrome_bundle) {
203 // It's tempting to use +[NSBundle bundleWithIdentifier:], but it's really
206 // itself takes 1-2ms. Getting an NSBundle from a path, on the other hand,
210 // is the approach that is used here. NSBundle is also documented as being
234 NSBundle* OuterAppBundle() {
237 static NSBundle* bundle = OuterAppBundleInternal();
[all …]
/external/chromium_org/base/
Dfile_version_info_mac.h14 @class NSBundle;
16 class NSBundle; variable
21 explicit FileVersionInfoMac(NSBundle *bundle);
48 base::scoped_nsobject<NSBundle> bundle_;
Dfile_version_info_mac.mm15 FileVersionInfoMac::FileVersionInfoMac(NSBundle *bundle)
30 NSBundle* bundle = [NSBundle bundleWithPath:path];
/external/chromium_org/content/renderer/
Drenderer_main_platform_delegate.h19 @class NSBundle;
21 class NSBundle; variable
45 NSBundle* sandbox_tests_bundle_;
/external/clang/test/SemaObjC/
Dproperty-6.m46 @interface NSBundle : NSObject {} interface
47 + (NSBundle *)bundleForClass:(Class)aClass;
64 NSBundle *frameworkBundle = [NSBundle bundleForClass:[DTPlugInManager class]];
/external/chromium_org/media/base/mac/
Davfoundation_glue.mm17 // This class is used to retrieve AVFoundation NSBundle and library handle. It
24 bundle_ = [NSBundle
59 NSBundle* bundle() const { return bundle_; }
86 NSBundle* bundle_;
134 NSBundle const* AVFoundationGlue::AVFoundationBundle() {
Dvideotoolbox_glue.mm71 NSBundle* bundle = [NSBundle
/external/clang/test/Analysis/
DMissingDealloc.m102 @interface NSBundle : NSObject {} interface
103 + (NSBundle *)bundleForClass:(Class)aClass;
109 resourcePath = [[NSBundle bundleForClass:[self class]] resourcePath];
Dself-init.m45 @interface NSBundle : NSObject interface
114 [NSBundle loadNibNamed:@"Window" owner:self];
119 [NSBundle loadNibNamed:@"Window" owner:myivar]; // no-warning
/external/chromium_org/remoting/base/
Dbreakpad_mac.mm18 NSBundle* main_bundle = [NSBundle mainBundle];
27 [[NSBundle bundleWithPath:reporter_bundle_location] executablePath];
/external/chromium_org/third_party/skia/src/utils/ios/
DSkStream_NSData.mm19 NSBundle* bundle = [NSBundle mainBundle];
DSkOSFile_iOS.mm41 NSBundle* bundle = [NSBundle mainBundle];
/external/skia/src/utils/ios/
DSkStream_NSData.mm19 NSBundle* bundle = [NSBundle mainBundle];
DSkOSFile_iOS.mm41 NSBundle* bundle = [NSBundle mainBundle];
/external/chromium_org/chrome/common/importer/
Dfirefox_importer_utils_mac.mm36 NSBundle *ff_bundle =
37 [NSBundle bundleWithPath:[base::mac::CFToNSCast(appURL) path]];
/external/lldb/tools/lldb-perf/darwin/formatters/
Dfmts_tester.mm43 NSArray* bundles = [NSBundle allBundles];
44 NSArray* frameworks = [NSBundle allFrameworks];
/external/chromium_org/chrome/common/mac/
Dapp_mode_chrome_locator.mm41 NSBundle* cr_bundle = [NSBundle bundleWithPath:cr_bundle_path];
/external/chromium_org/remoting/host/mac/
Dme2me_preference_pane_disable.mm13 bundle:[NSBundle bundleForClass:[self class]]];
Dme2me_preference_pane_confirm_pin.mm13 bundle:[NSBundle bundleForClass:[self class]]];
/external/chromium_org/chrome/app/
Dchrome_main_mac.mm25 NSBundle* base_bundle = chrome::OuterAppBundle();
/external/chromium_org/remoting/host/
Dcontinue_window_mac.mm129 NSBundle *bundle = [NSBundle bundleForClass:[self class]];
/external/lldb/test/functionalities/data-formatter/data-formatter-objc/
Dmain.m513NSBundle* bundle_string = [[NSBundle alloc] initWithPath:@"/System/Library/Frameworks/Accelerate.f…
514NSBundle* bundle_url = [[NSBundle alloc] initWithURL:[[NSURL alloc] initWithString:@"file://localh…
516 NSBundle* main_bundle = [NSBundle mainBundle];
518 NSArray* bundles = [NSBundle allBundles];
522 for (NSBundle* bundle in bundles)

12