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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/js/
JSCanvasRenderingContext2DCustom.cpp 7 * version 2 of the License, or (at your option) any later version.
104 if (args.at(0).isString())
105 context->setFillColor(asString(args.at(0))->value(exec));
107 context->setFillColor(args.at(0).toFloat(exec));
110 if (args.at(0).isString())
111 context->setFillColor(asString(args.at(0))->value(exec), args.at(1).toFloat(exec));
113 context->setFillColor(args.at(0).toFloat(exec), args.at(1).toFloat(exec));
116 context->setFillColor(args.at(0).toFloat(exec), args.at(1).toFloat(exec)
    [all...]
JSAbstractWorkerCustom.cpp 49 JSValue listener = args.at(1);
53 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
59 JSValue listener = args.at(1);
63 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSEventSourceCustom.cpp 48 JSValue listener = args.at(1);
52 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
58 JSValue listener = args.at(1);
62 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSMessageEventCustom.cpp 59 const UString& typeArg = args.at(0).toString(exec);
60 bool canBubbleArg = args.at(1).toBoolean(exec);
61 bool cancelableArg = args.at(2).toBoolean(exec);
62 PassRefPtr<SerializedScriptValue> dataArg = SerializedScriptValue::create(exec, args.at(3));
63 const UString& originArg = args.at(4).toString(exec);
64 const UString& lastEventIdArg = args.at(5).toString(exec);
65 DOMWindow* sourceArg = toDOMWindow(args.at(6));
67 if (!args.at(7).isUndefinedOrNull()) {
69 fillMessagePortArray(exec, args.at(7), *messagePorts);
JSPopStateEventCustom.cpp 38 const UString& typeArg = args.at(0).toString(exec);
39 bool canBubbleArg = args.at(1).toBoolean(exec);
40 bool cancelableArg = args.at(2).toBoolean(exec);
41 RefPtr<SerializedScriptValue> stateObjectArg = SerializedScriptValue::create(exec, args.at(3));
JSXSLTProcessorCustom.cpp 51 JSValue nodeVal = args.at(0);
63 JSValue nodeVal = args.at(0);
64 JSValue docVal = args.at(1);
76 JSValue nodeVal = args.at(0);
90 if (args.at(1).isUndefinedOrNull() || args.at(2).isUndefinedOrNull())
92 String namespaceURI = args.at(0).toString(exec);
93 String localName = args.at(1).toString(exec);
94 String value = args.at(2).toString(exec);
101 if (args.at(1).isUndefinedOrNull()
    [all...]
JSDesktopNotificationsCustom.cpp 55 if (!args.at(0).isObject())
58 PassRefPtr<JSCustomVoidCallback> callback = JSCustomVoidCallback::create(args.at(0).getObject(), static_cast<Document*>(context)->frame());
66 JSValue listener = args.at(1);
70 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener)), false, currentWorld(exec)), args.at(2).toBoolean(exec));
76 JSValue listener = args.at(1);
80 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSWebSocketCustom.cpp 53 const String& msg = args.at(0).toString(exec);
64 JSValue listener = args.at(1);
68 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
74 JSValue listener = args.at(1);
78 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSDatabaseCustom.cpp 52 String oldVersion = args.at(0).toString(exec);
53 String newVersion = args.at(1).toString(exec);
56 if (!(object = args.at(2).getObject())) {
64 if (!args.at(3).isNull()) {
65 if (!(object = args.at(3).getObject())) {
74 if (!args.at(4).isNull()) {
75 if (!(object = args.at(4).getObject())) {
92 if (!(object = args.at(0).getObject())) {
100 if (args.size() > 1 && !args.at(1).isNull()) {
101 if (!(object = args.at(1).getObject()))
    [all...]
JSSVGElementInstanceCustom.cpp 51 JSValue listener = args.at(1);
55 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
61 JSValue listener = args.at(1);
65 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSXMLHttpRequestUploadCustom.cpp 56 JSValue listener = args.at(1);
60 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
66 JSValue listener = args.at(1);
70 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSSQLTransactionCustom.cpp 52 String sqlStatement = args.at(0).toString(exec);
58 if (!args.at(1).isUndefinedOrNull()) {
59 JSObject* object = args.at(1).getObject();
91 if (!args.at(2).isUndefinedOrNull()) {
92 JSObject* object = args.at(2).getObject();
102 if (!args.at(3).isUndefinedOrNull()) {
103 JSObject* object = args.at(3).getObject();
JSDOMApplicationCacheCustom.cpp 52 const KURL& url = frame->loader()->completeURL(args.at(0).toString(exec));
65 const KURL& url = frame->loader()->completeURL(args.at(0).toString(exec));
78 const KURL& url = frame->loader()->completeURL(args.at(0).toString(exec));
90 JSValue listener = args.at(1);
94 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
100 JSValue listener = args.at(1);
104 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
  /cts/tools/signature-tools/src/signature/compare/
Main.java 6 * You may obtain a copy of the License at
53 int at = 0; local
55 if (!"--from".equals(args[at])) {
58 String fromType = args[++at];
62 ++at;
63 for (/* at */; at < args.length; at++) {
64 if ("--name".equals(args[at])) {
68 if ("--to".equals(args[at])) {
    [all...]
  /external/bison/tests/
Makefile.am 10 ## the Free Software Foundation; either version 2, or (at your option)
47 local.at \
48 testsuite.at \
49 input.at \
50 output.at sets.at reduce.at \
51 synclines.at headers.at actions.at conflicts.at
    [all...]
  /cts/tools/signature-tools/src/signature/converter/
Main.java 6 * You may obtain a copy of the License at
36 int at = 1; local
37 for (/* at */; at < args.length; at++) {
38 if ("--out".equals(args[at])) {
41 sources.add(args[at]);
44 if (!"--out".equals(args[at])) {
47 String targetFile = args[++at];
49 if (!"--name".equals(args[++at])) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 6 * You may obtain a copy of the License at
70 int at; local
73 for (at = 0; at < sz; at++) {
74 Attribute att = get(at);
85 for (at++; at < sz; at++) {
86 Attribute att = get(at);
    [all...]
  /external/qemu/elff/
dwarf_utils.h 24 * at - DWARF attribute ID to get name string for.
29 const char* dwarf_at_name(Dwarf_At at);
51 * at - Attribute ID (DW_AT_Xxx)
55 void dump_attrib(Dwarf_At at, Dwarf_Form form, const Dwarf_Value* val);
  /external/webkit/JavaScriptCore/runtime/
DateConstructor.cpp 8 * version 2 of the License, or (at your option) any later version.
83 if (args.at(0).inherits(&DateInstance::info))
84 value = asDateInstance(args.at(0))->internalNumber();
86 JSValue primitive = args.at(0).toPrimitive(exec);
93 if (isnan(args.at(0).toNumber(exec))
94 || isnan(args.at(1).toNumber(exec))
95 || (numArgs >= 3 && isnan(args.at(2).toNumber(exec)))
96 || (numArgs >= 4 && isnan(args.at(3).toNumber(exec)))
97 || (numArgs >= 5 && isnan(args.at(4).toNumber(exec)))
98 || (numArgs >= 6 && isnan(args.at(5).toNumber(exec))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
SwitchList.java 6 * You may obtain a copy of the License at
81 * Gets the indicated target. Asking for the target at {@code size()}
102 * Gets the list of all targets. This includes one extra element at the
173 int at = 0; local
178 if (i != at) {
179 targets.set(at, target);
180 values.set(at, values.get(i));
182 at++;
186 if (at != sz) {
187 values.shrink(at);
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstUtf8.java 6 * You may obtain a copy of the License at
84 for (int at = 0; length > 0; /*at*/) {
85 int v0 = bytes.getUnsignedByte(at);
94 return throwBadUtf8(v0, at);
97 at++;
104 return throwBadUtf8(v0, at);
106 int v1 = bytes.getUnsignedByte(at + 1);
108 return throwBadUtf8(v1, at + 1);
116 return throwBadUtf8(v1, at + 1)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 6 * You may obtain a copy of the License at
164 int at = 10; // offset from the start of the file to the first cst local
168 offsets[i] = at;
169 int tag = bytes.getUnsignedByte(at);
178 at += 5;
184 at += 9;
190 at += 3;
195 at += bytes.getUnsignedShort(at + 1) + 3;
202 " at offset " + Hex.u4(at))
226 int at = offsets[idx]; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
MemberListParser.java 6 * You may obtain a copy of the License at
175 int at = offset + 2; // Skip the count. local
187 int accessFlags = bytes.getUnsignedShort(at);
188 int nameIdx = bytes.getUnsignedShort(at + 2);
189 int descIdx = bytes.getUnsignedShort(at + 4);
194 observer.startParsingMember(bytes, at, name.getString(),
196 observer.parsed(bytes, at, 0, "\n" + humanName() +
199 observer.parsed(bytes, at, 2,
202 observer.parsed(bytes, at + 2, 2,
204 observer.parsed(bytes, at + 4, 2
    [all...]
  /dalvik/dx/src/com/android/dx/util/
HexParser.java 6 * You may obtain a copy of the License at
47 int at = 0; local
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
SuballocatedIntVector.java 8 * You may obtain a copy of the License at
37 * Retrieval performance is critical, since this is used at the core
155 // total of m_blocksize squared elements, which at the default
156 // size is 4M integers... and we grow by at least that much each
245 * Inserts the specified node in this vector at the specified index.
253 * @param at Index of where to insert
255 private void insertElementAt(int value, int at)
257 if(at==m_firstFree)
259 else if (at>m_firstFree)
261 int index=at>>>m_SHIFT
330 int at=indexOf(s,0); local
    [all...]

Completed in 746 milliseconds

1 2 3 4 5 6 7 8 91011>>