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

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Primitive.java 38 * Tests provided identifier.
40 * @param identifier identifier to be verified
41 * @return true if identifier correspond to primitive identifier of this
44 public final boolean checkTag(int identifier) {
45 return this.id == identifier;
  /external/chromium/webkit/glue/
npruntime_util.cc 14 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle) {
18 WebBindings::extractIdentifierData(identifier, string, number, is_string);
30 NPIdentifier* identifier) {
41 *identifier = WebBindings::getStringIdentifier(data);
46 *identifier = WebBindings::getIntIdentifier(number);
site_isolation_metrics.h 25 static void AddRequest(unsigned identifier,
31 unsigned identifier,
  /external/chromium_org/content/child/npapi/
npruntime_util.cc 14 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle) {
18 WebBindings::extractIdentifierData(identifier, string, number, is_string);
30 NPIdentifier* identifier) {
41 *identifier = WebBindings::getStringIdentifier(data);
46 *identifier = WebBindings::getIntIdentifier(number);
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 25 public Object trap(Object[] args, int identifier) throws Throwable {
29 return ClassMetaobject.invoke(this, identifier, args);
31 return mobj.trapMethodcall(identifier, args);
34 public static Object trapStatic(Object[] args, int identifier)
37 return _classobject.trapMethodcall(identifier, args);
  /external/chromium_org/content/public/browser/
browser_thread.h 88 // This identifier does not represent a thread. Instead it counts the
90 // identifier.
99 static bool PostTask(ID identifier,
102 static bool PostDelayedTask(ID identifier,
106 static bool PostNonNestableTask(ID identifier,
110 ID identifier,
116 ID identifier,
123 ID identifier,
128 GetMessageLoopProxyForThread(identifier);
134 static bool DeleteSoon(ID identifier,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceAgent.h 91 void willSendRequest(unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&);
92 void markResourceAsCached(unsigned long identifier);
93 void didReceiveResourceResponse(unsigned long identifier, DocumentLoader*, const ResourceResponse&, ResourceLoader*);
94 void didReceiveData(unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
95 void didFinishLoading(unsigned long identifier, DocumentLoader*, double monotonicFinishTime);
96 void didFailLoading(unsigned long identifier, DocumentLoader*, const ResourceError&);
98 void scriptImported(unsigned long identifier, const String& sourceString);
99 void didReceiveScriptResponse(unsigned long identifier);
101 void documentThreadableLoaderStartedLoadingForClient(unsigned long identifier, ThreadableLoaderClient*);
104 void didFinishXHRLoading(ThreadableLoaderClient*, unsigned long identifier, ScriptString sourceString, const String&, const String&, unsigned)
    [all...]
IdentifiersFactory.h 37 static String requestId(unsigned long identifier);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ProgressTracker.h 54 void incrementProgress(unsigned long identifier, const ResourceResponse&);
55 void incrementProgress(unsigned long identifier, const char*, int);
56 void completeProgress(unsigned long identifier);
ThreadableLoaderClientWrapper.h 65 void didReceiveResponse(unsigned long identifier, const ResourceResponse& response)
68 m_client->didReceiveResponse(identifier, response);
83 void didFinishLoading(unsigned long identifier, double finishTime)
87 m_client->didFinishLoading(identifier, finishTime);
111 void didReceiveAuthenticationCancellation(unsigned long identifier, const ResourceResponse& response)
114 m_client->didReceiveResponse(identifier, response);
DocumentThreadableLoader.h 89 void didReceiveResponse(unsigned long identifier, const ResourceResponse&);
90 void didReceiveData(unsigned long identifier, const char* data, int dataLength);
91 void didFinishLoading(unsigned long identifier, double finishTime);
92 void didFail(unsigned long identifier, const ResourceError&);
98 void preflightFailure(unsigned long identifier, const String& url, const String& errorDescription);
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
EvaluateJSWithinNPP_New.cpp 36 EvaluteJSWithinNPP_New(NPP, const string& identifier);
43 EvaluteJSWithinNPP_New::EvaluteJSWithinNPP_New(NPP npp, const string& identifier)
44 : PluginTest(npp, identifier)
NullNPPGetValuePointer.cpp 36 NullNPPGetValuePointer(NPP, const string& identifier);
47 NullNPPGetValuePointer::NullNPPGetValuePointer(NPP npp, const string& identifier)
48 : PluginTest(npp, identifier)
PluginScriptableNPObjectInvokeDefault.cpp 33 PluginScriptableNPObjectInvokeDefault(NPP npp, const string& identifier)
34 : PluginTest(npp, identifier)
56 if (identifier() == "plugin-scriptable-npobject-invoke-default")
GetUserAgentWithNullNPPFromNPPNew.cpp 38 GetUserAgentWithNullNPPFromNPPNew(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
  /external/chromium_org/content/browser/
browser_thread_impl.cc 64 BrowserThreadImpl::BrowserThreadImpl(ID identifier)
65 : Thread(g_browser_thread_names[identifier]),
66 identifier_(identifier) {
70 BrowserThreadImpl::BrowserThreadImpl(ID identifier,
72 : Thread(message_loop->thread_name().c_str()), identifier_(identifier) {
239 BrowserThread::ID identifier,
244 DCHECK(identifier >= 0 && identifier < ID_COUNT);
254 current_thread >= identifier;
261 globals.threads[identifier] ? globals.threads[identifier]->message_loop(
    [all...]
  /external/chromium/chrome/browser/
browser_process_sub_thread.h 25 explicit BrowserProcessSubThread(BrowserThread::ID identifier);
  /external/clang/test/Sema/
decl-invalid.c 13 expected-error{{expected identifier or '('}}
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DnaBlockData.java 65 int identifier; local
67 //reading 'SDNA' identifier
68 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16
71 if (identifier != SDNA_ID) {
72 throw new BlenderFileException("Invalid identifier! '" + this.toString(SDNA_ID) + "' expected and found: " + this.toString(identifier));
76 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16
78 if (identifier != NAME_ID) {
79 throw new BlenderFileException("Invalid identifier! '" + this.toString(NAME_ID) + "' expected and found: " + this.toString(identifier));
    [all...]
  /external/chromium_org/webkit/common/database/
database_identifier.cc 19 GURL GetOriginFromIdentifier(const std::string& identifier) {
20 return DatabaseIdentifier::Parse(identifier).ToOrigin();
58 DatabaseIdentifier DatabaseIdentifier::Parse(const std::string& identifier) {
59 if (!IsStringASCII(identifier))
62 size_t first_underscore = identifier.find_first_of('_');
66 size_t last_underscore = identifier.find_last_of('_');
69 last_underscore == identifier.length() - 1)
72 std::string scheme(identifier.data(), first_underscore);
80 base::StringPiece port_str(identifier.begin() + last_underscore + 1,
81 identifier.end())
    [all...]
  /external/chromium_org/content/public/test/
test_browser_thread.h 25 explicit TestBrowserThread(BrowserThread::ID identifier);
26 TestBrowserThread(BrowserThread::ID identifier,
  /frameworks/base/test-runner/src/android/test/
InstrumentationUtils.java 30 * An utility function that returns the menu identifier for a particular
34 * @param identifier Menu identifier.
37 public static int getMenuIdentifier(Class cls, String identifier) {
40 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls);
  /packages/apps/Dialer/tests/src/com/android/dialer/util/
FakeAsyncTaskExecutor.java 68 /** Encapsulates an async task with the params and identifier it was submitted with. */
80 public SubmittedTaskImpl(Object identifier, Runnable runnable,
82 mIdentifier = identifier;
124 public <T> AsyncTask<T, ?, ?> submit(Object identifier,
129 mNextIdentifier = identifier;
141 public <T> AsyncTask<T, ?, ?> submit(Object identifier, AsyncTask<T, ?, ?> task, T... params) {
143 return mBlockingExecutor.submit(identifier, task, params);
147 * Runs a single task matching the given identifier.
152 * Fails if there was not exactly one task matching the given identifier.
156 public void runTask(Object identifier) throws InterruptedException
    [all...]
  /development/testrunner/
android_mk.py 64 def GetVariable(self, identifier):
68 identifier: name of variable to retrieve
70 value of specified identifier, None if identifier not found in makefile
73 # so None is returned if identifier not found
74 return self._variables.get(identifier, None)
76 def GetExpandedVariable(self, identifier):
83 identifier: name of variable to retrieve
85 value of specified identifier, None if identifier not found in makefil
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Touch.h 43 unsigned identifier, int screenX, int screenY, int pageX, int pageY,
46 return adoptRef(new Touch(frame, target, identifier, screenX,
51 unsigned identifier() const { return m_identifier; } function in class:WebCore::Touch
66 Touch(Frame* frame, EventTarget* target, unsigned identifier,
70 Touch(EventTarget*, unsigned identifier, int clientX, int clientY,

Completed in 1237 milliseconds

12 3 4 5 6 7 8 91011>>