Searched refs:instance (Results 1 - 25 of 2104) sorted by path

1234567891011>>

/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java45 private static final SelectorUtils instance = new SelectorUtils(); field in class:SelectorUtils
55 * Retrieves the instance of the Singleton.
56 * @return singleton instance
59 return instance;
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as60 * This is an instance variable as multiple rules may collaborate to
88 * the input char buffer. Use setText() or can set this instance var.
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas1024 /// this instance of a TreeWizard.
1035 /// TODO: have a version that is nonstatic so it can use instance adaptor
2110 { These functions return X or, if X = nil, an empty default instance }
H A DAntlr.Runtime.pas591 /// This is an instance variable as multiple rules may collaborate to
625 /// the input char buffer. Use setText() or can set this instance var.
823 /// Returns List <String> of the rules in your parser instance
1071 /// <summary>This is the lexer entry point that sets instance var 'token' </summary>
1678 /// Initializes a new instance of the ANTLRStringStream class for the
1685 /// Initializes a new instance of the ANTLRStringStream class for the
1708 /// Initializes a new instance of the ANTLRFileStream class for the
1714 /// Initializes a new instance of the ANTLRFileStream class for the
2813 { These functions return X or, if X = nil, an empty default instance }
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb15 RemoteDebugEventSocketListener instance. These two objects must therefore
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtoken.rb423 3. dynamically populate the new scheme module with a couple instance methods
428 entity for your own purposes. Remember that all of the instance methods of
480 and extend the scheme module. Since token schemes define the private instance
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DC.stg575 * For instance if you call the first (topmost) rule in a parser grammar, you will
2661 * structure. An instance of this structure is created by calling
2669 * \param POinter to an instance of this typedef/struct
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DEventBuilder.java125 * @param instance the required object ID
128 public EventBuilder setInstanceOnly(long instance) { argument
130 mod.instance = instance;
H A DEventMod.java96 public long instance; field in class:EventMod
99 * Creates new instance with empty data.
123 instance = -1;
H A DVmMirror.java73 * Creates new VmMirror instance for given test run options.
1331 commandPacket.setNextValueAsObjectID(event.mods[i].instance);
2288 * Returns the value of one or more instance fields.
2690 * Sets the value of one or more instance fields
2795 * The instance of Frame.
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpServerSocket.java30 private ServerSocket instance = null; field in class:Support_HttpServerSocket
45 if (instance == null) {
48 instance.setSoTimeout(timeout);
49 Socket s = instance.accept();
69 instance = new ServerSocket(port);
76 if (instance != null) {
77 instance.close();
H A DSupport_HttpSocket.java30 private final Socket instance; field in class:Support_HttpSocket
35 instance = socket;
40 return instance.getInputStream();
45 return instance.getOutputStream();
49 if (!streamOpen && instance != null) {
50 instance.close();
H A DSupport_URLConnector.java32 private URLConnection instance; field in class:Support_URLConnector
40 instance = new URL(address).openConnection();
45 ((HttpURLConnection) instance).disconnect();
53 if (instance == null) {
57 return instance.getInputStream();
61 if (instance == null) {
64 instance.setDoOutput(true);
65 ((HttpURLConnection) instance).setRequestMethod("POST");
67 return instance.getOutputStream();
75 instance
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DLogFactoryImpl.java43 * <li>If <em>Log4J</em> is available, return an instance of
45 * <li>If <em>JDK 1.4 or later</em> is available, return an instance of
47 * <li>Otherwise, return an instance of
53 * parameter, this method will be called on each newly created instance
55 * attributes available to the Log instance, if it so desires.</p>
308 * instance cannot be returned
318 * <p>Construct (if necessary) and return a <code>Log</code> instance,
323 * instance you are returned may or may not be local to the current
327 * @param name Logical name of the <code>Log</code> instance to be
332 * instance canno
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DObjectFactory.java92 * @return instance of factory, never null
116 * @return instance of factory, never null
143 Object instance = factoryClass.newInstance();
144 debugPrintln("created new instance of factory " + factoryId);
145 return instance;
222 debugPrintln("created new instance of " + providerClass +
450 * Create an instance of a class using the specified ClassLoader
459 Object instance = providerClass.newInstance();
460 debugPrintln("created new instance of " + providerClass +
462 return instance;
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DObjectFactory.java92 * @return instance of factory, never null
116 * @return instance of factory, never null
143 Object instance = factoryClass.newInstance();
144 debugPrintln("created new instance of factory " + factoryId);
145 return instance;
222 debugPrintln("created new instance of " + providerClass +
450 * Create an instance of a class using the specified ClassLoader
459 Object instance = providerClass.newInstance();
460 debugPrintln("created new instance of " + providerClass +
462 return instance;
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DObjectFactory.java91 * @return instance of factory, never null
115 * @return instance of factory, never null
142 Object instance = factoryClass.newInstance();
143 debugPrintln("created new instance of factory " + factoryId);
144 return instance;
221 debugPrintln("created new instance of " + providerClass +
449 * Create an instance of a class using the specified ClassLoader
458 Object instance = providerClass.newInstance();
459 debugPrintln("created new instance of " + providerClass +
461 return instance;
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DObjectFactory.java92 * @return instance of factory, never null
116 * @return instance of factory, never null
143 Object instance = factoryClass.newInstance();
144 debugPrintln("created new instance of factory " + factoryId);
145 return instance;
222 debugPrintln("created new instance of " + providerClass +
450 * Create an instance of a class using the specified ClassLoader
459 Object instance = providerClass.newInstance();
460 debugPrintln("created new instance of " + providerClass +
462 return instance;
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DObjectFactory.java92 * @return instance of factory, never null
116 * @return instance of factory, never null
143 Object instance = factoryClass.newInstance();
144 debugPrintln("created new instance of factory " + factoryId);
145 return instance;
222 debugPrintln("created new instance of " + providerClass +
450 * Create an instance of a class using the specified ClassLoader
459 Object instance = providerClass.newInstance();
460 debugPrintln("created new instance of " + providerClass +
462 return instance;
[all...]
/external/bison/build-aux/
H A Dtexinfo.tex5006 % titles, for instance.
5758 % being visible, for instance under high magnification.
7093 % On the other hand, if an argument has two dashes (for instance), we
/external/bison/doc/
H A Dbison.x25 For instance, a grammar description file named
/external/chromium-trace/
H A Dscript.js159 base.exportTo("tracing.trace_model",function(){function d(b,a,c,e,f){this.parent=b;this.id=a;this.category=c;this.name=e;this.creationTs=f;this.creationTsWasExplicit=!1;this.deletionTs=Number.MAX_VALUE;this.selected=this.deletionTsWasExplicit=!1;this.colorId=0;this.bounds=new base.Range;this.snapshots=[];this.hasImplicitSnapshots=!1}d.prototype={__proto__:Object.prototype,get typeName(){return this.name},addSnapshot:function(b,a){if(b<this.creationTs)throw Error("Snapshots must be >= instance.creationTs");
161 1],a.ts>b))throw Error("Instance cannot be deleted at ts="+b+". A snapshot exists that is older.");this.deletionTs=b;this.deletionTsWasExplicit=!0},preInitialize:function(){for(var b=0;b<this.snapshots.length;b++)this.snapshots[b].preInitialize()},initialize:function(){for(var b=0;b<this.snapshots.length;b++)this.snapshots[b].initialize()},getSnapshotAt:function(b){if(b<this.creationTs){if(this.creationTsWasExplicit)throw Error("ts must be within lifetime of this instance");return this.snapshots[0]}if(b>
162 this.deletionTs)throw Error("ts must be within lifetime of this instance");var a=this.snapshots;b=base.findLowIndexInSortedIntervals(a,function(a){return a.ts},function(c,b){return b==a.length-1?a[b].objectInstance.deletionTs:a[b+1].ts-a[b].ts},b);return 0>b?this.snapshots[0]:b>=this.snapshots.length?this.snapshots[this.snapshots.length-1]:this.snapshots[b]},updateBounds:function(){this.bounds.reset();this.bounds.addValue(this.creationTs);this.deletionTs!=Number.MAX_VALUE?this.bounds.addValue(this.deletionTs):
166 e=this.createObjectInstanceFunction_(this.parent,this.id,b,a,c);e.creationTsWasExplicit=!0;this.instances.push(e);return e},addSnapshot:function(b,a,c,e){0==this.instances.length&&this.instances.push(this.createObjectInstanceFunction_(this.parent,this.id,b,a,c));var f=base.findLowIndexInSortedIntervals(this.instances,function(a){return a.creationTs},function(a){return a.deletionTs-a.creationTs},c);if(0>f){f=this.instances[0];if(c>f.deletionTs||f.creationTsWasExplicit)throw Error("At the provided timestamp, no instance was still alive");
168 (g=f)}if(void 0===g)throw Error("Cannot add snapshot. No instance was alive that was mutable.");f=this.instances[g];f.creationTs=c}else f=this.instances[f];return f.addSnapshot(c,e)},get lastInstance(){return 0==this.instances.length?void 0:this.instances[this.instances.length-1]},idWasDeleted:function(b,a,c){0==this.instances.length&&this.instances.push(this.createObjectInstanceFunction_(this.parent,this.id,b,a,c));var e=this.instances[this.instances.length-1];if(c<e.creationTs)throw Error("Cannot delete a id before it was crated");
310 decorate:function(){a.prototype.decorate.apply(this)},set objectSnapshot(a){this.textContent=a.objectInstance.typeName+" "+a.objectInstance.id+" @ "+d(a.ts)+" ms";this.selectionGenerator=function(){return tracing.createSelectionFromObjectAndView(a,this)}.bind(this)}};var e=ui.define("object-instance-link",a);e.prototype={__proto__:a.prototype,decorate:function(){a.prototype.decorate.apply(this)},set objectInstance(a){this.textContent=a.typeName+" "+a.id;this.selectionGenerator=function(){return tracing.createSelectionFromObjectAndView(a,
335 base.exportTo("tracing.analysis",function(){var d=ui.define("object-instance-view");d.prototype={__proto__:HTMLDivElement.prototype,decorate:function(){this.objectInstance_=void 0},set modelObject(b){this.objectInstance=b},get modelObject(){return this.objectInstance},get objectInstance(){return this.objectInstance_},set objectInstance(b){this.objectInstance_=b;this.updateContents()},updateContents:function(){throw Error("Not implemented");}};d.typeNameToViewInfoMap={};d.register=function(b,a,c){if(d.typeNameToViewInfoMap[b])throw Error("Handler already registerd for "+
340 base.exportTo("tracing.analysis",function(){var d=tracing.analysis.tsRound,b=ui.define("default-object-snapshot-view",tracing.analysis.ObjectSnapshotView);b.prototype={__proto__:tracing.analysis.ObjectSnapshotView.prototype,decorate:function(){tracing.analysis.ObjectSnapshotView.prototype.decorate.apply(this);this.classList.add("default-object-view");this.classList.add("default-object-snapshot-view")},updateContents:function(){var a=this.objectSnapshot;if(a){var b=a.objectInstance,f;f=""+('<div class="title">Snapshot of <a id="instance-link"></a> @ '+
341 d(a.ts)+"ms</div>\n");f+="<table><tr>";f+='<tr><td>args:</td><td id="args"></td></tr>\n';this.innerHTML=f+="</table>";f=new tracing.analysis.ObjectInstanceLink;f.objectInstance=b;b=this.querySelector("#instance-link");b.parentElement.replaceChild(f,b);this.querySelector("#args").textContent=JSON.stringify(a.args,null,2)}else this.textContent=""}};var a=ui.define("default-object-instance
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Dsettings.js106 Settings.setAlternativeStorageInstance = function(instance) {
107 storage_ = instance;
/external/chromium-trace/trace-viewer/src/cc/
H A Dlayer_tree_host_impl_test.js17 var instance = p.objects.getAllInstancesNamed('cc::LayerTreeHostImpl')[0];
18 var snapshot = instance.snapshots[0];

Completed in 1444 milliseconds

1234567891011>>