Searched refs:source (Results 51 - 75 of 474) sorted by last modified time

1234567891011>>

/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp193 // Extract RS-specific information from source bitcode.
272 ALOGE("Unable to compile the source to file %s! (%s)", pOutputPath,
306 // Note that write failure only results in a warning since the source is
373 Source *source = Source::CreateFromBuffer(pContext, pResName, local
375 if (source == NULL) {
379 RSScript *script = new (std::nothrow) RSScript(*source);
383 delete source;
/frameworks/compile/libbcc/runtime/make/
H A DAppleBI.mk25 # Copies source code to SRCROOT.
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp138 << " Build source blob: " << BuildInfo::GetBuildSourceBlob() << "\n"
157 Source *source = Source::CreateFromFile(pContext, input_bitcode); local
158 if (source == NULL) {
165 if (!result->mergeSource(*source, /* pPreserveSource */false)) {
168 delete source;
172 result = new (std::nothrow) Script(*source);
176 delete source;
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp108 Category::Type source = Category::categorize(pSourceInfo); local
111 int distance = target - source;
117 // source and target are not in the same category
118 // find the category of source
121 if (source == current->type)
129 // find the position of source
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java338 private static Bitmap copyBitmap(Bitmap source) { argument
339 Bitmap b = Bitmap.createBitmap(source.getWidth(), source.getHeight(), source.getConfig());
341 c.drawBitmap(source, 0, 0, null);
342 source.recycle();
/frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs25 void setSampleData(rs_allocation dest, rs_allocation source, rs_sampler sampler) {
27 sourceAlloc = source;
/frameworks/base/tools/aapt/
H A DCacheUpdater.h21 * mirror cache where the source tree is duplicated and filled with processed
36 // Process an image from source out to dest
37 virtual void processImage(String8 source, String8 dest) = 0;
95 // Process an image from source out to dest
96 virtual void processImage(String8 source, String8 dest) argument
101 preProcessImageToCache(bundle, source, dest);
H A DImages.cpp1222 printf(" (processed image %s: %d%% size of source)\n", printableName.string(), percent);
1243 status_t preProcessImageToCache(const Bundle* bundle, const String8& source, const String8& dest) argument
1258 printf("Processing image to cache: %s => %s\n", source.string(), dest.string());
1262 fp = fopen(source.string(),"rb");
1264 fprintf(stderr, "%s ERROR: Unable to open PNG file\n", source.string());
1295 read_png(source.string(), read_ptr, read_info, &imageInfo);
1306 if (source.getBasePath().getPathExtension() == ".9") {
1307 if (do_9patch(source.string(), &imageInfo) != NO_ERROR) {
1359 printf(" (processed image to cache entry %s: %d%% size of source)\n",
H A DImages.h21 status_t preProcessImageToCache(const Bundle* bundle, const String8& source, const String8& dest);
H A DResource.cpp861 String8 source(bundle->getResourceSourceDirs()[0]);
865 CrunchCache cc(source,dest,ff);
/frameworks/base/tools/aapt/tests/
H A DCrunchCache_test.cpp29 String8 source("res");
49 data.add(source,sourceData);
52 CrunchCache cc(source,dest,ff);
H A DMockCacheUpdater.h29 // Process an image from source out to dest
30 virtual void processImage(String8 source, String8 dest) { argument
/frameworks/base/tools/layoutlib/bridge/tests/
H A DAndroid.mk19 # Only compile source java files in this lib.
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java52 /** The input source JAR to parse. */
65 * @param osJarPath The input source JARs to parse.
321 /** All classes found in the source JAR. */
337 * @param zipClasses All classes found in the source JAR.
560 public void visitSource(String source, String debug) { argument
H A DClassHasNativeVisitor.java98 public void visitSource(String source, String debug) { argument
H A DDependencyFinder.java70 * @param osJarPath The input source JARs to parse.
103 mLog.info("++++++ %d Entries found in source JARs", deps.size());
121 mLog.info("------ %d Entries missing from source JARs", missing.size());
501 public void visitSource(String source, String debug) { argument
/frameworks/base/voip/java/com/android/server/sip/
H A DSipHelper.java511 Object source = event.getSource();
512 if (source instanceof Transaction) {
513 return getCallId(((Transaction) source));
514 } else if (source instanceof Dialog) {
515 return getCallId((Dialog) source);
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java73 public ScanResult(ScanResult source) { argument
74 if (source != null) {
75 wifiSsid = source.wifiSsid;
76 SSID = source.SSID;
77 BSSID = source.BSSID;
78 capabilities = source.capabilities;
79 level = source.level;
80 frequency = source.frequency;
81 timestamp = source.timestamp;
H A DWifiConfiguration.java587 public WifiConfiguration(WifiConfiguration source) { argument
588 if (source != null) {
589 networkId = source.networkId;
590 status = source.status;
591 disableReason = source.disableReason;
592 SSID = source.SSID;
593 BSSID = source.BSSID;
594 preSharedKey = source.preSharedKey;
598 wepKeys[i] = source.wepKeys[i];
600 wepTxKeyIndex = source
[all...]
H A DWifiInfo.java95 public WifiInfo(WifiInfo source) { argument
96 if (source != null) {
97 mSupplicantState = source.mSupplicantState;
98 mBSSID = source.mBSSID;
99 mWifiSsid = source.mWifiSsid;
100 mNetworkId = source.mNetworkId;
101 mHiddenSSID = source.mHiddenSSID;
102 mRssi = source.mRssi;
103 mLinkSpeed = source.mLinkSpeed;
104 mIpAddress = source
[all...]
H A DWpsInfo.java74 public WpsInfo(WpsInfo source) { argument
75 if (source != null) {
76 setup = source.setup;
77 BSSID = source.BSSID;
78 pin = source.pin;
H A DWpsResult.java63 public WpsResult(WpsResult source) { argument
64 if (source != null) {
65 status = source.status;
66 pin = source.pin;
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pConfig.java118 public WifiP2pConfig(WifiP2pConfig source) { argument
119 if (source != null) {
120 deviceAddress = source.deviceAddress;
121 wps = new WpsInfo(source.wps);
122 groupOwnerIntent = source.groupOwnerIntent;
123 netId = source.netId;
H A DWifiP2pDevice.java307 public WifiP2pDevice(WifiP2pDevice source) { argument
308 if (source != null) {
309 deviceName = source.deviceName;
310 deviceAddress = source.deviceAddress;
311 primaryDeviceType = source.primaryDeviceType;
312 secondaryDeviceType = source.secondaryDeviceType;
313 wpsConfigMethodsSupported = source.wpsConfigMethodsSupported;
314 deviceCapability = source.deviceCapability;
315 groupCapability = source.groupCapability;
316 status = source
[all...]
H A DWifiP2pDeviceList.java44 public WifiP2pDeviceList(WifiP2pDeviceList source) { argument
45 if (source != null) {
46 for (WifiP2pDevice d : source.getDeviceList()) {

Completed in 252 milliseconds

1234567891011>>