HomeSort by relevance Sort by last modified time
    Searched defs:from (Results 151 - 175 of 1228) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/protobuf/python/google/protobuf/pyext/
repeated_scalar_container.cc 16 // contributors may be used to endorse or promote products derived from
286 "Getting value from a repeated field of unknown type %d",
294 Py_ssize_t from; local
302 from = to = PyInt_AsLong(slice);
306 from = to = PyLong_AsLong(slice);
314 length, &from, &to, &step, &slicelength) == -1) {
324 return Item(self, from);
331 if (from <= to) {
335 for (Py_ssize_t index = from; index < to; index += step) {
346 for (Py_ssize_t index = from; index > to; index += step)
    [all...]
  /external/skia/src/animator/
SkAnimateBase.h 56 SkString from; member in class:SkAnimateBase
  /external/wpa_supplicant_8/src/drivers/
netlink.c 41 struct sockaddr_nl from; local
47 fromlen = sizeof(from);
49 (struct sockaddr *) &from, &fromlen);
  /external/zlib/src/
inffast.c 78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
208 from = out - dist;
210 PUP(out) = PUP(from);
216 from = window - OFF;
218 from += wsize - op;
219 if (op < len) { /* some from window */
222 PUP(out) = PUP(from);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/captureintent/state/
StateBackgroundWithSurfaceTexture.java 43 * Used to transition from StateOpeningCamera, StateStartingPreview and
46 public static StateBackgroundWithSurfaceTexture from( method in class:StateBackgroundWithSurfaceTexture
71 return Optional.of((State) StateForegroundWithSurfaceTexture.from(
84 return Optional.of((State) StateBackground.from(
StateForegroundWithSurfaceTexture.java 38 // Used to transition from BackgroundWithSurfaceTexture on module is resumed.
39 public static StateForegroundWithSurfaceTexture from( method in class:StateForegroundWithSurfaceTexture
73 return Optional.of((State) StateOpeningCamera.from(this, mResourceConstructed,
76 return Optional.of((State) StateFatal.from(this, mResourceConstructed));
StateSavingPicture.java 47 public static StateSavingPicture from( method in class:StateSavingPicture
90 return Optional.of((State) StateIntentCompleted.from(
101 return Optional.of((State) StateIntentCompleted.from(
105 return Optional.of((State) StateIntentCompleted.from(this, mResourceConstructed));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
NameDistance.java 114 int from = i - range; local
115 if (from < 0) {
116 from = 0;
124 for (int j = from; j < to; j++) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
nbd.h 9 * Removed unneeded blksize_bits field from nbd_device struct.
55 __be64 from; member in struct:nbd_request
66 char handle[8]; /* handle you got from request */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
nbd.h 9 * Removed unneeded blksize_bits field from nbd_device struct.
55 __be64 from; member in struct:nbd_request
66 char handle[8]; /* handle you got from request */
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 39 import gov.nist.javax.sip.header.From;
404 * Check the response structure. Must have from, to CSEQ and VIA
415 throw new ParseException(From.NAME+ " Is missing ", 0);
560 From from = (From) this.getFrom(); local
564 //retval.append(COLON).append(from.getUserAtHostPort());
565 if (from.getTag() != null) {
567 retval.append(from.getTag());
580 //retval.append(COLON).append(from.getUserAtHostPort())
591 From from = (From) this.getFrom(); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
nbd.h 4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
59 __be64 from; member in struct:nbd_request
  /cts/tests/tests/net/src/android/net/ipv6/cts/
PingTest.java 41 * functionality can be obtained by cherry-picking the following patches from David Miller's
118 InetSocketAddress from = new InetSocketAddress(); local
119 bytesRead = Os.recvfrom(s, responseBuffer, 0, from);
122 assertTrue(from.getAddress() instanceof Inet6Address);
123 Inet6Address fromAddress = (Inet6Address) from.getAddress();
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 34 * Constructor of (@link CatchTable) instances from table of labels and list of
40 * Represents catch block that was not processed yet. Holds "from" and "to"
45 String from; field in class:DasmCatchBuilder.UnprocessedCatch
55 * @param from
56 * "from" label
62 UnprocessedCatch(String exception, String from, String to,
64 this.from = from;
70 * Adds new exception type and branch label to current "from-to" block
74 * java/lang/Exception from Label1 to Label2 using Label3 .catc
182 CodeAddress from = lte.code_address; local
    [all...]
  /development/ndk/platforms/android-21/include/linux/
nbd.h 4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
59 __be64 from; member in struct:nbd_request
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java 42 * actions from search suggestions.
64 // invoked again (when the user executes a search from this activity, we don't create
102 String[] from = new String[] { DictionaryDatabase.KEY_WORD, local
111 R.layout.result, cursor, from, to);
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 52 // Get all of the rows from the database and create the item list
57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; local
64 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to);
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
Notepadv3.java 57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; local
64 new SimpleCursorAdapter(this, R.layout.notes_row, notesCursor, from, to);
  /external/boringssl/src/crypto/x509/
x_name.c 34 * The word 'cryptographic' can be left out if the rouines from the library
36 * 4. If you include any Windows specific code (or a derivative thereof) from
415 unsigned char *to, *from; local
432 from = to;
443 while((len > 0) && !(*from & 0x80) && isspace(*from))
445 from++;
449 to = from + len - 1;
464 if (*from & 0x80)
466 *to++ = *from++
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 123 char *from = Ident((char*)malloc(from_size)); local
125 strcpy(from, "hello");
126 strcpy(to, from);
127 strcpy(to + to_size - from_size, from);
128 // Length of "from" is too small.
129 EXPECT_DEATH(Ident(strcpy(from, "hello2")), RightOOBWriteMessage(0));
130 // "to" or "from" points to not allocated memory.
131 EXPECT_DEATH(Ident(strcpy(to - 1, from)), LeftOOBWriteMessage(1));
132 EXPECT_DEATH(Ident(strcpy(to, from - 1)), LeftOOBReadMessage(1));
133 EXPECT_DEATH(Ident(strcpy(to, from + from_size)), RightOOBReadMessage(0))
147 char *from = Ident((char*)malloc(from_size)); local
359 char *from = MallocAndMemsetString(from_size); local
394 char *from = MallocAndMemsetString(from_size); local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector1.cc 130 uptr from = path[i]; local
132 DDMutex *m0 = (DDMutex*)dd.getData(from);
137 dd.findEdge(from, to, &stk_from, &stk_to, &unique_tid);
138 // Printf("Edge: %zd=>%zd: %u/%u T%d\n", from, to, stk_from, stk_to,
  /external/guava/guava/src/com/google/common/collect/
Iterables.java 57 * @since 2.0 (imported from Google Collections Library)
126 * Removes, from an iterable, every element that belongs to the provided
132 * @param removeFrom the iterable to (potentially) remove elements from
134 * @return {@code true} if any element was removed from {@code iterable}
144 * Removes, from an iterable, every element that does not belong to the
150 * @param removeFrom the iterable to (potentially) remove elements from
152 * @return {@code true} if any element was removed from {@code iterable}
162 * Removes, from an iterable, every element that satisfies the provided
165 * @param removeFrom the iterable to (potentially) remove elements from
168 * @return {@code true} if any elements were removed from the iterabl
187 int from = 0; local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java 55 * @since 2.0 (imported from Google Collections Library)
124 * Removes, from an iterable, every element that belongs to the provided
130 * @param removeFrom the iterable to (potentially) remove elements from
132 * @return {@code true} if any element was removed from {@code iterable}
142 * Removes, from an iterable, every element that does not belong to the
148 * @param removeFrom the iterable to (potentially) remove elements from
150 * @return {@code true} if any element was removed from {@code iterable}
160 * Removes, from an iterable, every element that satisfies the provided
163 * @param removeFrom the iterable to (potentially) remove elements from
166 * @return {@code true} if any elements were removed from the iterabl
185 int from = 0; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cdateintervalformattest.c 43 const UDate from; member in struct:__anon10093
92 int32_t fmtLen = udtitvfmt_format(udtitvfmt, testItemPtr->from, testItemPtr->to, result, kFormatBufLen, NULL, &status);
100 log_err("ERROR: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: expect %s, get %s\n",
101 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to,
105 log_err("FAIL: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: %s\n",
106 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to, myErrorName(status) );
  /external/icu/icu4c/source/test/intltest/
dadrcal.cpp 10 * 07/09/2007 srl Copied from dadrcoll.cpp
86 // Get 'from' time
107 // Headers { "locale","from","operation","params","to" }
126 // #2 'from' info
127 param = "from";
128 UnicodeString from = testSetting=currentCase->getString(param, status); local
135 if(from.startsWith(kMILLIS)){
136 UnicodeString millis = UnicodeString(from, kMILLIS.length());
196 UnicodeString caseContentsString = locale+": from "+from+":
411 UnicodeString from = currentCase->getString("from", status); local
    [all...]

Completed in 558 milliseconds

1 2 3 4 5 67 8 91011>>