/external/bluetooth/bluedroid/bta/av/ |
bta_av_ci.c | 70 void bta_av_ci_setconfig(tBTA_AV_HNDL hndl, UINT8 err_code, UINT8 category, 81 p_buf->category = category;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
text_unittest.py | 43 def error_for_test(line_number, category, confidence, message): 54 def error_for_test(line_number, category, confidence, message): 57 self.assertEqual('whitespace/tab', category)
|
/external/chromium_org/tools/telemetry/telemetry/timeline/ |
event.py | 15 def __init__(self, category, name, start, duration, thread_start=None, 17 self.category = category
|
process.py | 59 def GetCounter(self, category, name): 60 counter_id = category + '.' + name 66 def GetOrCreateCounter(self, category, name): 68 return self.GetCounter(category, name) 70 ctr = tracing_counter.Counter(self, category, name)
|
counter.py | 52 def __init__(self, parent, category, name): 54 self.category = category 55 self.full_name = category + '.' + name
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
BasicRegisterMapper.java | 113 * @param category {@code 1..2;} width of reg 115 public void addMapping(int oldReg, int newReg, int category) { 125 if (runningCountNewRegisters < (newReg + category)) { 126 runningCountNewRegisters = newReg + category;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/ |
PropertyCategory.java | 11 package org.eclipse.wb.internal.core.model.property.category; 17 * Describes category of {@link Property}. 24 * "Normal" category, used for properties that should be displayed without any effect. 28 * "Preferred" category, for properties that are most useful for component. 32 * "Advanced" category, for properties that are rarely used, visible if modified, even if not 37 * "Advanced" category, for properties that are rarely used, visible only if enabled. 41 * "Hidden" category, for properties that should not be displayed. 101 PropertyCategory category = (PropertyCategory) obj; local 102 return m_priority == category.m_priority; 154 * @return the priority of this category [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
TimelineUIUtils.js | 227 label.className = "timeline-aggregated-category timeline-" + index; 260 // In case of self time, first add self, then children of the same category. 265 rowElement.createChild("div", "timeline-aggregated-category timeline-" + selfCategory.name); 268 // Children of the same category. 274 rowElement.createChild("div", "timeline-aggregated-category timeline-" + selfCategory.name); 281 var category = WebInspector.TimelineUIUtils.categories()[categoryName]; 282 if (category === selfCategory) 284 var value = aggregatedStats[category.name]; 287 pieChart.addSlice(value, category.fillColorStop0); 289 rowElement.createChild("div", "timeline-aggregated-category timeline-" + category.name) [all...] |
TimelineUIUtilsImpl.js | 90 return WebInspector.TimelineUIUtilsImpl.recordStyle(record).category; 189 * @return {!Object.<string, !{title: string, category: !WebInspector.TimelineCategory}>} 200 recordStyles[recordTypes.Root] = { title: "#root", category: categories["loading"] }; 201 recordStyles[recordTypes.Program] = { title: WebInspector.UIString("Other"), category: categories["other"] }; 202 recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: categories["scripting"] }; 203 recordStyles[recordTypes.BeginFrame] = { title: WebInspector.UIString("Frame Start"), category: categories["rendering"] }; 204 recordStyles[recordTypes.ScheduleStyleRecalculation] = { title: WebInspector.UIString("Schedule Style Recalculation"), category: categories["rendering"] }; 205 recordStyles[recordTypes.RecalculateStyles] = { title: WebInspector.UIString("Recalculate Style"), category: categories["rendering"] }; 206 recordStyles[recordTypes.InvalidateLayout] = { title: WebInspector.UIString("Invalidate Layout"), category: categories["rendering"] }; 207 recordStyles[recordTypes.Layout] = { title: WebInspector.UIString("Layout"), category: categories["rendering"] } [all...] |
/dalvik/dx/src/com/android/dx/ssa/back/ |
FirstFitLocalCombiningAllocator.java | 296 // Compute max category for remaining unmapped registers. 300 int category = ssaSpec.getCategory(); local 302 && category > maxCategory) { 303 maxCategory = category; 325 * @param maxAllowedCategory {@code 1..2;} maximum category 345 // the widest category used, but <shrug> 357 * @param maxAllowedCategory {@code 1..2;} the maximum category 377 * @param category {@code > 0;} width to reserve 379 private void markReserved(int ropReg, int category) { 380 reservedRopRegs.set(ropReg, ropReg + category, true) 567 int category = checkRegSpec.getCategory(); local 634 int category = ssaSpec.getCategory(); local 673 int category = ssaSpec.getCategory(); local 784 int category = ssaSpec.getCategory(); local 785 mapper.addMapping(ssaSpec.getReg(), ropReg, category); local 808 int category = source.getCategory(); local 865 int category = sources.get(i).getCategory(); local 1042 int category = categoriesForIndex[i]; local 1132 int category = result.getCategory(); local [all...] |
/external/chromium_org/tools/sheriffing/ |
functions.js | 68 * Organizes all of the bots by category, then alphabetically within their 72 // Bucket all of the bots according to their category. 77 var category = botInfo[botName].category; 79 if (!bucketedNames[category]) bucketedNames[category] = []; 80 bucketedNames[category].push(botName); 89 var category = allCategories[i]; 90 var bucketBots = bucketedNames[category];
|
botinfo.js | 6 function BotInfo(name, category) { 7 // Chop off any digits at the beginning of category names. 8 if (category && category.length > 0) { 9 var splitterIndex = category.indexOf('|'); 11 category = category.substr(0, splitterIndex); 14 while (category[0] >= '0' && category[0] <= '9') { 15 category = category.substr(1, category.length) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/ |
AuditLauncherView.js | 43 this._categoryIdPrefix = "audit-category-item-"; 102 * @param {!WebInspector.AuditCategory} category 104 addCategory: function(category) 110 var categoryElement = this._createCategoryElement(category.displayName, category.id); 111 category._checkboxElement = categoryElement.firstChild; 112 if (this._selectAllCheckboxElement.checked || selectedCategories[category.displayName]) { 113 category._checkboxElement.checked = true; 128 var insertBefore = insertionIndexForObjectInListSortedByFunction(category, this._sortedCategories, compareCategories); 130 this._sortedCategories.splice(insertBefore, 0, category); [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
FirstFitLocalCombiningAllocator.java | 248 // Compute max category for remaining unmapped registers. 252 int category = ssaSpec.getCategory(); local 254 && category > maxCategory) { 255 maxCategory = category; 277 * @param maxAllowedCategory {@code 1..2;} maximum category 297 // the widest category used, but <shrug> 309 * @param maxAllowedCategory {@code 1..2;} the maximum category 329 * @param category {@code > 0;} width to reserve 331 private void markReserved(int ropReg, int category) { 332 reservedRopRegs.set(ropReg, ropReg + category, true) 488 int category = checkRegSpec.getCategory(); local 555 int category = ssaSpec.getCategory(); local 594 int category = ssaSpec.getCategory(); local 705 int category = ssaSpec.getCategory(); local 706 mapper.addMapping(ssaSpec.getReg(), ropReg, category); local 729 int category = source.getCategory(); local 786 int category = sources.get(i).getCategory(); local 929 int category = categoriesForIndex[i]; local 1019 int category = result.getCategory(); local [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
nav_description.js | 28 category: (undefined|string)}} kwargs The arguments for this 41 * category Optional category (for speech queueing behavior). 52 this.category = kwargs.category ? kwargs.category : null; 76 (this.category ? '" category="' + this.category + '")' : '') + 144 if (this.category) { [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_list_data_source.py | 31 APIListDataSource, category=self._platform_bundle.GetIdentity()) 70 category = self._platform_bundle.GetAPICategorizer( 72 if category == 'chrome': 79 platform_dict[category][channel].append(api) 81 elif category == 'experimental': 84 elif category == 'private':
|
object_store_creator.py | 49 category=None, 62 for component in (category, app_version): 69 ('category', category),
|
/external/fio/engines/ |
cpu.c | 24 .category = FIO_OPT_C_GENERAL, 36 .category = FIO_OPT_C_GENERAL, 46 .category = FIO_OPT_C_GENERAL,
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
OpenGLES20NativeActivityOne.java | 88 public OpenGLES20View(Context context, int category, int testCase, CountDownLatch latch) { 91 mRenderer = new GL2Renderer(category, testCase, latch); 114 public GL2Renderer(int category, int testcase, CountDownLatch latch) { 115 this.mCategory = category;
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/ |
VideoProvider.java | 44 private static String TAG_CATEGORY = "category"; 108 Log.d(TAG, "category #: " + categories.length()); 115 JSONObject category = categories.getJSONObject(i); local 116 String category_name = category.getString(TAG_CATEGORY); 117 JSONArray videos = category.getJSONArray(TAG_MEDIA); 119 "category: " + i + " Name:" + category_name + " video length: " 148 private static Movie buildMovieInfo(String category, String title, 157 movie.setCategory(category); 165 private static String getVideoPrefix(String category, String videoUrl) { 167 ret = mPrefixUrl + category.replace(" ", "%20") + '/' [all...] |
/developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/ |
QueueHelper.java | 40 // extract the category and unique music ID from the media ID: 41 String[] category = MediaIDHelper.extractBrowseCategoryFromMediaID(mediaId); local 43 // This sample only supports genre category. 44 if (!category[0].equals(MEDIA_ID_MUSICS_BY_GENRE) || category.length != 2) { 49 String categoryValue = category[1];
|
/developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/ |
QueueHelper.java | 40 // extract the category and unique music ID from the media ID: 41 String[] category = MediaIDHelper.extractBrowseCategoryFromMediaID(mediaId); local 43 // This sample only supports genre category. 44 if (!category[0].equals(MEDIA_ID_MUSICS_BY_GENRE) || category.length != 2) { 49 String categoryValue = category[1];
|
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/ |
QueueHelper.java | 40 // extract the category and unique music ID from the media ID: 41 String[] category = MediaIDHelper.extractBrowseCategoryFromMediaID(mediaId); local 43 // This sample only supports genre category. 44 if (!category[0].equals(MEDIA_ID_MUSICS_BY_GENRE) || category.length != 2) { 49 String categoryValue = category[1];
|
/docs/source.android.com/scripts/ |
build.py | 57 category = 'home' variable 66 # Step A: split path, and update cached category name if needed 71 category = outdir[-1] 116 sidebar3=sidebar3, category=category, title=get_title(absfilename))
|
/external/chromium_org/chrome/utility/media_galleries/ |
picasa_album_table_reader.cc | 77 uint32 category = kAlbumCategoryInvalid; local 83 if (!category_column.ReadUInt32(i, &category) || 92 if (category == kAlbumCategoryAlbum) { 100 } else if (category == kAlbumCategoryFolder) {
|