HomeSort by relevance Sort by last modified time
    Searched refs:identifier (Results 76 - 100 of 664) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/plugins/
plugin_finder.cc 36 // Gets the full path of the plug-in file as the identifier.
41 // Gets the base name of the file path as the identifier.
85 const std::string& identifier,
102 PluginMetadata* plugin = new PluginMetadata(identifier,
208 installers_.find(metadata_it->second->identifier());
218 const std::string& identifier,
222 PluginMap::const_iterator metadata_it = identifier_plugin_.find(identifier);
229 installers_.find(identifier);
255 const std::string& identifier = plugin_it.key(); local
256 if (plugin_list->GetDictionaryWithoutPathExpansion(identifier, &plugin))
292 std::string identifier = GetIdentifier(plugin); local
    [all...]
  /external/chromium_org/net/base/
upload_data_stream.h 30 int64 identifier);
33 UploadDataStream(Chunked chunked, int64 identifier);
40 int64 identifier);
70 // sessions. A value of 0 is used to indicate an unspecified identifier.
71 int64 identifier() const { return identifier_; } function in class:net::UploadDataStream
  /external/javassist/src/main/javassist/compiler/ast/
Variable.java 34 return identifier + ":" + declarator.getType();
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_ucm.h 173 * \brief Create an identifier
176 * \return Allocated string identifier or NULL on error
191 * \param identifier (may be NULL - card list)
215 const char *identifier,
222 * \param identifier
234 * - value identifier <NAME>
273 const char *identifier,
279 * \param identifier
288 const char *identifier,
294 * \param identifier
    [all...]
alsaucm_test.c 137 " list IDENTIFIER list command\n"
138 " get IDENTIFIER get string value\n"
139 " geti IDENTIFIER get integer value\n"
140 " set IDENTIFIER VALUE set string value\n"
166 char *identifier = NULL, *value = NULL; local
170 identifier = strtok_r(NULL, " ", &value);
187 if ((identifier == NULL) && ((cmd->code != UCM_HELP) &&
191 fprintf(stderr, "NULL pointer encountered. Invalid value for identifier");
206 err = snd_use_case_mgr_open(&uc_mgr, identifier);
208 fprintf(stderr, "%s: error failed to open sound card %s: %d\n", cmd->cmd_str, identifier, err)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/util/
AsyncTaskExecutor.java 43 * The identifier supplied is any Object that can be used to identify the task later. Most
47 <T> AsyncTask<T, ?, ?> submit(Object identifier, AsyncTask<T, ?, ?> task, T... params);
  /external/chromium_org/third_party/WebKit/Source/weborigin/
DatabaseIdentifierTest.cpp 71 String identifier = createDatabaseIdentifierFromSecurityOrigin(origin.get()); local
72 EXPECT_EQ(cases[i].expectedIdentifier, identifier) << "test case " << origin->toString();
193 String identifier = createDatabaseIdentifierFromSecurityOrigin(origin.get()); local
194 EXPECT_EQ(cases[i].expected, identifier) << "test case " << i << ": \"" << cases[i].hostname << "\"";
196 RefPtr<SecurityOrigin> parsedOrigin = createSecurityOriginFromDatabaseIdentifier(identifier);
206 String identifier; member in struct:__anon12873::IdentifierTestCase
229 RefPtr<SecurityOrigin> origin = createSecurityOriginFromDatabaseIdentifier(validCases[i].identifier);
  /external/chromium_org/tools/gn/
string_utils.cc 31 // identifier and places its range in |*identifier|, and updates |*i| to
38 base::StringPiece* identifier,
44 "I was expecting an identifier after the $.");
54 "I was expecting an identifier inside the ${...}.");
66 "$ not followed by an identifier char.",
73 // Find the first non-identifier char following the string.
86 *err = ErrInsideStringToken(token, *i, 1, "Not an identifier in string expansion.",
87 "The contents of ${...} should be an identifier. "
96 *identifier = base::StringPiece(&input[begin_offset]
152 base::StringPiece identifier; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSOMUtils.cpp 52 void serializeIdentifier(const String& identifier, String& appendTo)
55 serializeIdentifier(identifier, addend);
59 void serializeIdentifier(const String& identifier, StringBuilder& appendTo)
65 while (index < identifier.length()) {
66 UChar32 c = identifier.characterStartingAt(index);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Choice.java 254 // add primitive identifier
259 // add constructed identifier
272 BigInteger identifier = entry.getKey(); local
274 identifiers[0][i] = identifier.intValue();
281 private void addIdentifier(TreeMap<BigInteger, BigInteger> map, int identifier, int index){
282 if (map.put(BigInteger.valueOf(identifier), BigInteger.valueOf(index)) != null) {
289 * Tests whether one of choice alternatives has the same identifier or not.
291 * @param identifier -
292 * ASN.1 identifier to be verified
293 * @return - true if one of choice alternatives has the same identifier,
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
MacroExpander.cpp 72 if (token->type != Token::IDENTIFIER)
151 bool MacroExpander::pushMacro(const Macro& macro, const Token& identifier)
154 assert(!identifier.expansionDisabled());
155 assert(identifier.type == Token::IDENTIFIER);
156 assert(identifier.text == macro.name);
159 if (!expandMacro(macro, identifier, &replacements))
186 const Token& identifier,
205 stream << identifier.location.line;
211 stream << identifier.location.file
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
profiler.py 38 def create_profiler(cls, host, executable_path, output_dir, profiler_name=None, identifier=None):
46 return profilers[0](host, executable_path, output_dir, identifier)
69 def __init__(self, host, executable_path, output_dir, identifier=None):
87 def __init__(self, host, executable_path, output_dir, output_suffix, identifier=None):
88 super(SingleFileOutputProfiler, self).__init__(host, executable_path, output_dir, identifier)
97 def __init__(self, host, executable_path, output_dir, identifier=None):
98 super(GooglePProf, self).__init__(host, executable_path, output_dir, "pprof", identifier)
132 def __init__(self, host, executable_path, output_dir, identifier=None):
133 super(Perf, self).__init__(host, executable_path, output_dir, "data", identifier)
179 def __init__(self, host, executable_path, output_dir, identifier=None)
    [all...]
  /external/chromium_org/content/browser/
browser_process_sub_thread.cc 21 BrowserProcessSubThread::BrowserProcessSubThread(BrowserThread::ID identifier)
22 : BrowserThreadImpl(identifier) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Touch.idl 34 readonly attribute unsigned long identifier;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ProgressTracker.cpp 149 void ProgressTracker::incrementProgress(unsigned long identifier, const ResourceResponse& response)
162 if (ProgressItem* item = m_progressItems.get(identifier)) {
166 m_progressItems.set(identifier, adoptPtr(new ProgressItem(estimatedLength)));
169 void ProgressTracker::incrementProgress(unsigned long identifier, const char*, int length)
171 ProgressItem* item = m_progressItems.get(identifier);
227 void ProgressTracker::completeProgress(unsigned long identifier)
229 ProgressItem* item = m_progressItems.get(identifier);
239 m_progressItems.remove(identifier);
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPDeallocateCalledBeforeNPShutdown.cpp 34 NPDeallocateCalledBeforeNPShutdown(NPP npp, const string& identifier)
35 : PluginTest(npp, identifier)
NPRuntimeCallsWithNullNPP.cpp 30 NPRuntimeCallsWithNullNPP(NPP npp, const std::string& identifier)
31 : PluginTest(npp, identifier)
NPRuntimeObjectFromDestroyedPlugin.cpp 32 NPRuntimeObjectFromDestroyedPlugin(NPP npp, const string& identifier)
33 : PluginTest(npp, identifier)
PluginScriptableObjectOverridesAllProperties.cpp 35 PluginScriptableObjectOverridesAllProperties(NPP npp, const string& identifier)
36 : PluginTest(npp, identifier)
SlowNPPNew.cpp 34 SlowNPPNew(NPP npp, const string& identifier)
35 : PluginTest(npp, identifier)
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
NotificationPresenter.cpp 96 WebString identifier = identifierForNotification(notification); local
102 m_replacements[replaceId] = identifier.utf8();
119 string id(identifier.utf8());
128 WebString identifier = identifierForNotification(notification); local
129 m_delegate->printMessage(string("DESKTOP NOTIFICATION CLOSED: ") + string(identifier.utf8()) + "\n");
133 string id(identifier.utf8());
139 WebString identifier = identifierForNotification(notification); local
140 string id(identifier.utf8());
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadIdentifierDataPthreads.cpp 64 ThreadIdentifier ThreadIdentifierData::identifier() function in class:WTF::ThreadIdentifierData
74 ASSERT(!identifier());
  /external/chromium_org/ui/webui/
web_ui_util.cc 78 bool ParseScaleFactor(const base::StringPiece& identifier,
81 if (identifier.empty()) {
82 LOG(ERROR) << "Invalid scale factor format: " << identifier;
86 if (*identifier.rbegin() != 'x') {
87 LOG(ERROR) << "Invalid scale factor format: " << identifier;
93 identifier.substr(0, identifier.length() - 1).CopyToString(&stripped);
95 LOG(ERROR) << "Invalid scale factor format: " << identifier;
  /external/chromium_org/webkit/common/database/
database_identifier.h 20 const std::string& identifier);
26 static DatabaseIdentifier Parse(const std::string& identifier);
  /external/guava/guava/src/com/google/common/eventbus/
AsyncEventBus.java 40 * events. Assigns {@code identifier} as the bus's name for logging purposes.
42 * @param identifier short name for the bus, for logging purposes.
47 public AsyncEventBus(String identifier, Executor executor) {
48 super(identifier);

Completed in 897 milliseconds

1 2 34 5 6 7 8 91011>>