/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaRouteDescriptor.java | 84 * Gets the user-visible description of the route. 86 * The route description describes the kind of destination represented by the route. 196 result.append(", description=").append(getDescription()); 293 * Sets the user-visible description of the route. 295 * The route description describes the kind of destination represented by the route. 299 public Builder setDescription(String description) { 300 mBundle.putString(KEY_DESCRIPTION, description);
|
/frameworks/testing/androidtestlib/tests/src/com/android/test/runner/ |
TestRequestBuilderTest.java | 30 import org.junit.runner.Description; 184 public void testRunStarted(Description description) throws Exception { 185 mTestCount = description.testCount();
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertReceiver.java | 412 String summaryText, String description, long startMillis, long endMillis, long eventId, 421 if (description != null) { 422 description = mBlankLinePattern.matcher(description).replaceAll(""); 423 description = description.trim(); 426 if (TextUtils.isEmpty(description)) { 434 stringBuilder.append(description); [all...] |
/packages/apps/Tag/canon/src/com/android/apps/tagcanon/ |
TagCanon.java | 115 throw new RuntimeException("Failed to create tag description", e); 150 TagDescription description = mAdapter.getItem(position); local 152 intent.putExtra(NfcAdapter.EXTRA_NDEF_MESSAGES, description.msgs);
|
/packages/apps/Tag/src/com/android/apps/tag/record/ |
VCardRecord.java | 94 String description = TextUtils.expandTemplate(template, getDisplayName()).toString(); local 96 return RecordUtils.getViewsForIntent(activity, inflater, parent, this, intent, description);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
regression.py | 68 self.assertEqual(cur.description[0][0], "foo bar") 71 self.assertEqual(cur.description[0][0], "foo baz")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
regression.py | 68 self.assertEqual(cur.description[0][0], "foo bar") 71 self.assertEqual(cur.description[0][0], "foo baz")
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UnwrapRefactoring.java | 159 comment, //description 235 public Descriptor(String project, String description, String comment, 238 project, description, comment, arguments);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
AddSuppressAttribute.java | 72 @NonNull String description, 78 mDescription = description;
|
/external/chromium_org/chrome/browser/resources/ |
feedback.js | 164 if ($('description-text').value.length == 0) { 165 alert(loadTimeData.getString('no-description')); 181 $('description-text').value, 329 'description': '', 350 // Set the initial description text. 351 $('description-text').textContent = parameters['description'];
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_engine_ibus.cc | 78 const char* description, 102 component_->set_description(description); 108 engine_desc.display_name = description; 109 engine_desc.description = description;
|
/external/chromium_org/chrome/browser/content_settings/ |
tab_specific_content_settings.cc | 178 const string16& description, 183 settings->OnIndexedDBAccessed(url, description, blocked_by_policy); 386 const string16& description, 390 url, description); 394 url, description);
|
/external/chromium_org/chrome/browser/web_applications/ |
web_app_win.cc | 204 // Sanitize description 205 string16 description = shortcut_info.description; local 206 if (description.length() >= MAX_PATH) 207 description.resize(MAX_PATH - 1); 242 shortcut_properties.set_description(description);
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InjectedScriptCanvasModuleSource.js | 730 description: function() 1182 description: function() [all...] |
InspectorDOMDebuggerAgent.cpp | 327 void InspectorDOMDebuggerAgent::descriptionForDOMEvent(Node* target, int breakpointType, bool insertion, JSONObject* description) 336 description->setValue("targetNode", targetNodeObject); 350 description->setBoolean("insertion", insertion); 355 description->setNumber("nodeId", breakpointOwnerNodeId); 356 description->setString("type", domTypeName(breakpointType));
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
FontCache.cpp | 558 const FontPlatformData* FontCache::getFallbackFontData(const FontDescription& description) 565 switch (description.genericFamily()) { 567 fontPlatformData = getFontResourcePlatformData(description, serifStr); 570 fontPlatformData = getFontResourcePlatformData(description, monospaceStr); 574 fontPlatformData = getFontResourcePlatformData(description, sansStr);
|
/external/chromium_org/third_party/libjingle/source/talk/examples/pcp/ |
pcp_main.cc | 373 std::string description, cricket::Session* session) { 375 << ": " << description << std::endl; 382 if (strncmp(description.c_str(), "send:", 5) == 0) { 384 } else if (strncmp(description.c_str(), "recv:", 5) == 0) { 390 filename = description.substr(5);
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ |
FusedPrintersProvider.java | 336 private static final String ATTR_DESCRIPTION = "description"; 581 String description = parser.getAttributeValue(null, ATTR_DESCRIPTION); local 598 builder.setDescription(description); 673 String description = printer.getDescription(); local 674 if (description != null) { 675 serializer.attribute(null, ATTR_DESCRIPTION, description);
|
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningProcessesView.java | 154 public TextView description; field in class:RunningProcessesView.ViewHolder 162 description = (TextView)v.findViewById(R.id.description); 189 description.setText(rootView.getContext().getText(R.string.cached)); 191 description.setText(item.mDescription);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
AST.stg | 245 description, 353 description) ::= 355 // <fileName>:<description> 370 description) ::= 372 // <fileName>:<description> 392 description) ::= 408 // <a.description> 424 rewriteTree(root,children,description,enclosingTreeLevel,treeLevel) ::= << 425 // <fileName>:<description>
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
session.cc | 246 const TransportDescription& description, ContentAction action) { 251 return transport_->get()->SetLocalTransportDescription(description, action); 255 const TransportDescription& description, ContentAction action) { 260 return transport_->get()->SetRemoteTransportDescription(description, action); 401 // If no transport info was in this session description, ret == false 426 // If no transport info was in this session description, ret == false 620 // a local transport description (which will trigger the connection). 626 // We need both a local and remote description to decide if we should mux. 758 bool BaseSession::GetTransportDescription(const SessionDescription* description, 761 if (!description || !tdesc) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
CSharp2.stg | 426 synpredRule(ruleName, ruleDescriptor, block, description, nakedBlock) ::= 507 rule(ruleName,ruleDescriptor,block,emptyRule,description,exceptions,finally,memoize) ::= << 517 // <fileName>:<description> 740 block(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,maxK,maxAlt,description) ::= << 741 // <fileName>:<description> 760 ruleBlock(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,maxK,maxAlt,description) ::= << 761 // <fileName>:<description> 775 ruleBlockSingleAlt(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,description) ::= << 776 // <fileName>:<description> 785 blockSingleAlt(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,description) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
CSharp3.stg | 408 synpredRule(ruleName, ruleDescriptor, block, description, nakedBlock) ::= 488 rule(ruleName,ruleDescriptor,block,emptyRule,description,exceptions,finally,memoize) ::= << 495 // <fileName>:<description> 716 block(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,maxK,maxAlt,description) ::= << 717 // <fileName>:<description> 736 ruleBlock(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,maxK,maxAlt,description) ::= << 737 // <fileName>:<description> 751 ruleBlockSingleAlt(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,description) ::= << 752 // <fileName>:<description> 761 blockSingleAlt(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,description) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
ObjC.stg | 770 synpredRule(ruleName, ruleDescriptor, block, description, nakedBlock) ::= 836 rule(ruleName,ruleDescriptor,block,emptyRule,description,exceptions,finally,memoize) ::= << 840 * <fileName>:<description> 1031 block(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,maxK,maxAlt,description) ::= << 1032 // <fileName>:<description> // block 1046 ruleBlock(alts,decls,decision,enclosingBlockLevel,blockLevel,decisionNumber,maxK,maxAlt,description) ::= < [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
msvs.py | 345 def _AddActionStep(actions_dict, inputs, outputs, description, command): 356 description: description of the action 365 'description': description, 381 inputs, outputs, description, cmd): 390 description: description of the action 397 {'Description': description, [all...] |