HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 251 - 275 of 3359) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeRewriter.cs 62 public virtual object ApplyOnce( object t, Func<IAstRuleReturnScope> whichRule )
69 // share TreeParser object but not parsing-related state
94 public virtual object ApplyRepeatedly( object t, Func<IAstRuleReturnScope> whichRule )
99 object u = ApplyOnce( t, whichRule );
106 public virtual object Downup( object t )
111 public virtual object Downup( object t, bool showTransformations
    [all...]
CommonTreeAdaptor.cs 52 public override object Create( IToken payload )
103 public override IToken GetToken( object t )
TreeRuleReturnScope`1.cs 37 * the start property is a tree nodes not Token object
60 object IRuleReturnScope.Start
76 object IRuleReturnScope.Stop
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DictionaryExtensions.cs 44 public static bool containsKey( this IDictionary map, object key )
50 public static object get( this IDictionary map, object key )
93 public static void put( this IDictionary map, object key, object value )
111 public static HashSet<object> keySet( this IDictionary map )
113 return new HashSet<object>( map.Keys.Cast<object>() );
130 public static HashSet<object> keySet<TKey, TValue>( this SortedList<TKey, TValue> map )
132 return new HashSet<object>( map.Keys.Cast<object>() )
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResource.cpp 35 static inline RenderSVGResource* requestPaintingResource(RenderSVGResourceMode mode, RenderObject* object, const RenderStyle* style, Color& fallbackColor)
37 ASSERT(object);
96 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(object);
123 RenderSVGResource* RenderSVGResource::fillPaintingResource(RenderObject* object, const RenderStyle* style, Color& fallbackColor)
125 return requestPaintingResource(ApplyToFillMode, object, style, fallbackColor);
128 RenderSVGResource* RenderSVGResource::strokePaintingResource(RenderObject* object, const RenderStyle* style, Color& fallbackColor)
130 return requestPaintingResource(ApplyToStrokeMode, object, style, fallbackColor);
141 void RenderSVGResource::markForLayoutAndParentResourceInvalidation(RenderObject* object, bool needsLayout)
143 ASSERT(object);
145 object->setNeedsLayout(true)
    [all...]
  /libcore/json/src/main/java/org/json/
JSONObject.java 51 * coerced using {@link String#valueOf(Object)}. Although null cannot be
69 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an
93 * <p>This value violates the general contract of {@link Object#equals} by
97 public static final Object NULL = new Object() {
98 @Override public boolean equals(Object o) {
106 private final Map<String, Object> nameValuePairs;
112 nameValuePairs = new HashMap<String, Object>();
142 * object in the tokener.
154 Object object = readFrom.nextValue() local
375 Object object = get(name); local
396 Object object = opt(name); local
409 Object object = get(name); local
430 Object object = opt(name); local
443 Object object = get(name); local
464 Object object = opt(name); local
477 Object object = get(name); local
498 Object object = opt(name); local
510 Object object = get(name); local
531 Object object = opt(name); local
544 Object object = get(name); local
557 Object object = opt(name); local
569 Object object = get(name); local
582 Object object = opt(name); local
    [all...]
  /dalvik/vm/mterp/armv6t2/
OP_IGET_QUICK.S 2 %verify "null object"
3 /* For: iget-quick, iget-object-quick */
7 GET_VREG(r3, r2) @ r3<- object we're operating on
9 cmp r3, #0 @ check object for null
10 beq common_errNullObject @ object was null
OP_IGET_WIDE_QUICK.S 2 %verify "null object"
6 GET_VREG(r3, r2) @ r3<- object we're operating on
8 cmp r3, #0 @ check object for null
9 beq common_errNullObject @ object was null
  /dalvik/vm/mterp/x86/
OP_IGET_QUICK.S 2 %verify "null object"
3 /* For: iget-quick, iget-object-quick */
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
9 cmpl $$0,%ecx # is object null?
OP_IGET_WIDE_QUICK.S 2 %verify "null object"
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
9 cmpl $$0,%ecx # is object null?
OP_IPUT_OBJECT_QUICK.S 2 %verify "null object"
3 /* For: iput-object-quick */
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
11 testl %ecx,%ecx # is object null?
18 shrl $$GC_CARD_SHIFT,%ecx # object head to card number
19 movb %al,(%eax,%ecx) # mark card based on object head
OP_IPUT_QUICK.S 2 %verify "null object"
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
11 testl %ecx,%ecx # is object null?
OP_IPUT_WIDE_QUICK.S 2 %verify "null object"
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
9 testl %ecx,%ecx # is object null?
  /dalvik/vm/mterp/x86-atom/
OP_IGET_QUICK.S 31 GET_VREG %eax # %eax<- vB; object to operate on
33 cmp $$0, %eax # check if object is null
34 je common_errNullObject # handle null object
36 movl (%ecx, %eax), %eax # %eax<- object field
OP_IGET_WIDE_QUICK.S 31 GET_VREG %edx # %edx<- vB; object to operate on
32 cmp $$0, %edx # check if object is null
34 je common_errNullObject # handle null object
36 movq (%ecx, %edx), %xmm0 # %xmm0<- object field
OP_IPUT_QUICK.S 30 GET_VREG %eax # %eax<- vB; object to operate on
32 cmp $$0, %eax # check if object is null
33 je common_errNullObject # handle null object
36 movl rINST, (%eax, %ecx) # object field<- vA
OP_IPUT_WIDE_QUICK.S 31 GET_VREG %edx # %edx<- vB; object to operate on
32 cmp $$0, %edx # check if object is null
34 je common_errNullObject # handle null object
37 movq %xmm0, (%edx, %ecx) # object field<- %xmm0; fp[A]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ParserRuleReturnScope.cs 38 * Rules that return more than a single value must return an object
90 object IRuleReturnScope.Start
98 object IRuleReturnScope.Stop
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 141 * @param object A String or, an array of character bytes containing hexidecimal digits
145 * to this function or the object is not a String or char[]
148 public Object decode(Object object) throws DecoderException {
150 char[] charArray = object instanceof String ? ((String) object).toCharArray() : (char[]) object;
177 * @param object a String, or byte[] to convert to Hex characters
179 * @throws EncoderException Thrown if the given object is not a String or byte[
    [all...]
  /external/chromium/base/memory/
singleton_objc.h 7 // appropriate for Objective-C objects. A typical Objective-C object of type
14 // NSExampleType* object. The object will be released by calling
47 static void Delete(Type* object) {
48 [object release];
  /external/chromium/base/win/
object_watcher.h 17 // A class that provides a means to asynchronously wait for a Windows object to
30 // void DoStuffWhenSignaled(HANDLE object) {
31 // watcher_.StartWatching(object, this);
33 // virtual void OnObjectSignaled(HANDLE object) {
40 // In the above example, MyClass wants to "do stuff" when object becomes
50 // Called from the MessageLoop when a signaled object is detected. To
51 // continue watching the object, AddWatch must be called again.
52 virtual void OnObjectSignaled(HANDLE object) = 0;
58 // When the object is signaled, the given delegate is notified on the thread
64 bool StartWatching(HANDLE object, Delegate* delegate)
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
BooleanSerializer.java 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
52 buffer.put(((Boolean)object) ? (byte)1 : (byte)0);
ByteSerializer.java 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
52 buffer.put((Byte)object);
CharSerializer.java 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
52 buffer.putChar((Character)object);
DoubleSerializer.java 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
52 buffer.putDouble((Double)object);

Completed in 1808 milliseconds

<<11121314151617181920>>