/external/clang/include/clang/Lex/ |
HeaderSearchOptions.h | 50 unsigned IsFramework : 1; 57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, 59 : Path(path), Group(group), IsFramework(isFramework), 149 bool IsFramework, bool IgnoreSysRoot) { 150 UserEntries.push_back(Entry(Path, Group, IsFramework, IgnoreSysRoot));
|
DirectoryLookup.h | 69 bool isFramework) 71 LookupType(isFramework ? LT_Framework : LT_NormalDir), 100 return isFramework() ? u.Dir : 0; 110 /// isFramework - True if this is a framework directory. 112 bool isFramework() const { return getLookupType() == LT_Framework; }
|
ModuleMap.h | 251 /// \param IsFramework Whether this is a framework module. 258 bool IsFramework,
|
/external/clang/include/clang/Basic/ |
Module.h | 107 unsigned IsFramework : 1; 189 LinkLibrary() : IsFramework(false) { } 190 LinkLibrary(const std::string &Library, bool IsFramework) 191 : Library(Library), IsFramework(IsFramework) { } 200 bool IsFramework; 238 bool IsFramework) 240 IsAvailable(true), IsFromModuleFile(false), IsFramework(IsFramework), 248 bool IsFramework, bool IsExplicit) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
ResourceHelper.java | 126 parser, context, resValue.isFramework()); 187 new FileInputStream(file), density, value.isFramework(), 206 parser, context, value.isFramework()); 230 value.isFramework() ? null : context.getProjectKey()); 236 value.isFramework() ? null : context.getProjectKey()); 263 boolean isFramework, String cacheKey, BridgeContext context) throws IOException { 266 isFramework ? null : context.getProjectKey()); 268 isFramework ? null : context.getProjectKey()); 280 isFramework ? null : context.getProjectKey()); 289 isFramework ? null : context.getProjectKey()) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutMetadata.java | 370 boolean isFramework = header.startsWith(ANDROID_LAYOUT_RESOURCE_PREFIX); 372 isFramework)); 376 boolean isFramework = footer.startsWith(ANDROID_LAYOUT_RESOURCE_PREFIX); 378 isFramework)); 382 boolean isFramework = layout.startsWith(ANDROID_LAYOUT_RESOURCE_PREFIX); 383 if (isFramework) { 389 binding.addItem(new DataBindingItem(layout, isFramework, 1)); 396 true /* isFramework */, 1)); 400 true /* isFramework */, 1)); 406 true /* isFramework */, 1)) [all...] |
/external/clang/lib/Basic/ |
Module.cpp | 26 bool IsFramework, bool IsExplicit) 29 IsFramework(IsFramework), IsExplicit(IsExplicit), IsSystem(false), 265 if (IsFramework) 368 if (LinkLibraries[I].IsFramework)
|
/external/clang/lib/Frontend/ |
InitHeaderSearch.cpp | 58 void AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework); 63 bool isFramework); 121 bool isFramework) { 128 AddUnmappedPath(IncludeSysroot + Path, Group, isFramework); 133 AddUnmappedPath(Path, Group, isFramework); 137 bool isFramework) { 157 std::make_pair(Group, DirectoryLookup(DE, Type, isFramework))); 163 if (!isFramework) { 528 } else if (CurEntry.isFramework()) { 561 else if (CurEntry.isFramework()) [all...] |
CompilerInvocation.cpp | [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/ |
CustomBar.java | 142 Bitmap bitmap = Bridge.getCachedBitmap(pathOut[0], true /*isFramework*/); 146 Bridge.setCachedBitmap(pathOut[0], bitmap, true /*isFramework*/); 318 ResourceValue value = res.findResValue(reference, false /*isFramework*/);
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
BridgeContext.java | 282 if (value.isFramework()) { 323 boolean isPlatformLayout = resource.isFramework(); 331 this, resource.isFramework()); 369 this, resource.isFramework()); 762 * each attributes. The information is (name, isFramework) 774 boolean isFramework = false; 776 isFramework = true; 782 results.add(Pair.of(resolvedResource.getSecond(), isFramework)); 795 * @return A (name, isFramework) pair describing the attribute if found. Returns null [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
BridgeTypedArray.java | 74 * @param isFramework whether the attribute is in the android namespace. 77 public void bridgeSetValue(int index, String name, boolean isFramework, ResourceValue value) { 80 mIsFramework[index] = isFramework; 371 parser, mContext, resValue.isFramework()); 681 if (mPlatformFile || resValue.isFramework()) { 736 if (resValue.isFramework()) {
|
/external/clang/lib/Lex/ |
ModuleMap.cpp | 234 Result = findOrCreateModule(Name, Result, /*IsFramework=*/false, 250 Result = findOrCreateModule(Name, Result, /*IsFramework=*/false, 381 ModuleMap::findOrCreateModule(StringRef Name, Module *Parent, bool IsFramework, 388 Module *Result = new Module(Name, SourceLocation(), Parent, IsFramework, 428 assert(Mod->IsFramework && "Can only infer linking for framework modules"); 437 /*IsFramework=*/true)); 520 /*IsFramework=*/true, /*IsExplicit=*/false); [all...] |
HeaderSearch.cpp | 143 if (SearchDirs[Idx].isFramework()) { 214 if (isFramework()) 265 if (isFramework()) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
XmlPropertyEditor.java | 143 boolean isFramework = text.startsWith(ANDROID_PREFIX) 145 resValue = resolver.findResValue(text, isFramework); 151 isFramework = isFramework 154 ResourceValue v = resolver.findResValue(text, isFramework);
|
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
BridgeXmlPullAttributes.java | 269 if (mPlatformFile || resource.isFramework()) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
ProjectCallback.java | 507 if (itemRef.isFramework()) { 621 true /* isFramework */, 1)); 624 true /* isFramework */, 1)); 627 true /* isFramework */, 1));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/ |
ResourceHelper.java | 553 boolean isFramework = color.isFramework(); 554 color = resources.findResValue(value, isFramework);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
bundlebuilder.py | 346 def isFramework(): 441 if not self.standalone and not isFramework(): 453 if self.standalone and isFramework(): [all...] |
/prebuilts/misc/common/layoutlib_api/ |
layoutlib_api-prebuilt.jar | |
/prebuilts/devtools/tools/lib/ |
layoutlib-api.jar | |
sdk-common.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
Hyperlinks.java | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractStyleRefactoring.java | 568 if (resolvedValue.isFramework()) {
|
/external/clang/lib/Serialization/ |
ASTWriter.cpp | [all...] |