/external/clang/include/clang/Lex/ |
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; }
|
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));
|
/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...] |
/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...] |
/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...] |
/prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.2.0/ |
layoutlib-api-22.2.0.jar | |
/prebuilts/misc/common/layoutlib_api/ |
layoutlib_api-prebuilt.jar | |
/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()) {
|
/prebuilts/devtools/tools/lib/ |
layoutlib-api.jar | |
sdk-common.jar | |
lint-api.jar | |
lint-checks.jar | |
/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...] |
/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);
|
/external/clang/lib/Lex/ |
HeaderSearch.cpp | 143 if (SearchDirs[Idx].isFramework()) { 214 if (isFramework()) 265 if (isFramework()) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
BridgeXmlPullAttributes.java | 269 if (mPlatformFile || resource.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...] |