HomeSort by relevance Sort by last modified time
    Searched refs:create (Results 326 - 350 of 6558) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-tree-wizard.rb 180 t = @wizard.create("ID")
185 t = @wizard.create("ID[foo]")
191 t = @wizard.create("(A)")
196 t = @wizard.create("(A B C D)")
201 t = @wizard.create("(nil A B C)")
206 t = @wizard.create("A B C")
211 t = @wizard.create("(A (B C) (B D) E)")
222 tree = @wizard.create("ID")
230 tree = @wizard.create("(A B C D)")
240 tree = @wizard.create("(A B (A C B) B D D)"
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
AssignTokenTypesWalker.g 135 stringAlias = (GrammarAST)adaptor.create( BLOCK, "BLOCK" );
137 GrammarAST alt = (GrammarAST)adaptor.create( ALT, "ALT" );
138 adaptor.addChild( alt, adaptor.create( STRING_LITERAL, "STRING_LITERAL" ) );
139 adaptor.addChild( alt, adaptor.create( EOA, "EOA" ) );
142 adaptor.addChild( stringAlias, adaptor.create( EOB, "EOB" ) );
147 charAlias = (GrammarAST)adaptor.create( BLOCK, "BLOCK" );
149 GrammarAST alt = (GrammarAST)adaptor.create( ALT, "ALT" );
150 adaptor.addChild( alt, adaptor.create( CHAR_LITERAL, "CHAR_LITERAL" ) );
151 adaptor.addChild( alt, adaptor.create( EOA, "EOA" ) );
154 adaptor.addChild( charAlias, adaptor.create( EOB, "EOB" ) )
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFilterElement.cpp 37 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
38 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
39 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
40 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
41 , m_filterUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::filterUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX))
42 , m_primitiveUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::primitiveUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE)
    [all...]
SVGImageElement.cpp 37 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
38 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
39 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
40 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
41 , m_preserveAspectRatio(SVGAnimatedPreserveAspectRatio::create(this, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio::create()))
    [all...]
SVGMatrixTearOff.cpp 97 RefPtr<SVGMatrixTearOff> matrix = create(value());
104 RefPtr<SVGMatrixTearOff> matrix = create(value());
111 RefPtr<SVGMatrixTearOff> matrix = create(value());
118 RefPtr<SVGMatrixTearOff> matrix = create(value());
125 RefPtr<SVGMatrixTearOff> matrix = create(value());
132 RefPtr<SVGMatrixTearOff> matrix = create(value());
139 RefPtr<SVGMatrixTearOff> matrix = create(value());
146 RefPtr<SVGMatrixTearOff> matrix = create(value());
153 RefPtr<SVGMatrixTearOff> matrix = create(value());
164 return create(transform)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 83 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::createNull(), 0);
86 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage));
90 Platform::current()->idbFactory()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(scriptState->executionContext()->securityOrigin()));
119 IDBDatabaseCallbacks* databaseCallbacks = IDBDatabaseCallbacks::create();
121 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scriptState, databaseCallbacks, transactionId, version);
124 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage));
128 Platform::current()->idbFactory()->open(name, version, transactionId, WebIDBCallbacksImpl::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(scriptState->executionContext()->securityOrigin()));
153 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scriptState, nullptr, 0, IDBDatabaseMetadata::DefaultIntVersion);
156 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage))
    [all...]
IDBOpenDBRequest.cpp 41 IDBOpenDBRequest* IDBOpenDBRequest::create(ScriptState* scriptState, IDBDatabaseCallbacks* callbacks, int64_t transactionId, int64_t version) function in class:blink::IDBOpenDBRequest
78 enqueueEvent(IDBVersionChangeEvent::create(EventTypeNames::blocked, oldVersion, newVersionNullable));
95 IDBDatabase* idbDatabase = IDBDatabase::create(executionContext(), backend, m_databaseCallbacks.release());
105 m_transaction = IDBTransaction::create(scriptState(), m_transactionId, idbDatabase, this, oldMetadata);
106 setResult(IDBAny::create(idbDatabase));
110 enqueueEvent(IDBVersionChangeEvent::create(EventTypeNames::upgradeneeded, oldVersion, m_version, dataLoss, dataLossMessage));
135 idbDatabase = IDBDatabase::create(executionContext(), backend, m_databaseCallbacks.release());
136 setResult(IDBAny::create(idbDatabase));
139 enqueueEvent(Event::create(EventTypeNames::success));
152 enqueueEvent(IDBVersionChangeEvent::create(EventTypeNames::success, oldVersion, Nullable<unsigned long long>()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatementBackend.cpp 74 PassRefPtrWillBeRawPtr<SQLStatementBackend> SQLStatementBackend::create(PassOwnPtrWillBeRawPtr<SQLStatement> frontend, function in class:blink::SQLStatementBackend
87 , m_resultSet(SQLResultSet::create())
136 m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not prepare statement", result, "interrupted");
138 m_error = SQLErrorData::create(SQLError::SYNTAX_ERR, "could not prepare statement", result, database->lastErrorMsg());
147 m_error = SQLErrorData::create(SQLError::SYNTAX_ERR, "number of '?'s in statement string does not match argument count");
162 m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not bind value", result, database->lastErrorMsg());
185 m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not iterate results", result, database->lastErrorMsg());
198 m_error = SQLErrorData::create(SQLError::CONSTRAINT_ERR, "could not execute statement due to a constaint failure", result, database->lastErrorMsg());
202 m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not execute statement", result, database->lastErrorMsg());
219 m_error = SQLErrorData::create(SQLError::VERSION_ERR, "current version of the database and `oldVersion` argument do not match")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ServiceWorkerGlobalScopeProxy.cpp 57 PassOwnPtr<ServiceWorkerGlobalScopeProxy> ServiceWorkerGlobalScopeProxy::create(WebEmbeddedWorkerImpl& embeddedWorker, Document& document, WebServiceWorkerContextClient& client) function in class:blink::ServiceWorkerGlobalScopeProxy
69 WaitUntilObserver* observer = WaitUntilObserver::create(m_workerGlobalScope, WaitUntilObserver::Install, eventID);
71 m_workerGlobalScope->dispatchEvent(InstallEvent::create(EventTypeNames::install, EventInit(), observer));
78 WaitUntilObserver* observer = WaitUntilObserver::create(m_workerGlobalScope, WaitUntilObserver::Activate, eventID);
80 m_workerGlobalScope->dispatchEvent(ExtendableEvent::create(EventTypeNames::activate, EventInit(), observer));
87 RespondWithObserver* observer = RespondWithObserver::create(m_workerGlobalScope, eventID);
93 Request* request = Request::create(m_workerGlobalScope, webRequest);
94 RefPtrWillBeRawPtr<FetchEvent> fetchEvent(FetchEvent::create(observer, request));
106 m_workerGlobalScope->dispatchEvent(MessageEvent::create(ports.release(), value));
112 m_workerGlobalScope->dispatchEvent(PushEvent::create(EventTypeNames::push, data))
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 30 super (Tag.HTML, AttributeSet.create ());
32 super.add (m_head = IElement.Factory.create (Tag.HEAD));
33 super.add (m_body = IElement.Factory.create (Tag.BODY));
38 final ISimpleElement meta = ISimpleElement.Factory.create (Tag.META);
52 final IElement titleElement = IElement.Factory.create (Tag.TITLE).setText (title, false);
120 final IElement style = IElement.Factory.create (Tag.STYLE);
140 final ISimpleElement link = ISimpleElement.Factory.create (Tag.LINK);
155 final IElement h = IElement.Factory.create (Hl);
166 final IElement h = IElement.Factory.create (Hl);
175 final IElement hr = IElement.Factory.create (Tag.HR)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Ranges.java 74 static <C extends Comparable<?>> Range<C> create( method in class:Ranges
87 return create(Cut.aboveValue(lower), Cut.belowValue(upper));
98 return create(Cut.belowValue(lower), Cut.aboveValue(upper));
110 return create(Cut.belowValue(lower), Cut.belowValue(upper));
122 return create(Cut.aboveValue(lower), Cut.aboveValue(upper));
144 return create(lowerBound, upperBound);
152 return create(Cut.<C>belowAll(), Cut.belowValue(endpoint));
160 return create(Cut.<C>belowAll(), Cut.aboveValue(endpoint));
184 return create(Cut.aboveValue(endpoint), Cut.<C>aboveAll());
192 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll())
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
EnumBiMapTest.java 44 EnumBiMap.create(Currency.class, Country.class);
47 assertEquals(HashBiMap.create(), bimap);
59 EnumBiMap<Currency, Country> bimap = EnumBiMap.create(map);
65 EnumBiMap.create(Collections.<Currency, Country>emptyMap());
69 EnumBiMap.create(
70 EnumHashBiMap.<Currency, Country>create(Currency.class)); method
76 EnumBiMap.create(Currency.class, Country.class);
77 bimap = EnumBiMap.create(emptyBimap);
84 EnumBiMap.create(Currency.class, Country.class);
87 EnumBiMap.create(bimap1)
    [all...]
SynchronizedMapTest.java 41 protected <K, V> Map<K, V> create() { method in class:SynchronizedMapTest
147 create().size();
151 create().isEmpty();
155 create().remove(null);
159 create().clear();
163 create().containsKey(null);
167 create().containsValue(null);
171 create().get(null);
175 create().put(null, null);
179 create().putAll(new HashMap<String, Integer>())
216 SerializableTester.reserializeAndAssert(create()); method
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 12 // Create one test item for each context type.
18 var id = chrome.contextMenus.create({"title": title, "contexts":[context],
24 // Create a parent item and two children.
25 var parent = chrome.contextMenus.create({"title": "Test parent item"});
26 var child1 = chrome.contextMenus.create(
28 var child2 = chrome.contextMenus.create(
33 // Create some radio items.
39 var radio1 = chrome.contextMenus.create({"title": "Radio 1", "type": "radio",
41 var radio2 = chrome.contextMenus.create({"title": "Radio 2", "type": "radio",
46 // Create some checkbox items
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/event_page/
sample.js 28 // Create one test item for each context type.
34 var id = chrome.contextMenus.create({"title": title, "contexts":[context],
39 // Create a parent item and two children.
40 chrome.contextMenus.create({"title": "Test parent item", "id": "parent"});
41 chrome.contextMenus.create(
43 chrome.contextMenus.create(
47 // Create some radio items.
48 chrome.contextMenus.create({"title": "Radio 1", "type": "radio",
50 chrome.contextMenus.create({"title": "Radio 2", "type": "radio",
54 // Create some checkbox items
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 71 return AnimatableLength::create(length, style.effectiveZoom());
79 return AnimatableUnknown::create(CSSPrimitiveValue::create(length, 1));
81 return AnimatableUnknown::create(CSSValueNone);
98 return AnimatableUnknown::create(CSSValueNormal);
99 return AnimatableDouble::create(value);
106 return AnimatableDouble::create(value, constraint);
111 return AnimatableLengthBox::create(
127 return AnimatableLengthBox::create(
136 return AnimatableLengthBoxAndBool::create(
271 PassRefPtrWillBeRawPtr<AnimatableValue> CSSAnimatableValueFactory::create(CSSPropertyID property, const RenderStyle& style) function in class:blink::CSSAnimatableValueFactory
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpDelete.java 73 setURI(URI.create(uri));
HttpGet.java 80 setURI(URI.create(uri));
HttpHead.java 80 setURI(URI.create(uri));
HttpPost.java 84 setURI(URI.create(uri));
HttpPut.java 76 setURI(URI.create(uri));
HttpTrace.java 79 setURI(URI.create(uri));
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathFactory.java 36 * Create an XPath.
48 XPath create(String exprString, SourceLocator locator, method in interface:XPathFactory
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8BlobCustom.cpp 43 RefPtrWillBeRawPtr<Blob> blob = Blob::create();
69 OwnPtr<BlobData> blobData = BlobData::create();
75 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize));
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXARIAGrid.h 45 static PassRefPtr<AXARIAGrid> create(RenderObject*);

Completed in 511 milliseconds

<<11121314151617181920>>