/external/webkit/Tools/DumpRenderTree/win/ |
ResourceLoadDelegate.h | 51 /* [in] */ unsigned long identifier); 55 /* [in] */ unsigned long identifier, 63 /* [in] */ unsigned long identifier, 69 /* [in] */ unsigned long identifier, 75 /* [in] */ unsigned long identifier, 81 /* [in] */ unsigned long identifier, 87 /* [in] */ unsigned long identifier, 92 /* [in] */ unsigned long identifier, 104 /* [in] */ unsigned long identifier);
|
ResourceLoadDelegate.cpp | 62 wstring ResourceLoadDelegate::descriptionSuitableForTestResult(unsigned long identifier) const 64 IdentifierMap::const_iterator it = m_urlMap.find(identifier); 121 wstring ResourceLoadDelegate::descriptionSuitableForTestResult(IWebError* error, unsigned long identifier) const 165 failingURL = descriptionSuitableForTestResult(identifier); 217 /* [in] */ unsigned long identifier) 224 ASSERT(!urlMap().contains(identifier)); 225 urlMap().set(identifier, wstringFromBSTR(urlStr)); 233 /* [in] */ unsigned long identifier) 235 urlMap().remove(identifier); 242 /* [in] */ unsigned long identifier, [all...] |
/frameworks/base/core/java/android/widget/ |
ResourceCursorTreeAdapter.java | 42 * @param collapsedGroupLayout resource identifier of a layout file that 44 * @param expandedGroupLayout resource identifier of a layout file that 46 * @param childLayout resource identifier of a layout file that defines the 48 * @param lastChildLayout resource identifier of a layout file that defines 69 * @param collapsedGroupLayout resource identifier of a layout file that 71 * @param expandedGroupLayout resource identifier of a layout file that 73 * @param childLayout resource identifier of a layout file that defines the 87 * @param groupLayout resource identifier of a layout file that defines the 89 * @param childLayout resource identifier of a layout file that defines the
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Implicit.java | 49 * 1) primitive: only primitive identifier is valid 50 * 2) constructed: only constructed identifier is valid 91 public final boolean checkTag(int identifier) { 94 return id == identifier; 96 return constrId == identifier; 98 return id == identifier || constrId == identifier; 110 // substitute identifier for further decoding 125 //FIXME need another way for specifying identifier to be encoded
|
/external/webkit/LayoutTests/fast/events/touch/ |
basic-multi-touch-events-limited-expected.txt | 16 PASS lastEvent.touches[0].identifier is 0 21 PASS lastEvent.touches[1].identifier is 1 26 PASS lastEvent.changedTouches[0].identifier is 0 31 PASS lastEvent.changedTouches[1].identifier is 1 36 PASS lastEvent.targetTouches[0].identifier is 0 41 PASS lastEvent.targetTouches[1].identifier is 1 52 PASS lastEvent.touches[0].identifier is 0 57 PASS lastEvent.touches[1].identifier is 1 62 PASS lastEvent.changedTouches[0].identifier is 0 67 PASS lastEvent.changedTouches[1].identifier is [all...] |
basic-multi-touch-events-expected.txt | 18 PASS lastEvent.touches[0].identifier is 0 23 PASS lastEvent.touches[1].identifier is 1 28 PASS lastEvent.changedTouches[0].identifier is 0 33 PASS lastEvent.changedTouches[1].identifier is 1 38 PASS lastEvent.targetTouches[0].identifier is 0 43 PASS lastEvent.targetTouches[1].identifier is 1 55 PASS lastEvent.touches[0].identifier is 0 60 PASS lastEvent.changedTouches[0].identifier is 0 65 PASS lastEvent.touches[1].identifier is 1 77 PASS lastEvent.touches[0].identifier is [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
JSObject.h | 79 friend void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot); 98 JSValue get(ExecState*, const Identifier& propertyName) const; 101 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 103 bool getPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&); 105 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 107 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&); 109 virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&); 112 virtual void putWithAttributes(JSGlobalData*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot); 113 virtual void putWithAttributes(JSGlobalData*, const Identifier& propertyName, JSValue value, unsigned attributes); 115 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot) [all...] |
RegExpObject.cpp | 37 static JSValue regExpObjectGlobal(ExecState*, JSValue, const Identifier&); 38 static JSValue regExpObjectIgnoreCase(ExecState*, JSValue, const Identifier&); 39 static JSValue regExpObjectMultiline(ExecState*, JSValue, const Identifier&); 40 static JSValue regExpObjectSource(ExecState*, JSValue, const Identifier&); 41 static JSValue regExpObjectLastIndex(ExecState*, JSValue, const Identifier&); 82 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 87 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 92 JSValue regExpObjectGlobal(ExecState*, JSValue slotBase, const Identifier&) 97 JSValue regExpObjectIgnoreCase(ExecState*, JSValue slotBase, const Identifier&) 102 JSValue regExpObjectMultiline(ExecState*, JSValue slotBase, const Identifier& [all...] |
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGOperations.cpp | 93 Identifier propertyName(exec, asString(property)->value(exec)); 100 Identifier ident(exec, property.toString(exec)); 104 EncodedJSValue operationGetById(ExecState* exec, EncodedJSValue encodedBase, Identifier* identifier) 108 return JSValue::encode(baseValue.get(exec, *identifier, slot)); 154 Identifier ident(exec, property.toString(exec)); 171 void operationPutByIdStrict(ExecState* exec, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier* identifier) 174 JSValue::decode(encodedBase).put(exec, *identifier, JSValue::decode(encodedValue), slot); 177 void operationPutByIdNonStrict(ExecState* exec, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier* identifier [all...] |
/external/bison/examples/calc++/ |
calc++-parser.yy | 39 %token <sval> IDENTIFIER "identifier" 43 %printer { yyoutput << *$$; } "identifier" 44 %destructor { delete $$; } "identifier" 57 "identifier" ":=" exp 66 | "identifier" { $$ = driver.variables[*$1]; delete $1; }
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/ |
NISTNamedCurves.java | 57 * the passed in object identifier. Null if the curve isn't present. 59 * @param oid an object identifier representing a named curve, if present. 68 * return the object identifier signified by the passed in name. Null 69 * if there is no object identifier associated with name. 71 * @return the object identifier associated with name, if present. 80 * return the named curve name represented by the given object identifier.
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/ |
instanceof-001.js | 6 * RelationalExpression instanceof Identifier 83 // Identifier is not a function 88 // Identifier is a function, prototype of Identifier is not an object 98 // RelationalExpression.__proto__ == (but not ===) Identifier.prototype 105 // RelationalExpression.__proto__.__proto__ === Identifier.prototype
|
/external/webkit/Source/WebCore/loader/ |
ResourceLoadNotifier.h | 60 void assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader*, const ResourceRequest&); 61 void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse); 62 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&); 63 void dispatchDidReceiveContentLength(DocumentLoader*, unsigned long identifier, int dataLength, int encodedDataLength); 64 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier, double finishTime); 67 void sendRemainingDelegateMessages(DocumentLoader*, unsigned long identifier, const ResourceResponse&, int dataLength, int encodedDataLength, const ResourceError&);
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebResourceLoadDelegate.h | 47 The various progress methods of this protocol all receive an identifier as the 48 parameter. This identifier can be used to track messages associated with a single 59 @discussion An implementor of WebResourceLoadDelegate should provide an identifier 60 that can be used to track the load of a single resource. This identifier will be 62 identifier is useful to track changes to a resources request, which will be 64 @result An identifier that will be passed back to the implementor for each callback. 65 The identifier will be retained. 74 @param identifier An identifier that can be used to track the progress of a resource load across 83 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDat (…) [all...] |
/external/webkit/Tools/TestWebKitAPI/ |
Test.h | 49 static Test* create(const std::string& identifier) 51 return new TestClassTy(identifier); 56 Test(const std::string& identifier) 57 : m_identifier(identifier) 71 TEST_CLASS_NAME(testSuite, testCaseName)(const std::string& identifier) \ 72 : Test(identifier) \
|
TestsController.cpp | 54 bool TestsController::runTestNamed(const std::string& identifier) 56 CreateTestFunction createTestFunction = m_createTestFunctions[identifier]; 58 printf("ERROR: Test not found - %s\n", identifier.c_str()); 62 m_currentTest = createTestFunction(identifier); 77 void TestsController::registerCreateTestFunction(const std::string& identifier, CreateTestFunction createTestFunction) 79 m_createTestFunctions[identifier] = createTestFunction;
|
/external/clang/test/SemaCXX/ |
missing-namespace-qualifier-typo-corrections.cpp | 12 Double(toFoobar()); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}} 26 if (toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}} 27 if (noFoobar()) Double(7); // expected-error{{use of undeclared identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}} 28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}} 29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}} 30 if (baztool::toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'baztool'; did you mean 'fizbin::baztool'?}} 31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}} 32 if (dummy::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}} 33 if (dummy::mreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}} \ 35 if (moFoobin()) Double(7); // expected-error{{use of undeclared identifier 'moFoobin'} [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t026actions.g | 19 : IDENTIFIER EOF 30 IDENTIFIER
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t026actions.g | 17 : IDENTIFIER EOF 28 IDENTIFIER
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1ObjectIdentifier.java | 6 public ASN1ObjectIdentifier(String identifier) 8 super(identifier);
|
/external/chromium/chrome/browser/ |
browser_process_sub_thread.cc | 13 BrowserProcessSubThread::BrowserProcessSubThread(BrowserThread::ID identifier) 14 : BrowserThread(identifier) {}
|
/external/chromium/chrome/browser/userfeedback/proto/ |
common.proto | 26 // Unique identifier of feedback report. If set than only one report 27 // with the same identifier is stored in the system.
|
/external/clang/test/Index/ |
code-completion-skip-bodies.cpp | 19 // STDERR-NOT: error: use of undeclared identifier 'undeclared1' 20 // STDERR: error: use of undeclared identifier 'undeclared2'
|
/external/clang/test/Parser/ |
cxx-undeclared-identifier.cpp | 16 int f(a::b::c); // expected-error {{use of undeclared identifier 'a'}} 18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
|
/external/clang/test/SemaObjC/ |
bad-property-synthesis-crash.m | 13 __what; // expected-error {{use of undeclared identifier}} \ 21 return __what; // expected-error {{use of undeclared identifier}}
|