/ndk/sources/host-tools/nawk-20071023/ |
b.c | 85 if (setvec == 0) { /* first time through any RE */ 381 int first(Node *p) /* collects initially active leaves of p into setvec */ function 395 overflo("out of space in first()"); 409 if (first(left(p)) == 0) return(0); 413 first(left(p)); 416 if (first(left(p)) == 0 && first(right(p)) == 0) return(0); 419 b = first(right(p)); 420 if (first(left(p)) == 0 || b == 0) return(0); 423 FATAL("can't happen: unknown type %d in first", type(p)); /* can't happen * [all...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
unroll1.cpp | 57 Element_t first() const { return DT::first(this->domain_m); } function in class:Domain 79 static int first(const Storage_t &d) { return d[0]; } function in struct:DomainTraits 89 dom[0] = newdom.first(); 126 static int first(int d) { return d; } function in struct:DomainTraits 379 int offset(const Loc &dom) const { return off_m + dom[0].first(); } 390 firsts_m = layout_m.domain()[0].first();
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
unroll1.cpp | 57 Element_t first() const { return DT::first(this->domain_m); } function in class:Domain 79 static int first(const Storage_t &d) { return d[0]; } function in struct:DomainTraits 89 dom[0] = newdom.first(); 126 static int first(int d) { return d; } function in struct:DomainTraits 379 int offset(const Loc &dom) const { return off_m + dom[0].first(); } 390 firsts_m = layout_m.domain()[0].first();
|
/packages/apps/Music/src/com/android/music/ |
TouchInterceptor.java | 256 View first = getChildAt(mSrcDragPos - getFirstVisiblePosition()); local 268 if (vv.equals(first)) { 273 } else if (vv.equals(first)) {
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
ConfigDialog.java | 97 // First, find out all the fields. 286 // First, hide everything. 375 String first = (firstId == 0) ? "" : context.getString(firstId); local 379 certificates = new String[] {first}; 382 array[0] = first; 405 // First, save common fields.
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParser.java | 803 if (c.gen < jj_gen) c.first = null; 948 jj_la = p.arg; jj_lastpos = jj_scanpos = p.first; 967 p.gen = jj_gen + xla - jj_la; p.first = token; p.arg = xla; 972 Token first; field in class:AddressListParser.JJCalls
|
/packages/apps/UnifiedEmail/tests/src/com/android/emailcommon/mail/ |
AddressUnitTests.java | 222 Address[] address3 = Address.parse("first last <address3@dom3.org>"); 225 assertEquals("name of address with name", "first last", address3[0].getPersonal()); 227 Address[] address4 = Address.parse("\"first,last\" <address4@dom4.org>"); 230 assertEquals("name of address with quoted name", "first,last", address4[0].getPersonal()); 683 Address first = Address.firstAddress(packed); local 684 assertTrue(packed, addressEquals(array[0], first));
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParser.java | 803 if (c.gen < jj_gen) c.first = null; 948 jj_la = p.arg; jj_lastpos = jj_scanpos = p.first; 967 p.gen = jj_gen + xla - jj_la; p.first = token; p.arg = xla; 972 Token first; field in class:AddressListParser.JJCalls
|
/prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/ |
test_all.py | 33 def first(self) : member in class:logcursor_py3k 34 v = self._logcursor.first() 131 def first(self) : member in class:cursor_py3k 132 v = self._dbcursor.first()
|
/prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/ |
test_all.py | 33 def first(self) : member in class:logcursor_py3k 34 v = self._logcursor.first() 131 def first(self) : member in class:cursor_py3k 132 v = self._dbcursor.first()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_all.py | 33 def first(self) : member in class:logcursor_py3k 34 v = self._logcursor.first() 131 def first(self) : member in class:cursor_py3k 132 v = self._dbcursor.first()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_all.py | 33 def first(self) : member in class:logcursor_py3k 34 v = self._logcursor.first() 131 def first(self) : member in class:cursor_py3k 132 v = self._dbcursor.first()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
AdtPlugin.java | 584 char first = string.charAt(0); local 589 } else if (c == first) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
ProjectCallback.java | 193 // first try to instantiate it because adding it the list of loaded class so that 269 int first = fqcn.indexOf('.'); local 271 if (last > first) { 272 return fqcn.substring(0, first) + ".." + fqcn.substring(last); //$NON-NLS-1$ 275 // For custom non-android classes, it's best to keep the 2 first segments of 277 int first = fqcn.indexOf('.'); local 278 first = fqcn.indexOf('.', first + 1); 280 if (last > first) { 281 return fqcn.substring(0, first) + ".." + fqcn.substring(last); //$NON-NLS-1 [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
DynamicContextMenu.java | 199 // We'll use the actions returned by the first node. Even when there 200 // are multiple items selected, we'll use the first action, but pass 201 // the set of all selected nodes to that first action. Actions are required 204 NodeProxy first = (NodeProxy) nodes.get(0); local 205 List<RuleAction> firstSelectedActions = allActions.get(first); 206 String defaultId = getDefaultActionId(first); 257 String first = children.get(0).getName(); local 259 if ((first.equals(FQCN_IMAGE_VIEW) && second.equals(FQCN_TEXT_VIEW)) 260 || (first.equals(FQCN_TEXT_VIEW) && second.equals(FQCN_IMAGE_VIEW))) { 538 NodeProxy first = (NodeProxy) mNodes.get(0) local [all...] |
/toolchain/binutils/binutils-2.25/gas/config/ |
tc-pdp11.c | 175 static int first = 1; 177 if (first) 181 first = 0; 174 static int first = 1; local
|
/toolchain/binutils/binutils-2.25/include/ |
oasys.h | 188 oasys_header_record_type first; member in union:oasys_record_union
|
/external/messageformat/java/com/ibm/icu/simple/ |
MessageFormat.java | 597 * than needed, then only the first <code>newFormats.length</code> [all...] |
/libcore/jsr166-tests/src/test/java/jsr166/ |
LinkedTransferQueueTest.java | 713 * drainTo(c, n) empties first min(n, size) elements of queue into c 806 Thread first = newStartedThread(new CheckedRunnable() { local 825 first.join(); [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
RawContactModifierTests.java | 216 // Add first home, first work 261 // Add first home, first work 296 // Add first home, first work 333 // Add first home, should now suggest work 634 final ContentValues first = new ContentValues(); local 635 first.put(Data._ID, TEST_ID); 636 first.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE) 712 final ContentValues first = new ContentValues(); local 769 final ContentValues first = new ContentValues(); local 788 final ContentValues first = new ContentValues(); local [all...] |
/prebuilts/tools/common/api-generator/ |
api-generator-22.9.4.jar | |
/prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/ |
hamcrest-library-1.3.jar | |
/prebuilts/devtools/tools/lib/ |
easymock-3.3.jar | |
/prebuilts/tools/common/m2/repository/org/easymock/easymock/3.3/ |
easymock-3.3.jar | |
/art/compiler/optimizing/ |
register_allocator.cc | 364 Location first = locations->InAt(0); local 365 if (first.IsRegister() || first.IsFpuRegister()) { 367 current->SetRegister(first.reg()); 368 } else if (first.IsPair()) { 370 current->SetRegister(first.low()); 372 high->SetRegister(first.high()); 400 // Split just before first register use. 413 // processed first. 738 // First set all registers to be free [all...] |