HomeSort by relevance Sort by last modified time
    Searched full:isframework (Results 1 - 25 of 45) sorted by null

1 2

  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
StyleResourceValue.java 35 public StyleResourceValue(ResourceType type, String name, boolean isFramework) {
36 super(type, name, isFramework);
40 boolean isFramework) {
41 super(type, name, isFramework);
61 return mItems.get(Pair.of(name, isFramework()));
ResourceReference.java 32 * @param isFramework whether the reference is to a framework resource.
34 public ResourceReference(String name, boolean isFramework) {
36 mIsFramework = isFramework;
58 public final boolean isFramework() {
AttrResourceValue.java 36 public AttrResourceValue(ResourceType type, String name, boolean isFramework) {
37 super(type, name, isFramework);
ResourceValue.java 30 public ResourceValue(ResourceType type, String name, boolean isFramework) {
31 super(name, isFramework);
35 public ResourceValue(ResourceType type, String name, String value, boolean isFramework) {
36 super(name, isFramework);
82 + " (framework:" + isFramework() + ")]"; //$NON-NLS-1$ //$NON-NLS-2$
DensityBasedResourceValue.java 28 com.android.resources.Density density, boolean isFramework) {
29 super(type, name, value, isFramework);
54 + " (density:" + mDensity +", framework:" + isFramework() + ")]";
DeclareStyleableResourceValue.java 40 public DeclareStyleableResourceValue(ResourceType type, String name, boolean isFramework) {
41 super(type, name, isFramework);
  /sdk/ide_common/src/com/android/ide/common/resources/
InlineResourceItem.java 57 boolean isFramework) {
60 mValue = new ResourceValue(type, getName(), isFramework);
ValueResourceParser.java 58 public ValueResourceParser(IValueResourceRepository repository, boolean isFramework) {
60 mIsFramework = isFramework;
143 boolean isFramework = mIsFramework;
146 isFramework = true;
149 mCurrentAttr = new AttrResourceValue(ResourceType.ATTR, name, isFramework);
IdGeneratingResourceFile.java 146 IdResourceParser parser = new IdResourceParser(this, context, isFramework());
196 file.getOsLocation(), isFramework());
202 isFramework());
IdResourceParser.java 49 * @param isFramework true if scanning a framework resource
52 boolean isFramework) {
55 mIsFramework = isFramework;
ResourceFile.java 70 public final boolean isFramework() {
SingleResourceFile.java 64 file.getOsLocation(), isFramework());
71 isFramework());
  /external/clang/include/clang/Frontend/
HeaderSearchOptions.h 45 unsigned IsFramework : 1;
65 bool isUserSupplied, bool isFramework, bool ignoreSysRoot,
68 IsFramework(isFramework), IgnoreSysRoot(ignoreSysRoot),
115 bool IsUserSupplied, bool IsFramework, bool IgnoreSysRoot,
117 UserEntries.push_back(Entry(Path, Group, IsUserSupplied, IsFramework,
  /external/clang/include/clang/Lex/
DirectoryLookup.h 68 bool isUser, bool isFramework)
70 LookupType(isFramework ? LT_Framework : LT_NormalDir),
99 return isFramework() ? u.Dir : 0;
109 /// isFramework - True if this is a framework directory.
111 bool isFramework() const { return getLookupType() == LT_Framework; }
ModuleMap.h 164 /// \param IsFramework Whether this is a framework module.
171 bool IsFramework,
  /sdk/layoutlib_api/src/com/android/layoutlib/api/
IResourceValue.java 47 boolean isFramework();
  /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 359 boolean isFramework = header.startsWith(ANDROID_LAYOUT_PREFIX);
361 isFramework));
365 boolean isFramework = footer.startsWith(ANDROID_LAYOUT_PREFIX);
367 isFramework));
371 boolean isFramework = layout.startsWith(ANDROID_LAYOUT_PREFIX);
372 if (isFramework) {
378 binding.addItem(new DataBindingItem(layout, isFramework, 1));
385 true /* isFramework */, 1));
389 true /* isFramework */, 1));
395 true /* isFramework */, 1))
    [all...]
  /external/clang/include/clang/Basic/
Module.h 85 unsigned IsFramework : 1;
159 bool IsFramework)
161 IsAvailable(true), IsFromModuleFile(false), IsFramework(IsFramework),
168 bool IsFramework, bool IsExplicit);
203 if (Mod->IsFramework)
  /external/clang/lib/Basic/
Module.cpp 25 bool IsFramework, bool IsExplicit)
28 IsFramework(IsFramework), IsExplicit(IsExplicit), IsSystem(false),
180 if (IsFramework)
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 122 Bitmap bitmap = Bridge.getCachedBitmap(pathOut[0], true /*isFramework*/);
126 Bridge.setCachedBitmap(pathOut[0], bitmap, true /*isFramework*/);
294 ResourceValue value = res.findResValue(reference, false /*isFramework*/);
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 58 bool isFramework, bool IgnoreSysRoot = false);
103 bool isUserSupplied, bool isFramework,
139 isUserSupplied, isFramework)));
145 if (!isFramework) {
508 } else if (CurEntry.isFramework()) {
541 else if (CurEntry.isFramework())
636 else if (SearchList[i].isFramework())
658 E.IsFramework, E.IgnoreSysRoot);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 124 boolean isFramework = text.startsWith("@android:") || text.startsWith("?android:");
125 resValue = resolver.findResValue(text, isFramework);
130 isFramework = isFramework || value.startsWith("@android:") || value.startsWith("?android:");;
131 ResourceValue v = resolver.findResValue(text, isFramework);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 274 if (value.isFramework()) {
315 boolean isPlatformLayout = resource.isFramework();
323 this, resource.isFramework());
361 this, resource.isFramework());
754 * each attributes. The information is (name, isFramework)
766 boolean isFramework = false;
768 isFramework = true;
774 results.add(Pair.of(resolvedResource.getSecond(), isFramework));
787 * @return A (name, isFramework) pair describing the attribute if found. Returns null
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ColorUsageDetector.java 81 Node select, String type, String name, boolean isFramework) {

Completed in 530 milliseconds

1 2