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

1 2 3 45 6 7 8 91011>>

  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java 74 private static void print(String identifier, Class<?> clazz, Object message,
78 buf.append(indentBuf).append(identifier);
122 identifier = deCamelCaseify(identifier);
123 buf.append(indentBuf).append(identifier).append(": ");
135 * Converts an identifier of the format "FieldName" into "field_name".
137 private static String deCamelCaseify(String identifier) {
139 for (int i = 0; i < identifier.length(); i++) {
140 char currentChar = identifier.charAt(i);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedParser.h 38 - (void)identifier;
  /external/chromium/chrome/browser/
spellcheck_message_filter.h 30 int identifier,
  /external/chromium_org/content/browser/
browser_process_sub_thread.h 37 explicit BrowserProcessSubThread(BrowserThread::ID identifier);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Touch.cpp 55 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int pageX, int pageY, int radiusX, int radiusY, float rotationAngle, float force)
57 , m_identifier(identifier)
76 Touch::Touch(EventTarget* target, unsigned identifier, int clientX, int clientY, int screenX, int screenY, int pageX, int pageY, int radiusX, int radiusY, float rotationAngle, float force, LayoutPoint absoluteLocation)
78 , m_identifier(identifier)
  /external/wpa_supplicant_8/src/eap_common/
eap_common.h 18 u8 code, u8 identifier);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8NPObject.cpp 124 NPIdentifier identifier = getStringIdentifier(functionName); local
125 retval = npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result);
220 static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key, v8::Isolate* isolate)
230 if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasProperty(npObject, identifier)) {
236 if (!npObject->_class->getProperty(npObject, identifier, &result))
250 if (key->IsString() && npObject->_class->hasMethod && npObject->_class->hasMethod(npObject, identifier)) {
254 PrivateIdentifier* id = static_cast<PrivateIdentifier*>(identifier);
258 // Cache templates using identifier as the key.
277 NPIdentifier identifier = getStringIdentifier(name); local
278 v8SetReturnValue(info, npObjectGetProperty(info.Holder(), identifier, name, info.GetIsolate()))
283 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
289 NPIdentifier identifier = getStringIdentifier(name); local
295 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
301 NPIdentifier identifier = getStringIdentifier(name); local
335 NPIdentifier identifier = getStringIdentifier(name); local
342 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
348 NPIdentifier identifier = getStringIdentifier(name); local
354 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
373 IdentifierRep* identifier = static_cast<IdentifierRep*>(identifiers[i]); local
    [all...]
npruntime.cpp 173 PrivateIdentifier* identifier = static_cast<PrivateIdentifier*>(malloc(sizeof(PrivateIdentifier) + nameLen + 1)); local
174 char* nameStorage = reinterpret_cast<char*>(identifier + 1);
176 identifier->isString = true;
177 identifier->value.string = reinterpret_cast<NPUTF8*>(nameStorage);
179 identMap->set(key, identifier);
180 return (NPIdentifier)identifier;
218 PrivateIdentifier* identifier = reinterpret_cast<PrivateIdentifier*>(malloc(sizeof(PrivateIdentifier)));
219 identifier->isString = false;
220 identifier->value.number = intId;
221 identMap->set(intId, identifier);
    [all...]
  /external/chromium_org/chrome/browser/plugins/
plugin_observer.h 56 const std::string& identifier);
58 const std::string& identifier);
66 void OnNPAPINotSupported(const std::string& identifier);
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider_test.cc 63 int identifier,
71 text_check_completions_.Lookup(identifier);
77 text_check_completions_.Remove(identifier);
  /external/chromium_org/remoting/host/plugin/
host_plugin_utils.cc 11 std::string StringFromNPIdentifier(NPIdentifier identifier) {
12 if (!g_npnetscape_funcs->identifierisstring(identifier))
14 NPUTF8* np_string = g_npnetscape_funcs->utf8fromidentifier(identifier);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributes.cpp 46 static inline void dumpSVGCharacterDataMapValue(const char* identifier, float value, bool appendSpace = true)
49 fprintf(stderr, "%s=x", identifier);
54 fprintf(stderr, "%s=%lf", identifier, value);
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
MacroExpander.h 38 bool pushMacro(const Macro& macro, const Token& identifier);
42 const Token& identifier,
47 const Token& identifier,
  /external/javassist/src/main/javassist/tools/reflect/
ClassMetaobject.java 198 * <code>methodPrefix "_m_"</code> and the identifier.
202 static public Object invoke(Object target, int identifier, Object[] args)
207 String head = methodPrefix + identifier;
230 public Object trapMethodcall(int identifier, Object[] args)
235 return m[identifier].invoke(null, args);
287 * the method specified by <code>identifier</code>.
292 * @param identifier the identifier index
297 public final Method getMethod(int identifier) {
298 return getReflectiveMethods()[identifier];
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java 388 * Parse the test identifier (class and test name), and optional time info.
390 * @param identifier Raw identifier of the form classname.testname, with an optional time
392 * @return A ParsedTestInfo representing the parsed info from the identifier string.
400 private ParsedTestInfo parseTestIdentifier(String identifier) {
404 Matcher time = timePattern.matcher(identifier);
410 identifier = identifier.substring(0, identifier.lastIndexOf(discardPortion)).trim();
414 String[] testId = identifier.split("\\.")
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_input_api.cc 39 "key identifier.";
88 std::string identifier; local
89 EXTENSION_FUNCTION_VALIDATE(args->GetString(kKeyIdentifier, &identifier));
90 TrimWhitespaceASCII(identifier, TRIM_ALL, &identifier);
93 KeyEventFromKeyIdentifier(identifier);
  /external/chromium_org/third_party/WebKit/public/testing/
WebFrameTestProxy.h 134 virtual void willSendRequest(WebKit::WebFrame* frame, unsigned identifier, WebKit::WebURLRequest& request, const WebKit::WebURLResponse& redirectResponse)
137 m_baseProxy->willSendRequest(frame, identifier, request, redirectResponse);
138 Base::willSendRequest(frame, identifier, request, redirectResponse);
140 virtual void didReceiveResponse(WebKit::WebFrame* frame, unsigned identifier, const WebKit::WebURLResponse& response)
143 m_baseProxy->didReceiveResponse(frame, identifier, response);
144 Base::didReceiveResponse(frame, identifier, response);
146 virtual void didChangeResourcePriority(WebKit::WebFrame* frame, unsigned identifier, const WebKit::WebURLRequest::Priority& priority)
150 m_baseProxy->didChangeResourcePriority(frame, identifier, priority);
151 Base::didChangeResourcePriority(frame, identifier, priority);
153 virtual void didFinishResourceLoad(WebKit::WebFrame* frame, unsigned identifier)
    [all...]
  /external/chromium_org/third_party/npapi/npspy/common/
npn_gate.cpp 397 bool NPN_Enumerate(NPP id, NPObject* obj, NPIdentifier** identifier, uint32_t*val)
402 bool rv = NPNFuncs.enumerate(id, obj, identifier, val);
452 bool NPN_HasMethod(NPP id, NPObject* object, NPIdentifier identifier)
455 logger->logCall(action_npn_has_method, (DWORD)identifier);
457 bool rv = NPNFuncs.hasmethod(id, object, identifier);
465 bool NPN_HasProperty(NPP id, NPObject* object, NPIdentifier identifier)
468 logger->logCall(action_npn_has_property, (DWORD)identifier);
470 bool rv = NPNFuncs.hasmethod(id, object, identifier);
478 bool NPN_RemoveProperty(NPP id, NPObject* object, NPIdentifier identifier)
481 logger->logCall(action_npn_remove_property, (DWORD)identifier);
    [all...]
  /external/chromium_org/content/renderer/pepper/
ppb_var_deprecated_impl.cc 133 // Automatically sets up a TryCatch for accessing the identifier on the given
135 // the given identifier to an NPIdentifier and validate it, throwing an
140 // use (via the object() getter), that the identifier is valid and ready to
141 // use (via the identifier() getter), and that the TryCatch's pp_module() getter
146 PP_Var identifier,
151 identifier_ = PPVarToNPIdentifier(identifier);
157 NPIdentifier identifier() const { return identifier_; } function in class:content::__anon10472::ObjectAccessorWithIdentifierTryCatch
173 accessor.identifier()));
189 accessor.identifier());
201 accessor.identifier(), &result))
277 NPIdentifier identifier; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.cpp 41 PluginTest* PluginTest::create(NPP npp, const string& identifier)
43 if (identifier.empty())
44 return new PluginTest(npp, identifier);
46 CreateTestFunction createTestFunction = createTestFunctions()[identifier];
48 return createTestFunction(npp, identifier);
53 PluginTest::PluginTest(NPP npp, const string& identifier)
55 , m_identifier(identifier)
285 void PluginTest::registerCreateTestFunction(const string& identifier, CreateTestFunction createTestFunction)
287 assert(!createTestFunctions().count(identifier));
289 createTestFunctions()[identifier] = createTestFunction
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_external_delegate.cc 187 void AutofillExternalDelegate::DidSelectSuggestion(int identifier) {
191 if (identifier > 0)
192 FillAutofillFormData(identifier, true);
196 int identifier) {
199 if (identifier == WebAutofillClient::MenuItemIDAutofillOptions) {
202 } else if (identifier == WebAutofillClient::MenuItemIDClearForm) {
205 } else if (identifier == WebAutofillClient::MenuItemIDPasswordEntry) {
209 } else if (identifier == WebAutofillClient::MenuItemIDDataListEntry) {
212 } else if (identifier == WebAutofillClient::MenuItemIDAutocompleteEntry) {
216 FillAutofillFormData(identifier, false)
    [all...]
  /frameworks/base/services/input/
EventHub.cpp 96 static void setDescriptor(InputDeviceIdentifier& identifier) {
98 // The descriptor is assumed to be a stable identifier. Its value should not
102 rawDescriptor.appendFormat(":%04x:%04x:", identifier.vendor, identifier.product);
103 if (!identifier.uniqueId.isEmpty()) {
105 rawDescriptor.append(identifier.uniqueId);
106 } if (identifier.vendor == 0 && identifier.product == 0) {
111 if (!identifier.name.isEmpty()) {
113 rawDescriptor.append(identifier.name)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceAgent.cpp 102 virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse& response)
126 virtual void didFinishLoading(unsigned long /*identifier*/, double /*finishTime*/)
286 void InspectorResourceAgent::willSendRequest(unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& redirectResponse, const FetchInitiatorInfo& initiatorInfo)
288 String requestId = IdentifiersFactory::requestId(identifier);
315 void InspectorResourceAgent::markResourceAsCached(unsigned long identifier)
317 m_frontend->requestServedFromCache(IdentifiersFactory::requestId(identifier));
320 void InspectorResourceAgent::didReceiveResourceResponse(unsigned long identifier, DocumentLoader* loader, const ResourceResponse& response, ResourceLoader* resourceLoader)
325 String requestId = IdentifiersFactory::requestId(identifier);
357 didReceiveData(identifier, 0, cachedResource->encodedSize(), 0);
365 void InspectorResourceAgent::didReceiveData(unsigned long identifier, const char* data, int dataLength, int encodedDataLength
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter.cc 114 int identifier,
126 CallSpellingService(text, route_id, identifier, markers);
131 int identifier,
165 route_id, identifier, success, text, results_copy));
173 int identifier,
188 identifier,
  /external/chromium_org/content/child/
plugin_param_traits.cc 14 : identifier() {
116 content::SerializeNPIdentifier(p.identifier, m);
122 return content::DeserializeNPIdentifier(iter, &r->identifier);
126 if (WebKit::WebBindings::identifierIsString(p.identifier)) {
127 NPUTF8* str = WebKit::WebBindings::utf8FromIdentifier(p.identifier);
132 WebKit::WebBindings::intFromIdentifier(p.identifier)));

Completed in 1228 milliseconds

1 2 3 45 6 7 8 91011>>