HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1326 - 1350 of 2135) sorted by null

<<51525354555657585960>>

  /external/webp/src/dsp/
enc_neon.c 4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
27 // This code is pretty much the same as TransformOne in the dec_neon.c, except
120 const int16_t* in, uint8_t* dst) {
122 INIT_VECTOR2(rows, vld1q_s16(in + 0), vld1q_s16(in + 8));
131 const int16_t* in, uint8_t* dst)
485 int16x4x4_t in; local
    [all...]
  /external/wpa_supplicant_8/src/utils/
http_curl.c 878 BIO *in, *out; local
884 in = BIO_new_file(fname, "r");
885 if (in == NULL) {
890 cert = d2i_X509_bio(in, NULL);
891 BIO_free(in);
    [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
189 " --user <USER_ID> | current: Specify user instrumentation runs in;\n" +
233 "am switch-user: switch to put USER_ID in the foreground, starting\n" +
236 "am start-user: start USER_ID in background if it is currently stopped,\n" +
237 " use switch-user if you want to start the user in foreground.\n" +
484 // Boolean.valueOf() results in false for anything that is not "true", which is
485 // error-prone in shell commands
618 // to fill in any data not specified so far.
1428 BufferedReader in = new BufferedReader(converter); local
    [all...]
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
559 * Lists all the permissions in a group.
773 * in PackageManager.
1071 InputStream in = null; local
    [all...]
  /frameworks/base/core/java/android/app/
ApplicationThreadNative.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
58 IApplicationThread in = local
60 if (in != null) {
61 return in;
    [all...]
  /frameworks/base/core/java/android/widget/
ExpandableListView.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
42 * A view that shows items in a vertically scrolling two-level list. This
68 * ExpandableListView in XML if the parent's size is also not strictly specified
110 /** The mask (in packed position representation) for the child */
113 /** The mask (in packed position representation) for the group */
116 /** The mask (in packed position representation) for the type */
119 /** The shift amount (in packed position representation) for the group */
122 /** The shift amount (in packed position representation) for the type */
125 /** The mask (in integer child position representation) for the child *
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ResolverActivity.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
185 // Note: this field is not set to true in the compatibility version.
388 * applications and running in system processes. This mode uses Activity.startActivityAsCaller
395 * more detailed onCreate methods, so that it will be set correctly in the case where
473 // This resolver is in the unusual situation where it has been
596 * Replace me in subclasses!
733 + " package " + launchedFromPackage + ", while running in "
743 Intent in = new Intent().setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS) local
746 startActivity(in);
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
451 "Early EOF encountered in skip, not enough pixel data for image of size %u",
457 "Error encountered while skip bytes in input stream.");
648 ALOGE("%s: moveEntries failed, entry %u not found in IFD %u", __FUNCTION__, tagId,
734 * For each color plane, find the corresponding noise profile coefficients given in the
735 * per-channel noise profile. If multiple channels in the CFA correspond to a color in the color
741 * numChannels - the number of noise profile coefficient pairs and color channels given in
743 * planeColors - the color planes in the noise profile output
1955 sp<JniInputStream> in = new JniInputStream(env, inStream); local
    [all...]
android_os_Debug.cpp 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
169 * Any graphics memory reported in /proc/pid/smaps is not included here.
205 * Retrieves the graphics memory that is unaccounted for in /proc/pid/smaps.
745 // these are implemented in android_util_Binder.cpp
812 * them, we can do this in place.
877 FILE* in = fopen(maps, "r"); local
878 if (in == NULL) {
883 while (size_t n = fread(buf, sizeof(char), BUFSIZ, in)) {
886 fclose(in);
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
126 * Parses the given time expression and returns a timestamp in millisecond.
135 * @return the parsed timestamp in micro-second.
187 * @param in A string to apply the policy.
189 public static String applyDefaultSpacePolicy(String in) {
190 return applySpacePolicy(in, true);
199 * @param in A string to apply the policy.
202 public static String applySpacePolicy(String in, boolean treatLfAsSpace) {
205 String crRemoved = in.replaceAll("\r\n", "\n")
397 StringReader in = new StringReader(ttmlFragment); local
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
177 throw new IllegalStateException("Cannot start in state:" + stateToString(mState));
200 throw new IllegalStateException("Cannot update in state:" + stateToString(mState));
222 // If no layout in progress and we don't have all pages - schedule a write.
264 throw new IllegalStateException("Cannot finish in state:"
286 throw new IllegalStateException("Cannot cancel in state:" + stateToString(mState));
299 throw new IllegalStateException("Cannot destroy in state:" + stateToString(mState));
349 InputStream in = null; local
353 in = new FileInputStream(file)
903 InputStream in = null; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
393 // TODO: Stop setting the MTU in jniCreate and set it here.
504 // Save the old config in case we need to go back.
1228 InputStream in = mSockets[i].getInputStream(); local
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_location_GpsLocationProvider.cpp 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 #include <linux/in.h>
222 struct sockaddr_in *in = (struct sockaddr_in*)&(agps_status->addr); local
223 uint32_t *pAddr = (uint32_t*)&(in->sin_addr);
229 // log the IP for reference in case there is a bogus value pushed by HAL
231 inet_ntop(AF_INET, &(in->sin_addr), str, INET_ADDRSTRLEN);
247 // log the IP for reference in case there is a bogus value pushed by HAL
260 // for back-compatibility reasons we check in v2 that the data structure size is greater or
261 // equal to the declared size in gps.
    [all...]
  /hardware/qcom/audio/hal/
audio_hw.c 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
57 /* ToDo: Check and update a proper value in msec */
448 * Do not handle stereo output in Multi-channel cases
449 * Stereo case is handled in normal playback path
560 usecase->devices = usecase->stream.in->device;
586 * Limitation: While in call, to do a device switch we need to disable
609 * the devices to reduce in-call device switch time.
653 static int stop_input_stream(struct stream_in *in)
657 struct audio_device *adev = in->dev
1677 struct stream_in *in = (struct stream_in *)stream; local
1689 struct stream_in *in = (struct stream_in *)stream; local
1697 struct stream_in *in = (struct stream_in *)stream; local
1714 struct stream_in *in = (struct stream_in *)stream; local
1743 struct stream_in *in = (struct stream_in *)stream; local
1800 struct stream_in *in = (struct stream_in *)stream; local
1851 struct stream_in *in = (struct stream_in *)stream; local
2349 struct stream_in *in; local
2524 struct stream_in in; local
    [all...]
  /hardware/ti/omap4-aah/camera/
CameraHal.cpp 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
61 // The directory name is choosed in so weird way to enable RAW images saving only when
173 @param[in] notify_cb Notify callback for notifying the app about events and errors
174 @param[in] data_cb Buffer callback for sending the preview/raw frames to the app
175 @param[in] data_cb_timestamp Buffer callback for sending the video frames w/ timestamp
176 @param[in] user Callback cookie
208 @param[in] msgtype Bitmask of the messages to enable (defined in include/ui/Camera.h)
222 // we will enable internally in autoFocus cal
2302 android::sp<DisplayAdapter> in; local
2313 android::sp<DisplayAdapter> in = new BufferSourceAdapter(); local
2385 android::sp<DisplayAdapter> in; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest2.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
54 private void readObject(java.io.ObjectInputStream in)
56 in.defaultReadObject();
60 milliseconds = in.readLong();
112 private void readObject(java.io.ObjectInputStream in)
114 ObjectInputStream.GetField fields = in.readFields();
142 private void readObject(java.io.ObjectInputStream in)
144 ObjectInputStream.GetField fields = in.readFields();
163 private void readObject(java.io.ObjectInputStream in)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ServerSocketChannelTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
78 // Test for methods in abstract class.
135 // Bind to a local address that is in use
413 InputStream in = serverSocket.getInputStream(); local
417 assertReadResult(in,CAPACITY_NORMAL);
426 private void assertReadResult(InputStream in, int size) throws IOException{
430 while ((count = in.read(readContent, total, size + 1 - total)) != -1) {
452 InputStream in = serverSocket.getInputStream(); local
455 assertReadResult(in,CAPACITY_NORMAL)
514 InputStream in = socket.getInputStream(); local
559 InputStream in = socket.getInputStream(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLEngineTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
1030 private final SourceChannel in; field in class:SSLEngineTest.HandshakeHandler
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
116 * An array with powers of five that fit in the type <code>long</code>
122 * An array with powers of ten that fit in the type <code>long</code>
212 * The arbitrary precision integer (unscaled value) in the internal
222 * The 32-bit integer scale in the internal representation of {@code BigDecimal}.
227 * Represent the number of decimal digits in the unscaled value. This
228 * precision is calculated the first time, and used in the following calls
253 * @param in
262 * offset+len-1 >= in.length}, or if {@code in} does no
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
155 * Tests the behaviour of HTTPS connection in case of unavailability of requested resource.
285 * Tests the behaviour of HttpsURLConnection in case of retrieving
353 * Tests the behaviour in case of sending the data to the server.
581 * (Authenticator was not set up in the system).
616 * Tests the behaviour of HTTPS connection in case of unavailability of requested resource (as
669 InputStream in = getClass().getClassLoader().getResourceAsStream(ksFileName); local
671 BufferedInputStream bufIn = new BufferedInputStream(in, 8192);
710 * type installed in the system in lower case) is searched in classpath
    [all...]
  /ndk/sources/host-tools/make-3.81/
job.c 11 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
214 /* Nonzero if the `good' standard input is in use. */
226 /* Number of jobs started in the current second. */
237 * The macro which references this function is defined in make.h.
370 /* in doubt assume a unix like shell */
377 /* Write an error message describing the exit status given in
413 the dead children. In this case we don't need the dead_children count.
444 state (`cs_finished') in the `file' member of the `struct child' for the
445 dead child, and removing the child from the chain. In addition, if BLOCK
446 nonzero, we block in this function until we've reaped at least on
1513 char *in, *out, *ref; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
71 * To enable MAP DEBUG/VERBOSE logging - run below cmd in adb shell, and
171 if (DEBUG) Log.d(TAG, "MAP Service closeService in");
576 * No changes will be applied unless in disconnected state
598 * - Each change in accounts
673 * Will ensure the key returned is greater than the largest key in use.
674 * Unless the key 255 is in use, in which case the first free masId
679 /* Find the largest masId in use *
937 Intent in = new Intent(context, BluetoothMapEmailSettings.class); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherBackupHelper.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
181 * <P>Keys may come back in any order, so each key/value is one complete row of the database.
192 Journal in = readJournal(oldState); local
195 writeJournal(newState, in);
198 Log.v(TAG, "lastBackupTime = " + in.t);
200 applyJournal(in);
203 // was going on, do not get missed in next backup.
212 // Delete any key which still exist in the old backup, but is not valid anymore.
219 // Delete anything left in the existing keys
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.300.v20130327-2119.jar 
  /prebuilts/misc/common/json/
json-prebuilt.jar 

Completed in 633 milliseconds

<<51525354555657585960>>