/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
changelog_unittest.py | 36 def handle_style_error(line_number, category, confidence, message): 37 self.fail('Unexpected error: %d %s %d %s for\n%s' % (line_number, category, confidence, message, changelog_data)) 45 def handle_style_error(line_number, category, confidence, message): 48 self.assertEquals(expected_category, category)
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/sources/ |
SdkSources.java | 62 public void add(SdkSourceCategory category, SdkSource source) { 64 ArrayList<SdkSource> list = mSources.get(category); 67 mSources.put(category, list); 99 * Removes all the sources in the given category. 104 public void removeAll(SdkSourceCategory category) { 106 mSources.remove(category); 136 * Returns a new array of sources attached to the given category. 139 public SdkSource[] getSources(SdkSourceCategory category) { 141 ArrayList<SdkSource> list = mSources.get(category); 191 * Returns the category of a given source, or null if the source is unknown [all...] |
/external/clang/tools/libclang/ |
CXLoadedDiagnostic.h | 27 severity(0), category(0) {} 43 /// \brief Return the category of the diagnostic. 46 /// \brief Return the category string of the diagnostic. 90 unsigned category; member in class:clang::CXLoadedDiagnostic
|
/frameworks/base/telephony/java/android/telephony/cdma/ |
CdmaSmsCbProgramResults.java | 23 * CDMA Service Category Program Results from SCPT teleservice SMS. 38 /** Program result: category already opted in. */ 41 /** Program result: category already opted in. */ 50 /** Program result: invalid service category name. */ 56 /** Service category to modify. */ 59 /** Language used for service category name (defined in BearerData.LANGUAGE_*). */ 62 /** Result of service category programming for this category. */ 66 public CdmaSmsCbProgramResults(int category, int language, int categoryResult) { 67 mCategory = category; [all...] |
CdmaSmsCbProgramData.java | 23 * CDMA Service Category Program Data from SCPT teleservice SMS. 33 /** Delete the specified service category from the list of enabled categories. */ 36 /** Add the specified service category to the list of enabled categories. */ 78 /** Service category operation (add/delete/clear). */ 81 /** Service category to modify. */ 84 /** Language used for service category name (defined in BearerData.LANGUAGE_*). */ 87 /** Maximum number of messages to store for this service category. */ 90 /** Service category alert option. */ 93 /** Name of service category. */ 97 public CdmaSmsCbProgramData(int operation, int category, int language, int maxMessages [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
gettext.h | 73 # define dcgettext(Domainname, Msgid, Category) \ 74 ((void) (Category), dgettext (Domainname, Msgid)) 84 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ 85 ((void) (Category), dngettext(Domainname, Msgid1, Msgid2, N)) 122 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ 123 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category) 133 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ 134 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category) 146 int category) 148 const char *translation = dcgettext (domain, msg_ctxt_id, category); [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
EffectType.java | 36 * Gets effects for the specified category, either image or video. 39 * @param category The category 41 * @return The array of effects of the specified category 43 public static EffectType[] getEffects(Context context, int category) { 46 switch (category) {
|
/tools/motodev/src/plugins/android/src/com/motorola/studio/android/wizards/project/ |
TreeLabelProvider.java | 35 private static final Image category = new Image(null, PlatformUI.getWorkbench() field in class:TreeLabelProvider 66 image = category;
|
/external/icu4c/common/ |
rbbi.cpp | 960 int16_t category = 0; local 1172 int16_t category = 0; local 1619 uint16_t category; local [all...] |
/frameworks/base/services/java/com/android/server/ |
UiModeManagerService.java | 93 static Intent buildHomeIntent(String category) { 95 intent.addCategory(category); 405 String category = null; local 409 category = Intent.CATEGORY_CAR_DOCK; 414 category = Intent.CATEGORY_DESK_DOCK; 418 category = Intent.CATEGORY_HOME; 424 + mDockState +", category=" + category); 427 sendConfigurationAndStartDreamOrDockAppLocked(category); 445 String category = null local [all...] |
/external/llvm/include/llvm/ADT/ |
APFloat.h | 169 // Category of internally-represented number. 320 fltCategory getCategory() const { return category; } 322 bool isZero() const { return category == fcZero; } 323 bool isNonZero() const { return category != fcZero; } 324 bool isNormal() const { return category == fcNormal; } 325 bool isNaN() const { return category == fcNaN; } 326 bool isInfinity() const { return category == fcInfinity; } 454 fltCategory category: 3;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
PropertyFactory.java | 43 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 61 * these, and sometimes combining them into {@link ComplexProperty} category 199 // some (such as properties in the same category, and the layout params etc) 202 PropertyCategory category = PropertyCategory.NORMAL; local 205 category = PropertyCategory.PREFERRED; 215 category = PropertyCategory.PREFERRED; 217 category = PropertyCategory.ADVANCED; 220 if (category != null) { 221 property.setCategory(category); 304 // both, etc.) Also, set the category to Normal such that we don't draw attentio 316 String category = attributeInfo.getDefinedBy(); local 466 String category = PropertyMetadata.getCategory(firstName); local [all...] |
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/ |
PropertyViewer.java | 61 String category = (String) parentElement; local 64 if (category.equals(ViewNode.MISCELLANIOUS)) { 102 String category = (String) element; local 104 if (category.equals(ViewNode.MISCELLANIOUS)) { 155 String category = (String) element; local 156 return Character.toUpperCase(category.charAt(0)) + category.substring(1);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
AuditsPanel.js | 99 addCategory: function(category) 101 this.categoriesById[category.id] = category; 102 this._launcherView.addCategory(category); 148 var category = categories[i]; 149 var result = new WebInspector.AuditCategoryResult(category); 151 category.run(resources, ruleResultReadyCallback.bind(null, result)); 358 WebInspector.AuditCategoryResult = function(category) 360 this.title = category.displayName;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
Property.java | 15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 72 // Category 87 public final void setCategory(PropertyCategory category) { 88 m_category = category;
|
/frameworks/base/core/java/android/hardware/display/ |
DisplayManager.java | 68 * Display category: Presentation displays. 70 * This category can be used to identify secondary displays that are suitable for 79 "android.hardware.display.category.PRESENTATION"; 112 * Gets all currently valid logical displays of the specified category. 114 * When there are multiple displays in a category the returned displays are sorted 115 * of preference. For example, if the requested category is 122 * @param category The requested display category or null to return all displays. 127 public Display[] getDisplays(String category) { 131 if (category == null) [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ExecutionStack.java | 157 int category; local 161 category = type.getType().getCategory(); 167 if ((stackPtr + category) > stack.length) { 172 if (category == 2) { 194 * deeper half of a category-2 value. 266 * values with other values of the same category.
|
/external/regex-re2/re2/ |
unicode.py | 275 """Returns dict mapping category names to code lists. 281 dict mapping category names to code lists 288 category = fields[2] 289 categories.setdefault(category, []).extend(codes) 291 if len(category) > 1: 292 short = category[0]
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
intl.h | 27 # define setlocale(category, locale) (locale)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
intl.h | 27 # define setlocale(category, locale) (locale)
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
intl.h | 27 # define setlocale(category, locale) (locale)
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
intl.h | 27 # define setlocale(category, locale) (locale)
|
/tools/motodev/src/plugins/installer/src/com/motorola/studio/android/installer/utilities/ |
IInstallManager.java | 41 * Which category should be used
44 public enum CATEGORY
54 * @param category
61 CATEGORY category, BACKEND backEnd, IProgressMonitor monitor) throws InstallerException;
|
InstallManager.java | 95 * @see com.motorola.studio.android.installer.utilities.IInstallManager#listAllAvailableUpdates(java.util.Collection, java.util.List, com.motorola.studio.android.installer.utilities.IInstallManager.CATEGORY, com.motorola.studio.android.installer.utilities.IInstallManager.BACKEND, org.eclipse.core.runtime.IProgressMonitor)
98 CATEGORY category, BACKEND backEnd, IProgressMonitor monitor) throws InstallerException
106 p2Installer.listAllAvailableUpdates(listToFill, links, category, backEnd,
|
/external/e2fsprogs/intl/ |
dcigettext.c | 227 /* The category. */ 228 int category; member in struct:known_translation_t 271 /* We compare the category last (though this is the cheapest 274 result = s1->category - s2->category; 313 static const char *guess_category_value (int category, 318 # define category_to_name(category) _nl_category_names[category] 320 static const char *category_to_name (int category) internal_function; 425 CATEGORY locale and, if PLURAL is nonzero, search over strin [all...] |