HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 1 - 25 of 3392) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeVisitorAction.cs 49 object Pre(object t);
57 object Post(object t);
63 Func<object, object> _preAction;
64 Func<object, object> _postAction;
66 public TreeVisitorAction(Func<object, object> preAction, Func<object, object> postAction
    [all...]
ITreeAdaptor.cs 52 * Create a tree node from Token object; for CommonTree type trees,
61 object Create(IToken payload);
66 object DupNode(object treeNode);
69 object DupTree(object tree);
77 object Nil();
97 object ErrorNode(ITokenStream input, IToken start, IToken stop, RecognitionException e);
100 bool IsNil(object tree);
111 void AddChild(object t, object child)
    [all...]
  /external/flac/libFLAC/include/private/
metadata.h 41 void FLAC__metadata_object_delete_data(FLAC__StreamMetadata *object);
43 void FLAC__metadata_object_cuesheet_track_delete_data(FLAC__StreamMetadata_CueSheet_Track *object);
  /external/webkit/Source/WebCore/platform/mac/
FoundationExtras.h 29 // Use HardAutorelease to return an object made by a CoreFoundation
31 // object. CF objects need to be "made collectable" for autorelease to work
34 static inline id HardAutorelease(CFTypeRef object)
36 if (object)
37 CFMakeCollectable(object);
38 [(id)object autorelease];
39 return (id)object;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeAdaptor.cs 54 * Create a tree node from Token object; for CommonTree type trees,
63 object Create(IToken payload);
75 object Create(int tokenType, IToken fromToken);
87 object Create(int tokenType, IToken fromToken, string text);
99 object Create(IToken fromToken, string text);
111 object Create(int tokenType, string text);
116 object DupNode(object treeNode);
118 object DupNode(int type, object treeNode)
    [all...]
ITreeVisitorAction.cs 51 object Pre( object t );
59 object Post( object t );
65 private readonly Func<object, object> _preAction;
66 private readonly Func<object, object> _postAction;
68 public TreeVisitorAction( Func<object, object> preAction, Func<object, object> postAction
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IRuleReturnScope.cs 43 object Start
51 object Stop
IAstRuleReturnScope.cs 39 object Tree
ITemplateRuleReturnScope.cs 37 object Template
  /external/webkit/Source/WebCore/rendering/
RenderIFrame.h 51 inline RenderIFrame* toRenderIFrame(RenderObject* object)
53 ASSERT(!object || object->isRenderIFrame());
54 return static_cast<RenderIFrame*>(object);
57 inline const RenderIFrame* toRenderIFrame(const RenderObject* object)
59 ASSERT(!object || object->isRenderIFrame());
60 return static_cast<const RenderIFrame*>(object);
RenderDetailsMarker.h 49 inline RenderDetailsMarker* toRenderDetailsMarker(RenderObject* object)
51 ASSERT(!object || object->isDetailsMarker());
52 return static_cast<RenderDetailsMarker*>(object);
55 inline const RenderDetailsMarker* toRenderDetailsMarker(const RenderObject* object)
57 ASSERT(!object || object->isDetailsMarker());
58 return static_cast<const RenderDetailsMarker*>(object);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLBlock.h 55 int getBoxModelObjectHeight(RenderObject* object)
57 if (object && object->isBoxModelObject()) {
58 RenderBoxModelObject* box = toRenderBoxModelObject(object);
64 int getBoxModelObjectHeight(const RenderObject* object)
66 if (object && object->isBoxModelObject()) {
67 const RenderBoxModelObject* box = toRenderBoxModelObject(object);
73 int getBoxModelObjectWidth(RenderObject* object)
75 if (object && object->isBoxModelObject())
    [all...]
  /external/elfutils/libebl/
eblobjecttypename.c 1 /* Return object file type name.
60 ebl_object_type_name (ebl, object, buf, len)
62 int object;
68 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL;
72 if (object >= ET_LOOS && object <= ET_HIOS)
73 snprintf (buf, len, "LOOS+%x", object - ET_LOOS);
75 else if (object >= ET_LOPROC && object <= ET_HIPROC)
76 snprintf (buf, len, "LOPROC+%x", object - ET_LOPROC)
    [all...]
  /libcore/json/src/test/java/org/json/
JSONObjectTest.java 37 JSONObject object = new JSONObject(); local
38 assertEquals(0, object.length());
40 // bogus (but documented) behaviour: returns null rather than the empty object!
41 assertNull(object.names());
44 assertNull(object.toJSONArray(new JSONArray()));
45 assertEquals("{}", object.toString());
46 assertEquals("{}", object.toString(5));
48 object.get("foo");
53 object.getBoolean("foo");
58 object.getDouble("foo")
115 JSONObject object = new JSONObject(); local
139 JSONObject object = new JSONObject(); local
157 JSONObject object = new JSONObject(); local
170 JSONObject object = new JSONObject(); local
181 JSONObject object = new JSONObject(); local
200 JSONObject object = new JSONObject(); local
210 JSONObject object = new JSONObject(); local
248 JSONObject object = new JSONObject(); local
260 JSONObject object = new JSONObject(); local
311 JSONObject object = new JSONObject(); local
348 JSONObject object = new JSONObject(); local
364 JSONObject object = new JSONObject(); local
398 JSONObject object = new JSONObject(); local
450 JSONObject object = new JSONObject(); local
476 JSONObject object = new JSONObject(); local
482 JSONObject object = new JSONObject(); local
492 JSONObject object = new JSONObject(); local
502 JSONObject object = new JSONObject(); local
523 JSONObject object = new JSONObject(); local
545 JSONObject object = new JSONObject(); local
570 JSONObject object = new JSONObject(); local
580 JSONObject object = new JSONObject(); local
588 JSONObject object = new JSONObject(); local
607 JSONObject object = new JSONObject(); local
626 JSONObject object = new JSONObject(); local
654 JSONObject object = new JSONObject(contents); local
662 JSONObject object = new JSONObject(Collections.singletonMap("foo", Double.NaN)); local
669 JSONObject object = new JSONObject(contents); local
686 JSONObject object = new JSONObject(new JSONTokener("{\\"foo\\": false}")); local
716 JSONObject object = new JSONObject("{\\"foo\\": false}"); local
772 JSONObject object = new JSONObject(); local
783 JSONObject object = new JSONObject(); local
790 JSONObject object = new JSONObject(); local
798 JSONObject object = new JSONObject(); local
807 JSONObject object = new JSONObject(); local
814 JSONObject object = new JSONObject(); local
826 JSONObject object = new JSONObject(); local
834 JSONObject object = new JSONObject(); local
852 JSONObject object = new JSONObject(); local
874 JSONObject object = new JSONObject(); local
885 JSONObject object = new JSONObject(); local
895 JSONObject object = new JSONObject(); local
918 JSONObject object = new JSONObject(); local
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebNSNotificationCenterExtras.h 33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object;
34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
WebNSNotificationCenterExtras.m 33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object
35 [self postNotificationOnMainThreadWithName:name object:object userInfo:nil waitUntilDone:NO];
38 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo
40 [self postNotificationOnMainThreadWithName:name object:object userInfo:userInfo waitUntilDone:NO];
43 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wai
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSCanvasRenderingContextCustom.cpp 40 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, CanvasRenderingContext* object)
42 if (!object)
46 if (object->is3d())
47 return wrap<JSWebGLRenderingContext>(exec, globalObject, static_cast<WebGLRenderingContext*>(object));
49 ASSERT(object->is2d());
50 return wrap<JSCanvasRenderingContext2D>(exec, globalObject, static_cast<CanvasRenderingContext2D*>(object));
JSSVGPathSegCustom.cpp 61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object)
63 if (!object)
66 if (JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), object))
69 switch (object->pathSegType()) {
71 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegClosePath, object);
73 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoAbs, object);
75 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoRel, object);
77 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoAbs, object);
79 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoRel, object);
81 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegCurvetoCubicAbs, object);
    [all...]
  /external/hamcrest/src/org/hamcrest/core/
IsSame.java 12 * Is the value the same object as another value?
15 private final T object; field in class:IsSame
17 public IsSame(T object) {
18 this.object = object;
21 public boolean matches(Object arg) {
22 return arg == object;
26 description.appendText("same(") .appendValue(object) .appendText(")");
32 * @param object The predicate evaluates to true only when the argument is
33 * this object
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
ObjectImage.h 1 //===---- ObjectImage.h - Format independent executuable object image -----===//
17 #include "llvm/Object/ObjectFile.h"
25 object::ObjectFile *ObjFile;
28 ObjectImage(object::ObjectFile *Obj) { ObjFile = Obj; }
31 virtual object::symbol_iterator begin_symbols() const
33 virtual object::symbol_iterator end_symbols() const
36 virtual object::section_iterator begin_sections() const
38 virtual object::section_iterator end_sections() const
46 virtual void updateSectionAddress(const object::SectionRef &Sec,
48 virtual void updateSymbolAddress(const object::SymbolRef &Sym, uint64_t Addr
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 52 public void Push(object item)
61 public object Pop()
63 object poppedItem = this[this.Count - 1];
72 public object Peek()
  /external/elfutils/tests/
run-get-pubnames.sh 34 object name: "main"
37 object name: "a"
40 object name: "bar"
43 object name: "foo"
46 object name: "bar"
49 object name: "foo"
52 object name: "main"
55 object name: "a"
  /external/proguard/src/proguard/evaluation/value/
ConvertedByteValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedByteValue)object).value);
ConvertedCharacterValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedCharacterValue)object).value);
ConvertedDoubleValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedDoubleValue)object).value);

Completed in 493 milliseconds

1 2 3 4 5 6 7 8 91011>>