/external/clang/test/SemaObjC/ |
property-category-impl.m | 4 /* This test is for categories which don't implement the accessors but some accessors are
|
/external/deqp/data/gles3/shaders/ |
negative.test | 1 # Generic invalid cases that don't fall into other categories
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
NullRegisterAllocator.java | 29 * about normal or wide categories. Used for debugging.
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
PropertyManager.java | 25 // categories here based on toolkits; in ADT we'll need to do it differently
|
/external/libogg/doc/libogg/ |
overview.html | 19 The libogg API consists of the following functional categories:
|
/external/sepolicy/ |
mls_macros | 40 # levels from s0 to (N-1) with categories c0 to (M-1)
|
/frameworks/base/core/java/android/content/ |
package.html | 5 categories of APIs:</p>
|
/frameworks/base/docs/html-intl/intl/ja/training/multiscreen/ |
adaptui.jd | 102 final String CATEGORIES[] = { "??? ???? ??", "??", "??", "Technology" }; 110 for (i = 0; i < CATEGORIES.length; i++) { 112 CATEGORIES[i]).setTabListener(handler)); 120 R.layout.headline_item, CATEGORIES);
|
/frameworks/base/docs/html-intl/intl/ru/training/multiscreen/ |
adaptui.jd | 102 final String CATEGORIES[] = { "?????? ??????", "????????", "?????????", "??????? ??????????" }; 110 for (i = 0; i < CATEGORIES.length; i++) { 112 CATEGORIES[i]).setTabListener(handler)); 120 R.layout.headline_item, CATEGORIES);
|
/frameworks/base/docs/html-intl/intl/zh-cn/training/multiscreen/ |
adaptui.jd | 102 final String CATEGORIES[] = { "????", "??", "??", "Technology" }; 110 for (i = 0; i < CATEGORIES.length; i++) { 112 CATEGORIES[i]).setTabListener(handler)); 120 R.layout.headline_item, CATEGORIES);
|
/frameworks/base/tests/SmokeTest/src/com/android/smoketest/ |
SmokeTestActivity.java | 34 // TODO: partition into categories by label like the sample code app
|
/packages/apps/Settings/res/xml/ |
device_info_memory.xml | 22 <!-- Preference categories are dynamically created based on the list of available storage volumes -->
|
/frameworks/base/docs/html/design/patterns/ |
app-structure.jd | 174 <h2 id="categories">Categories</h2> 176 <p>Generally, the purpose of a deep, data-driven app is to navigate through organizational categories 183 <p>This can be successful if the categories are familiar or the number of categories is small. It has 185 attention. Navigating laterally between data-rich categories is more akin to a casual browsing 193 <p>If the categories are familiar, predictable, or closely related, use scrolling tabs (where not all 200 between categories, users can swipe left/right on the content. 206 <p>If the categories in the tabs are not closely related, favor fixed tabs, so that all categories ar [all...] |
/external/bluetooth/bluedroid/stack/avrc/ |
avrc_sdp.c | 201 ** categories: Supported categories. 213 char *p_provider_name, UINT16 categories, UINT32 sdp_handle) 256 /* add supported categories */ 258 UINT16_TO_BE_STREAM(p, categories);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
TimelineFrameOverview.js | 53 var categories = WebInspector.TimelineUIUtils.categories(); 54 for (var category in categories) 55 this._fillStyles[category] = WebInspector.TimelineUIUtils.createFillStyleForCategory(this._context, this._maxInnerBarWidth, 0, categories[category]); 240 var categories = Object.keys(WebInspector.TimelineUIUtils.categories()); 249 for (var i = 0, bottomOffset = windowHeight; i < categories.length; ++i) { 250 var category = categories[i]; 262 this._context.strokeStyle = WebInspector.TimelineUIUtils.categories()[category].borderColor;
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
Android.mk | [all...] |
/ndk/tests/device/test-libc++-static-full/jni/ |
Android.mk | [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/css/ |
wallpaper_manager.css | 55 #categories-list { 63 #categories-list > li { 73 #categories-list:not([disabled]) > li:hover { 78 #categories-list > li[selected] { 83 #categories-list > li > div { 88 #categories-list > li[selected] > div {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
filter.py | 39 of all available categories. 58 """Filters whether to check style categories.""" 98 are as follows. By default all categories should be checked. 111 should_check = True # All categories checked by default. 130 by itself would mean that all categories should be 264 categories should be checked. Then apply the filter rules in
|
/external/chromium_org/third_party/re2/re2/ |
unicode.py | 274 def Categories(unicode_dir=_UNICODE_DIR): 284 categories = {} 287 """Process single UnicodeData.txt line, updating categories.""" 289 categories.setdefault(category, []).extend(codes) 293 categories.setdefault(short, []).extend(codes) 296 return categories
|
/external/lldb/test/functionalities/data-formatter/data-formatter-categories/ |
TestDataFormatterCategories.py | 13 mydir = os.path.join("functionalities", "data-formatter", "data-formatter-categories") 48 # clean slate for the next test case (most of these categories do not 103 # Add summaries to two different categories and check that we can switch 252 # Check that our order of priority works. Start by clearing categories 317 # check that filters work into categories 327 # Now delete all categories
|
/external/regex-re2/re2/ |
unicode.py | 274 def Categories(unicode_dir=_UNICODE_DIR): 284 categories = {} 287 """Process single UnicodeData.txt line, updating categories.""" 289 categories.setdefault(category, []).extend(codes) 293 categories.setdefault(short, []).extend(codes) 296 return categories
|
/frameworks/base/services/core/java/com/android/server/ |
IntentResolver.java | 330 FastImmutableArraySet<String> categories = getFastIntentCategories(intent); local 334 buildResolveList(intent, categories, debug, defaultOnly, 413 FastImmutableArraySet<String> categories = getFastIntentCategories(intent); local 415 buildResolveList(intent, categories, debug, defaultOnly, 419 buildResolveList(intent, categories, debug, defaultOnly, 423 buildResolveList(intent, categories, debug, defaultOnly, 427 buildResolveList(intent, categories, debug, defaultOnly, 627 final Set<String> categories = intent.getCategories(); local 628 if (categories == null) { 631 return new FastImmutableArraySet<String>(categories.toArray(new String[categories.size()])) [all...] |
/docs/source.android.com/src/devices/tech/datausage/ |
kernel-overview.jd | 43 developer specified categories. Using these application level tags, an 44 application can profile the traffic into several sub-categories.</p>
|
/external/chromium-trace/trace-viewer/src/base/ |
settings.js | 30 * with this namespace, e.g. "categories.settingName". This is useful for 56 * with this namespace, e.g. "categories.settingName". This is useful for
|