HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 126 - 150 of 2798) sorted by null

1 2 3 4 56 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
ActivityLaunchAction.java 47 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) {
49 + (info.isDebugMode() ? " -D" //$NON-NLS-1$
52 + info.getPackageName() + "/" //$NON-NLS-1$
59 AdtPlugin.printToConsole(info.getProject(), msg);
61 // In debug mode, we need to add the info to the list of application monitoring
64 info.incrementAttemptCount();
67 device.executeShellCommand(command, new AMReceiver(info, device, mLaunchController));
71 if (info.isDebugMode() == false) {
77 AdtPlugin.printErrorToConsole(info.getProject(), "Launch error: timeout");
80 AdtPlugin.printErrorToConsole(info.getProject(), String.format
    [all...]
  /art/compiler/llvm/
intrinsic_helper.cc 30 const IntrinsicHelper::IntrinsicInfo IntrinsicHelper::Info[] = {
106 const IntrinsicInfo& info = Info[i]; local
113 IntrinsicValType type = info.arg_type_[arg_iter];
128 GetLLVMTypeOfIntrinsicValType(irb, info.ret_val_type_);
138 info.name_, &module);
140 if (info.attr_ & kAttrReadOnly) {
143 if (info.attr_ & kAttrReadNone) {
  /bootable/recovery/tools/ota/
convert-to-bmp.py 54 info = struct.pack(BITMAPINFO_HEADER_FMT, variable
69 f.write(info)
  /cts/suite/audio_quality/test/
ClientInterfaceTest.cpp 55 android::String8 info; local
57 ASSERT_TRUE(audio->getDeviceInfo(info));
58 LOGD("device info %s", info.string());
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityActivityTestCase.java 53 AccessibilityServiceInfo info = getInstrumentation().getUiAutomation().getServiceInfo(); local
54 info.flags |= AccessibilityServiceInfo.FLAG_REQUEST_TOUCH_EXPLORATION_MODE;
55 info.flags &= ~AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS;
56 getInstrumentation().getUiAutomation().setServiceInfo(info);
AccessibilityServiceInfoTest.java 33 // fully populate the service info to marshal
37 // marshal and unmarshal the service info
49 * Tests whether the service info describes its contents consistently.
53 AccessibilityServiceInfo info = new AccessibilityServiceInfo(); local
54 assertSame("Accessibility service info always return 0 for this method.", 0,
55 info.describeContents());
56 fullyPopulateSentAccessibilityServiceInfo(info);
58 info.describeContents());
107 * @param sentInfo The service info to populate.
  /cts/tests/tests/drm/src/android/drm/cts/
DrmInfoStatusTest.java 44 DrmInfoStatus info = new DrmInfoStatus( local
46 info = null;
54 DrmInfoStatus info = new DrmInfoStatus( local
56 info = null;
  /development/tools/axl/
log.py 46 def info(self, *logstrs): member in class:Log
53 # default to info
54 log = info
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
Antlr3ErrorLog.java 61 public void info(String message) { method in class:Antlr3ErrorLog
62 log.info(message);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
ErrorQueue.java 42 public void info(String msg) { method in class:ErrorQueue
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
AuthenticatedSafe.java 13 private ContentInfo[] info; field in class:AuthenticatedSafe
19 info = new ContentInfo[seq.size()];
21 for (int i = 0; i != info.length; i++)
23 info[i] = ContentInfo.getInstance(seq.getObjectAt(i));
46 ContentInfo[] info)
48 this.info = info;
53 return info;
60 for (int i = 0; i != info.length; i++)
62 v.add(info[i])
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
KeyUtil.java 35 public static byte[] getEncodedSubjectPublicKeyInfo(SubjectPublicKeyInfo info)
39 return info.getEncoded(ASN1Encoding.DER);
51 PrivateKeyInfo info = new PrivateKeyInfo(algId, privKey.toASN1Primitive()); local
53 return getEncodedPrivateKeyInfo(info);
61 public static byte[] getEncodedPrivateKeyInfo(PrivateKeyInfo info)
65 return info.getEncoded(ASN1Encoding.DER);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
KeyFactory.java 29 PrivateKeyInfo info = PrivateKeyInfo.getInstance(((PKCS8EncodedKeySpec)keySpec).getEncoded()); local
30 PrivateKey key = BouncyCastleProvider.getPrivateKey(info);
37 throw new InvalidKeySpecException("no factory found for OID: " + info.getPrivateKeyAlgorithm().getAlgorithm());
56 SubjectPublicKeyInfo info = SubjectPublicKeyInfo.getInstance(((X509EncodedKeySpec)keySpec).getEncoded()); local
57 PublicKey key = BouncyCastleProvider.getPublicKey(info);
64 throw new InvalidKeySpecException("no factory found for OID: " + info.getAlgorithm().getAlgorithm());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
AuthorityKeyIdentifierStructure.java 73 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo( local
77 info, new GeneralNames(genName), certificate.getSerialNumber()).toASN1Object();
94 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo( local
98 info, new GeneralNames(genName), certificate.getSerialNumber()).toASN1Object();
114 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo( local
117 return (ASN1Sequence)new AuthorityKeyIdentifier(info).toASN1Object();
  /external/ceres-solver/internal/ceres/
dense_normal_cholesky_solver.cc 145 const int info = LAPACK::SolveInPlaceUsingCholesky(num_cols, lhs.data(), x); local
150 summary.termination_type = info == 0 ? TOLERANCE : FAILURE;
dense_qr_solver.cc 103 const int info = LAPACK::SolveUsingQR(lhs_.rows(), local
113 if (info == 0) {
  /external/chromium/base/debug/
debugger_posix.cc 68 // Initialize mib, which tells sysctl what info we want. In this case,
79 struct kinfo_proc info; local
80 size_t info_size = sizeof(info);
82 int sysctl_result = sysctl(mib, arraysize(mib), &info, &info_size, NULL, 0);
92 being_debugged = (info.kp_proc.p_flag & P_TRACED) != 0;
  /external/chromium/base/
sys_info_posix.cc 57 utsname info; local
58 if (uname(&info) < 0) {
62 return std::string(info.sysname);
67 utsname info; local
68 if (uname(&info) < 0) {
72 return std::string(info.release);
77 utsname info; local
78 if (uname(&info) < 0) {
82 return std::string(info.machine);
  /external/chromium/base/test/
test_file_util_posix.cc 58 FileEnumerator::FindInfo info; local
60 if (stat(source_dir.value().c_str(), &info.stat) < 0) {
77 if (S_ISDIR(info.stat.st_mode)) {
78 if (mkdir(target_path.value().c_str(), info.stat.st_mode & 01777) != 0 &&
84 } else if (S_ISREG(info.stat.st_mode)) {
99 traversal.GetFindInfo(&info);
  /external/chromium/chrome/browser/chromeos/
gview_request_interceptor.cc 66 webkit::npapi::WebPluginInfo info; local
69 pdf_path, &info) &&
70 webkit::npapi::IsPluginEnabled(info))
  /external/chromium/net/proxy/
proxy_resolver_winhttp.cc 24 static void FreeInfo(WINHTTP_PROXY_INFO* info) {
25 if (info->lpszProxy)
26 GlobalFree(info->lpszProxy);
27 if (info->lpszProxyBypass)
28 GlobalFree(info->lpszProxyBypass);
60 WINHTTP_PROXY_INFO info = {0}; local
69 session_handle_, ASCIIToWide(query_url.spec()).c_str(), &options, &info);
75 &options, &info);
92 switch (info.dwAccessType) {
111 results->UseNamedProxy(WideToASCII(info.lpszProxy))
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
audiomonitor.cc 90 AudioInfo info = audio_info_; local
92 SignalUpdate(this, info);
  /external/chromium/webkit/glue/
webcursor_unittest.cc 119 WebCursorInfo info; local
120 custom_cursor.GetCursorInfo(&info);
121 EXPECT_EQ(gfx::Point(1, 1), gfx::Point(info.hotSpot));
125 info.hotSpot = gfx::Point(-1, -1);
126 custom_cursor.InitFromCursorInfo(info);
127 custom_cursor.GetCursorInfo(&info);
128 EXPECT_EQ(gfx::Point(0, 0), gfx::Point(info.hotSpot));
  /external/chromium_org/ash/display/
display_util_x11.cc 66 const XRRModeInfo* info = chromeos::FindModeInfo(screen_resources, mode); local
67 DCHECK(info);
69 if (!info)
71 ResolutionMap::key_type size = std::make_pair(info->width, info->height);
72 bool interlaced = (info->modeFlags & RR_Interlace) != 0;
80 Resolution(gfx::Size(info->width, info->height), interlaced)));
  /external/chromium_org/base/
sys_info_posix.cc 55 struct utsname info; local
56 if (uname(&info) < 0) {
60 return std::string(info.sysname);
67 struct utsname info; local
68 if (uname(&info) < 0) {
72 return std::string(info.release);
78 struct utsname info; local
79 if (uname(&info) < 0) {
83 std::string arch(info.machine);

Completed in 967 milliseconds

1 2 3 4 56 7 8 91011>>