HomeSort by relevance Sort by last modified time
    Searched defs:at (Results 101 - 125 of 368) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/runtime/
ArgList.h 8 * version 2 of the License, or (at your option) any later version.
91 JSValue at(size_t i) const function in class:JSC::MarkedArgumentBuffer
220 JSValue at(size_t idx) const function in class:JSC::ArgList
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 51 LDSymbol& at(size_t pPosition) function in class:mcld::SymbolCategory
52 { return *m_OutputSymbols.at(pPosition); }
54 const LDSymbol& at(size_t pPosition) const function in class:mcld::SymbolCategory
55 { return *m_OutputSymbols.at(pPosition); }
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroupThunker.java 6 * You may obtain a copy of the License at
34 AllocationThunker at = (AllocationThunker) a; local
35 mN.setInput(s.mN, at.getNObj());
39 AllocationThunker at = (AllocationThunker) a; local
40 mN.setOutput(s.mN, at.getNObj());
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 45 void (*at)(void); member in union:exit_function::__anon22070
  /ndk/tests/device/test-gnustl-full/unit/
deque_test.cpp 2 //into account (at least using GCC 4.0.1)
24 CPPUNIT_TEST(at);
39 void at();
104 //Insertion at end:
137 //Insertion of several elements at end:
157 void DequeTest::at() { function in class:DequeTest
162 CPPUNIT_ASSERT( d.at(0) == 10 );
163 d.at(0) = 20;
164 CPPUNIT_ASSERT( cd.at(0) == 20 );
169 d.at(1) = 20
    [all...]
  /ndk/tests/device/test-stlport/unit/
deque_test.cpp 2 //into account (at least using GCC 4.0.1)
24 CPPUNIT_TEST(at);
39 void at();
104 //Insertion at end:
137 //Insertion of several elements at end:
157 void DequeTest::at() { function in class:DequeTest
162 CPPUNIT_ASSERT( d.at(0) == 10 );
163 d.at(0) = 20;
164 CPPUNIT_ASSERT( cd.at(0) == 20 );
169 d.at(1) = 20
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 6 * the License at
396 AlertsTable at = new AlertsTable(); local
397 NotificationTestManager ntm = new NotificationTestManager(at.mAlerts,
403 at.getAlertCursor(), currentTime, AlertService.MAX_NOTIFICATIONS);
412 AlertsTable at = new AlertsTable(); local
413 NotificationTestManager ntm = new NotificationTestManager(at.mAlerts,
416 int id = at.addAlertRow(100, SCHEDULED, ACCEPTED, 0 /* all day */, 1300000, 2300000, 0);
422 AlertService.generateAlerts(mContext, ntm, alarmMgr, prefs, at.getAlertCursor(), currentTime,
431 AlertService.generateAlerts(mContext, ntm, alarmMgr, prefs, at.getAlertCursor(), currentTime,
439 AlertService.generateAlerts(mContext, ntm, alarmMgr, prefs, at.getAlertCursor(), currentTime
449 AlertsTable at = new AlertsTable(); local
522 AlertsTable at = new AlertsTable(); local
587 AlertsTable at = new AlertsTable(); local
610 AlertsTable at = new AlertsTable(); local
728 AlertsTable at = new AlertsTable(); local
757 AlertsTable at = new AlertsTable(); local
789 AlertsTable at = new AlertsTable(); local
849 AlertsTable at = new AlertsTable(); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MixedItemSection.java 6 * You may obtain a copy of the License at
286 * Places all the items in this instance at particular offsets. This
335 int at = 0; local
347 int writeAt = (at + alignMask) & ~alignMask;
349 if (at != writeAt) {
350 out.writeZeroes(writeAt - at);
351 at = writeAt;
355 at += one.writeSize();
358 if (at != writeSize) {
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 6 * You may obtain a copy of the License at
64 int at = 1; local
67 int startAt = at;
68 char c = descriptor.charAt(at);
70 at++;
76 at++;
77 c = descriptor.charAt(at);
82 int endAt = descriptor.indexOf(';', at);
86 at = endAt + 1;
88 at++
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 6 * You may obtain a copy of the License at
159 int at = 0; local
164 locals.set(at, one);
165 at += one.getCategory();
296 * in the subroutine at the end of "subroutines" passed into
303 * Merges this frame with the frame of a subroutine caller at
304 * {@code predLabel}. Only called on the frame at the first
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 6 * You may obtain a copy of the License at
181 int at = 10; // offset from the start of the file to the first cst local
185 offsets[i] = at;
186 int tag = bytes.getUnsignedByte(at);
195 at += 5;
201 at += 9;
207 at += 3;
212 at += bytes.getUnsignedShort(at + 1) + 3;
219 " at offset " + Hex.u4(at))
243 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/command/dump/
BaseDumper.java 6 * You may obtain a copy of the License at
68 private int at; field in class:BaseDumper
92 this.at = 0;
131 if (offset < at) {
133 at = offset;
134 } else if (offset > at) {
135 String hex = rawBytes ? hexDump(at, offset - at) : "";
137 at = offset;
142 at += len
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MixedItemSection.java 6 * You may obtain a copy of the License at
286 * Places all the items in this instance at particular offsets. This
335 int at = 0; local
347 int writeAt = (at + alignMask) & ~alignMask;
349 if (at != writeAt) {
350 out.writeZeroes(writeAt - at);
351 at = writeAt;
355 at += one.writeSize();
358 if (at != writeSize) {
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 6 * You may obtain a copy of the License at
68 int at = 1; local
71 int startAt = at;
72 char c = descriptor.charAt(at);
74 at++;
80 at++;
81 c = descriptor.charAt(at);
86 int endAt = descriptor.indexOf(';', at);
90 at = endAt + 1;
92 at++
    [all...]
  /dalvik/libdex/
DexProto.cpp 6 * You may obtain a copy of the License at
76 * If the given DexStringCache doesn't already point at the given value,
79 * function is intended to be used after making a call that at least
151 char *at = (char*) pCache->value; local
152 *(at++) = '(';
157 strcpy(at, desc);
158 at += strlen(desc);
161 *(at++) = ')';
163 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
196 char *at = (char*) pCache->value local
    [all...]
  /external/apache-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...]
  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.cc 61 size_t at = jid_string.find('@'); local
63 if (at < slash && at != std::string::npos) {
64 node_name = jid_string.substr(0, at);
65 domain_begin = at + 1;
473 // can't be right. We should at least be checking that there are no '/'
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MixedItemSection.java 6 * You may obtain a copy of the License at
286 * Places all the items in this instance at particular offsets. This
335 int at = 0; local
347 int writeAt = (at + alignMask) & ~alignMask;
349 if (at != writeAt) {
350 out.writeZeroes(writeAt - at);
351 at = writeAt;
355 at += one.writeSize();
358 if (at != writeSize) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 6 * You may obtain a copy of the License at
68 int at = 1; local
71 int startAt = at;
72 char c = descriptor.charAt(at);
74 at++;
80 at++;
81 c = descriptor.charAt(at);
86 int endAt = descriptor.indexOf(';', at);
90 at = endAt + 1;
92 at++
    [all...]
  /external/quake/quake/src/QW/client/
r_part.c 7 of the License, or (at your option) any later version.
24 #define MAX_PARTICLES 2048 // default max # of particles at one
457 unsigned char *at; local
535 at = (byte *)&d_8to24table[(int)p->color];
547 glColor4ub (*at, *(at+1), *(at+2), theAlpha);
548 // glColor3ubv (at);
  /external/stlport/stlport/stl/debug/
_string.h 9 * or implied. Any use is at your own risk.
230 const_reference at(size_type __n) const { return _M_non_dbg_impl.at(__n); } function in class:basic_string
231 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); } function in class:basic_string
  /external/stlport/stlport/stl/pointers/
_vector.h 6 * or implied. Any use is at your own risk.
103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); } function in class:vector
104 const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n)); } function in class:vector
  /external/stlport/test/unit/
vector_test.cpp 2 //into account (at least using GCC 4.0.1)
31 CPPUNIT_TEST(at);
54 void at();
313 void VectorTest::at() { function in class:VectorTest
318 CPPUNIT_ASSERT( v.at(0) == 10 );
319 v.at(0) = 20;
320 CPPUNIT_ASSERT( cv.at(0) == 20 );
324 v.at(1) = 20;
  /external/v8/src/
mksnapshot.cc 112 fprintf(fp, "%u", static_cast<unsigned char>(at(j)));
115 char at(int i) { return data_[i]; } function in class:PartialSnapshotSink
313 // If we don't do this then we end up with a stray root pointing at the

Completed in 1882 milliseconds

1 2 3 45 6 7 8 91011>>