HomeSort by relevance Sort by last modified time
    Searched defs:to (Results 226 - 250 of 1676) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/compiler/
node.cc 26 // to this out-of-line-storage.
107 Node* to = *inputs++; local
108 input_ptr[current] = to;
112 to->AppendUse(use);
156 // switch to out of line inputs.
229 if (new_input_count == current_count) return; // Nothing to do.
252 // Update the pointers to {this} to point to {that}.
356 CHECK_EQ(this->InputAt(index), edge.to());
    [all...]
  /external/v8/src/profiler/
cpu-profiler.h 64 Address to; member in class:v8::internal::CodeMoveEventRecord
147 // stack frame entries are filled.) This method returns a pointer to the
153 // can fulfil, so we need to provide our own new/delete here.
238 virtual void CodeMoveEvent(Address from, Address to);
245 virtual void SharedFunctionInfoMoveEvent(Address from, Address to) {}
  /external/v8/src/regexp/
interpreter-irregexp.cc 52 // Convert both characters to lower case.
165 // is returned to the system or cached if there is no stack being cached at
421 uint32_t to = Load16Aligned(pc + 6); local
422 if (from <= current_char && current_char <= to) {
431 uint32_t to = Load16Aligned(pc + 6); local
432 if (from > current_char || current_char > to) {
  /external/v8/src/
v8threads.cc 20 // API code to verify that the lock is always held when V8 is being entered.
26 // Once the Locker is initialized, the current thread will be guaranteed to have
40 // This may be a locker within an unlocker in which case we have to
120 // If there is another thread that was lazily archived then we have to really
289 char* to = state->data(); local
292 to = isolate_->handle_scope_implementer()->ArchiveThread(to);
293 to = isolate_->ArchiveThread(to);
294 to = Relocatable::ArchiveState(isolate_, to)
    [all...]
  /external/zlib/src/contrib/blast/
blast.c 7 * This function provides functionality similar to the explode() function of
17 * which decompresses to "AIAIAIAIAIAIA" (without the quotes).
40 void *inhow; /* opaque information passed to infun() */
51 void *outhow; /* opaque information passed to outfun() */
53 int first; /* true to check distances (for first 4K) */
63 * - Bits are stored in bytes from the least significant bit to the most
65 * buffer, using shift right, and new bytes are appended to the top of the
84 /* drop need bits and update buffer, always zero to seven bits left */
112 * - The codes as stored in the compressed data are bit-reversed relative to
114 * bits are pulled from the compressed data one at a time and used to
286 unsigned char *from, *to; \/* copy pointers *\/ local
    [all...]
  /external/zlib/src/examples/
gzappend.c 1 /* gzappend -- command to append to a gzip file
10 Permission is granted to anyone to use this software for any purpose,
11 including commercial applications, and to alter it and redistribute it
12 freely, subject to the following restrictions:
30 * - Add version and copyright to help
31 * - Send help to stdout instead of stderr
33 * - Add L to constants in lseek() calls
41 * (Why you ask? Because it was fun to write!
127 unsigned char *start, *last, *to, *from; local
    [all...]
  /frameworks/base/core/java/android/text/
Selection.java 10 * Unless required by applicable law or agreed to in writing, software
64 * Set the selection anchor to <code>start</code> and the selection edge
65 * to <code>stop</code>.
84 * Move the cursor to offset <code>index</code>.
98 * Move the selection edge to offset <code>index</code>.
118 * Move the cursor to the buffer offset physically above the current
119 * offset, to the beginning if it is on the top line but not at the
163 * Move the cursor to the buffer offset physically below the current
164 * offset, to the end of the buffer if it is on the bottom line but
209 * Move the cursor to the buffer offset physically to the left o
221 int to = layout.getOffsetToLeftOf(end); local
246 int to = layout.getOffsetToRightOf(end); local
321 int to = layout.getOffsetToLeftOf(end); local
337 int to = layout.getOffsetToRightOf(end); local
    [all...]
  /frameworks/base/core/java/android/widget/
SimpleAdapter.java 10 * Unless required by applicable law or agreed to in writing, software
34 * An easy adapter to map static data to views defined in an XML file. You can specify the data
35 * backing the list as an ArrayList of Maps. Each entry in the ArrayList corresponds to one row
37 * defines the views used to display the row, and a mapping from keys in the Map to specific
40 * Binding data to views occurs in two phases. First, if a
76 * @param data A List of Maps. Each entry in the List corresponds to one row in the list. The
80 * item. The layout file should include at least those named views defined in "to"
81 * @param from A list of column names that will be added to the Map associated with eac
190 final int[] to = mTo; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Sms7BitEncodingTranslator.java 10 * Unless required by applicable law or agreed to in writing, software
47 private static final String XML_TO_TAG = "to";
54 * message to be translated
99 * character to be translated
114 * Trying to translate unicode to Gsm 7-bit alphabet; If c is not
115 * present on translation table, c does not belong to Unicode Latin-1
116 * (Basic + Supplement), so we don't know how to translate it to a Gsm
140 Rlog.v(TAG, Integer.toHexString(c) + " (" + c + ")" + " translated to "
210 int to = parser.getAttributeUnsignedIntValue(null, local
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
ItemTouchHelperTest.java 10 * Unless required by applicable law or agreed to in writing, software
248 RecyclerView.ViewHolder from, to; field in class:ItemTouchHelperTest.MoveRecord
251 RecyclerView.ViewHolder to) {
253 this.to = to;
255 toPos = to.getAdapterPosition();
  /libcore/ojluni/src/main/java/sun/net/smtp/
SmtpClient.java 8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * the "to" method to add destinations, calling "from" to name the
37 * sender, calling startMessage to return a stream to which you write
50 * issue the QUIT command to the SMTP server and close the connection.
71 issueCommand("rcpt to: " + s + "\r\n", 250);
73 issueCommand("rcpt to: <" + s + ">\r\n", 250)
76 public void to(String s) throws IOException { method in class:SmtpClient
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
ServerSocketAdaptor.java 8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
36 // java.net.ServerSocket so as to simplify tracking future changes to that
116 long to = timeout; local
121 int ns = sel.select(to);
126 to -= System.currentTimeMillis() - st;
127 if (to <= 0)
  /ndk/sources/android/support/src/musl-locale/
iconv.c 107 iconv_t iconv_open(const char *to, const char *from)
111 if ((t = find_charmap(to))==-1
162 unsigned to = cd & 0xffff; local
165 const unsigned char *tomap = charmaps+to+1;
311 /* A few HKSCS characters map to pairs of UCS
312 * characters. These are mapped to surrogate
319 x += iconv((iconv_t)(uintptr_t)to,
  /ndk/tests/device/test-gnustl-full/unit/
codecvt_test.cpp 297 //Maybe we simply do not have write access to repository
337 /* This test is broken, not sure if it is really possible to get a position in
398 wchar_t to[1]; local
401 to, to + sizeof(to) / sizeof(wchar_t), next_to);
404 CPPUNIT_ASSERT( next_to == &to[0] + 1 );
405 CPPUNIT_ASSERT( to[0] == L'a');
412 char to[1]; local
415 to, to + sizeof(to) / sizeof(char), next_to)
    [all...]
  /ndk/tests/device/test-stlport/unit/
codecvt_test.cpp 297 //Maybe we simply do not have write access to repository
337 /* This test is broken, not sure if it is really possible to get a position in
398 wchar_t to[1]; local
401 to, to + sizeof(to) / sizeof(wchar_t), next_to);
404 CPPUNIT_ASSERT( next_to == &to[0] + 1 );
405 CPPUNIT_ASSERT( to[0] == L'a');
412 char to[1]; local
415 to, to + sizeof(to) / sizeof(char), next_to)
    [all...]
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/widget/multiwaveview/
Tweener.java 10 * Unless required by applicable law or agreed to in writing, software
52 break; // an animator can only be attached to one object
57 public static Tweener to(Object object, long duration, Object... vars) { method in class:Tweener
63 // Iterate through arguments and discover properties to animate
137 return Tweener.to(object, duration, vars);
140 // Listener to watch for completed animations and remove them.
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 10 * Unless required by applicable law or agreed to in writing, software
21 // FilterDeleteSet filters a base MediaSet to remove some deletion items (we
22 // expect the number to be small). The user can use the following methods to
90 // to be adjusted.
100 // We need to figure out the [3, 7] actually maps to the original index 4,
132 // Now get enough to cover deleted items in [start, end]
144 // We apply the pending requests in the mRequests to construct mCurrent in reload().
189 // don't want to search the whole mBaseSet, so we just search
201 int to = Math.min(maxIndex + 5, n); local
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionTestHelpers.java 10 * Unless required by applicable law or agreed to in writing, software
49 // Implement the onChange(boolean, Uri) method to take advantage of the new Uri argument.
88 int to; field in class:ActionTestHelpers.StubChatActionMonitor.StateTransition
89 public StateTransition(final Action action, final int from, final int to) {
92 this.to = to;
  /packages/apps/Settings/src/com/android/settings/
ZonePicker.java 10 * Unless required by applicable law or agreed to in writing, software
86 final int[] to = new int[] {android.R.id.text1, android.R.id.text2}; local
96 to);
107 * @param tz TimeZone to be searched.
119 // If current timezone is in this list, move focus to it
129 * @return TimeZone object corresponding to the item.
  /packages/apps/UnifiedEmail/src/com/android/mail/print/
PrintUtils.java 3 * Licensed to The Android Open Source Project.
11 * Unless required by applicable law or agreed to in writing, software
45 * Utility class that provides utility functions to print
86 * Sets up a webview to perform the printing work.
116 throw new IllegalStateException("trying to print without a conversation");
154 * Adds the html for a single message to the
172 * reply-to, to, cc, and bcc.
178 // reply-to
183 // to
189 final String to = renderEmailList(res, message.getToAddresses(), addressCache); local
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnJni.h 10 * Unless required by applicable law or agreed to in writing, software
85 NJ_UINT8* to; member in struct:__anon35546
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 10 * Unless required by applicable law or agreed to in writing, software
174 // To ensure the data column position. This is dead code if properly configured.
202 * and used to re-identify the contact. If the contact still cannot be found, an empty cursor
283 int to = snippet.length(); local
297 to = lastNl;
302 for (int i = from; i < to; i++) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbshelve.py 21 # 13-Dec-2000: Updated to be used with the new bsddb3 package.
41 import cPickle # Will be converted to "pickle" by "2to3" namespace
120 """A shelf to hold pickled objects, built upon a bsddb DB object. It
121 automatically pickles/unpickles data objects going to/from the DB.
137 """Many methods we can just pass through to the DB object.
176 # Or is it enough to pass thru "getattr"?
246 # given nothing is passed to the extension module. That way
278 # Methods allowed to pass-through to self.db
298 """Some methods we can just pass through to the cursor object. (See below)""
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
util.py 2 # Module providing various facilities to other parts of the package
19 # used to endorse or promote products derived from this software
23 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 import threading # we want threading to install it's namespace
114 Turn on logging and add a handler which prints to stderr
220 Return whether this finalizer is still waiting to invoke callback
291 # NB: we hold on to references to functions in the arglist due to th
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbshelve.py 21 # 13-Dec-2000: Updated to be used with the new bsddb3 package.
41 import cPickle # Will be converted to "pickle" by "2to3" namespace
120 """A shelf to hold pickled objects, built upon a bsddb DB object. It
121 automatically pickles/unpickles data objects going to/from the DB.
137 """Many methods we can just pass through to the DB object.
176 # Or is it enough to pass thru "getattr"?
246 # given nothing is passed to the extension module. That way
278 # Methods allowed to pass-through to self.db
298 """Some methods we can just pass through to the cursor object. (See below)""
    [all...]

Completed in 710 milliseconds

1 2 3 4 5 6 7 8 91011>>