/external/smack/src/org/xbill/DNS/ |
Mnemonic.java | 35 private String description; field in class:Mnemonic 43 * @param description A short description of the mnemonic to use when 49 Mnemonic(String description, int wordcase) { 50 this.description = description; 96 throw new IllegalArgumentException(description + " " + val + 161 throw new IllegalArgumentException(source.description +
|
/system/media/camera/docs/ |
metadata_template.mako | 24 % if tag.description and tag.description.strip(): 25 <tag id="${tag.id}">${tag.description | x}</tag> 27 <tag id="${tag.id}"><!-- TODO: fill the tag description --></tag> 47 % if section.description is not None: 48 <description>${section.description}</description> 138 % if prop.description is not None: 139 <description>${prop.description | x}</description [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/ |
background.js | 29 var description = '<url>' + file + '</url>'; 31 description += ' <dim>' + path + '</dim>'; 58 description += ' ' + content; 63 description: description 74 description: '<url><match>src:</match></url> Search Chromium source' 86 var description = '<match><url>src</url></match><dim> [</dim>'; 87 description += 89 description += '<dim> | </dim>'; 90 description += isRegex ? ('<match>' + text + '</match>') : 're:regex-search' [all...] |
/external/chromium_org/tools/grit/grit/ |
clique_unittest.py | 66 factory.MakeClique(tclib.Message(text='Alfur', description='alfaholl')) 67 factory.MakeClique(tclib.Message(text='Alfur', description='')) 68 factory.MakeClique(tclib.Message(text='Vaettur', description='')) 69 factory.MakeClique(tclib.Message(text='Vaettur', description='')) 70 factory.MakeClique(tclib.Message(text='Troll', description='')) 71 factory.MakeClique(tclib.Message(text='Gryla', description='ID: IDS_GRYLA')) 72 factory.MakeClique(tclib.Message(text='Gryla', description='vondakerling')) 73 factory.MakeClique(tclib.Message(text='Leppaludi', description='ID: IDS_LL')) 74 factory.MakeClique(tclib.Message(text='Leppaludi', description='')) 81 description = msg.GetDescription( [all...] |
/build/tools/ |
event_log_tags.py | 21 __slots__ = ["tagnum", "tagname", "description", "filename", "linenum"] 23 def __init__(self, tagnum, tagname, description, filename, linenum): 26 self.description = description 89 description = parts[2] 91 description = None 93 if description: 94 # EventLog.java checks that the description field is 97 if not re.match(r"\(.*\)\s*$", description): 98 self.AddError("tag \"%s\" has unparseable description" % (tagname,) [all...] |
/device/google/accessory/arduino/AndroidAccessory/ |
AndroidAccessory.h | 26 const char *description; member in class:AndroidAccessory 56 const char *description,
|
/external/chromium/chrome/browser/ |
bug_report_data.cc | 29 const std::string& description, 41 description_ = description;
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
browser_bridge_tests.js | 8 gpuInfo: {"basic_info":[{"description":"Initialization time","value":"111"},{"description":"Vendor Id","value":"0x10de"},{"description":"Device Id","value":"0x0658"},{"description":"Driver vendor","value":"NVIDIA"},{"description":"Driver version","value":"195.36.24"},{"description":"Driver date","value":""},{"description":"Pixel shader version","value":"1.50"},{"description":"Vertex shader version","value":"1.50"},{"description":"GL version","value":"3.2"},{"description":"GL_VENDOR","value":"NVIDIA Corporation"},{"description":"GL_RENDERER","value":"Quadro FX 380/PCI (…) [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
sessiondescription.cc | 68 const ContentDescription* description) { 69 contents_.push_back(ContentInfo(name, type, description));
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_engine.cc | 40 const char* description, 51 description,
|
/external/chromium_org/content/browser/resources/gpu/ |
browser_bridge_tests.js | 194 description: 'Initialization time', 198 description: 'Vendor Id', 202 description: 'Device Id', 206 description: 'Driver vendor', 210 description: 'Driver version', 214 description: 'Driver date', 218 description: 'Pixel shader version', 222 description: 'Vertex shader version', 226 description: 'GL version', 230 description: 'GL_VENDOR' [all...] |
/external/chromium_org/ppapi/api/private/ |
ppb_flash_font_file.idl | 20 [in] PP_BrowserFont_Trusted_Description description,
|
/external/chromium_org/ppapi/thunk/ |
ppb_flash_font_file_thunk.cc | 17 const PP_BrowserFont_Trusted_Description* description, 22 return enter.functions()->CreateFlashFontFile(instance, description, charset);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ShortcutsScreen.js | 108 * @param {string} description 110 addKey: function(key, description) 112 this._addLine(this._renderKey(key), description); 117 * @param {string} description 119 addRelatedKeys: function(keys, description) 121 this._addLine(this._renderSequence(keys, "/"), description); 126 * @param {string} description 128 addAlternateKeys: function(keys, description) 130 this._addLine(this._renderSequence(keys, WebInspector.UIString("or")), description); 135 * @param {string} description [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
RefCountedLeakCounter.cpp | 65 RefCountedLeakCounter::RefCountedLeakCounter(const char* description) 66 : m_description(description)
|
/external/chromium_org/third_party/libjingle/source/talk/examples/ios/AppRTCDemo/ |
GAEChannelClient.h | 38 - (void)onError:(int)code withDescription:(NSString *)description;
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prcountr.h | 123 ** DESCRIPTION: PR_DEFINE_COUNTER() is used to define a counter 132 ** DESCRIPTION: 147 ** DESCRIPTION: PR_CreateCounter() creates a counter object and 161 ** descrioption: The description of the counter object. The 162 ** maximum length of description is defined by 174 #define PR_CREATE_COUNTER(handle,qName,rName,description)\ 175 (handle) = PR_CreateCounter((qName),(rName),(description)) 177 #define PR_CREATE_COUNTER(handle,qName,rName,description) 184 const char *description 190 ** DESCRIPTION: PR_DestroyCounter() removes a counter an [all...] |
prtrace.h | 141 ** DESCRIPTION: PR_DEFINE_TRACE() is used to define a trace 150 ** DESCRIPTION: 166 ** DESCRIPTION: 171 ** PR_CreateTrace() registers the QName, RName and description 179 ** description: pointer to string. Descriptive data about this 192 ** description is limited to 255 characters. 199 #define PR_CREATE_TRACE(handle,qName,rName,description)\ 200 (handle) = PR_CreateTrace((qName),(rName),(description)) 202 #define PR_CREATE_TRACE(handle,qName,rName,description) 209 const char *description /* description for this trace handle * [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/ |
MSVSToolFile.py | 25 def AddCustomBuildRule(self, name, cmd, description, 32 description: Description of the rule. 40 'ExecutionDescription': description,
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
BugType.h | 56 BuiltinBug(const char *name, const char *description) 57 : BugType(name, "Logic error"), desc(description) {}
|
/external/clang/lib/Analysis/ |
ProgramPoint.cpp | 46 SimpleProgramPointTag::SimpleProgramPointTag(StringRef description) 47 : desc(description) {}
|
/external/hamcrest/src/org/hamcrest/core/ |
AllOf.java | 5 import org.hamcrest.Description; 31 public void describeTo(Description description) { 32 description.appendList("(", " and ", ")", matchers);
|
AnyOf.java | 5 import org.hamcrest.Description; 32 public void describeTo(Description description) { 33 description.appendList("(", " or ", ")", matchers);
|
Is.java | 8 import org.hamcrest.Description; 29 public void describeTo(Description description) { 30 description.appendText("is ").appendDescriptionOf(matcher);
|
IsNot.java | 6 import org.hamcrest.Description; 26 public void describeTo(Description description) { 27 description.appendText("not ").appendDescriptionOf(matcher);
|