/development/ndk/platforms/android-9/arch-x86/include/asm/ |
math_emu.h | 22 struct info { struct
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
LauncherShortcuts.java | 83 String info = intent.toString(); local 86 info = info + " " + extra; 88 intentInfo.setText(info);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
RecognitionException.cs | 66 * knows its state (such as current input symbol and line info) that 68 * is computed and stored at exception time. From this info, you can 103 * unexpected char doesn't carry the line info. 115 * imaginary nodes w/o line/col info. We now search backwards looking 116 * for most recent token with line/col info, but notify getErrorHeader() 117 * that info is approximate. 165 protected RecognitionException(SerializationInfo info, StreamingContext context) 166 : base(info, context) { 167 if (info == null) 168 throw new ArgumentNullException("info"); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
RecognitionException.cs | 67 * knows its state (such as current input symbol and line info) that 69 * is computed and stored at exception time. From this info, you can 105 * unexpected char doesn't carry the line info. 117 * imaginary nodes w/o line/col info. We now search backwards looking 118 * for most recent token with line/col info, but notify getErrorHeader() 119 * that info is approximate. 186 protected RecognitionException(SerializationInfo info, StreamingContext context) 187 : base(info, context) 189 if (info == null) 190 throw new ArgumentNullException("info"); [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/ |
PKIStatusInfoTest.java | 40 PKIStatusInfo info = new PKIStatusInfo(PKIStatus.REJECTION, statusStr, local 42 byte[] encoding = PKIStatusInfo.ASN1.encode(info); 46 assertEquals(info.getStatus(), decoded.getStatus()); 51 assertEquals(info.getFailInfo(), decoded.getFailInfo());
|
/external/chromium_org/chrome/browser/diagnostics/ |
diagnostics_controller_unittest.cc | 93 const DiagnosticsModel::TestInfo& info(results.GetTest(i)); 94 EXPECT_EQ(DiagnosticsModel::TEST_OK, info.GetResult()) << "Test: " 95 << info.GetName(); 108 const DiagnosticsModel::TestInfo& info(results.GetTest(i)); 109 EXPECT_EQ(DiagnosticsModel::RECOVERY_OK, info.GetResult()) 110 << "Test: " << info.GetName(); 126 const DiagnosticsModel::TestInfo* info = NULL; local 128 results.GetTestInfo(DIAGNOSTICS_SQLITE_INTEGRITY_NSS_CERT_TEST, &info)); 129 EXPECT_EQ(DiagnosticsModel::TEST_FAIL_CONTINUE, info->GetResult()); 130 EXPECT_EQ(DIAG_SQLITE_ERROR_HANDLER_CALLED, info->GetOutcomeCode()) 148 const DiagnosticsModel::TestInfo* info = NULL; local [all...] |
/external/chromium_org/chrome/browser/resources/omnibox/ |
omnibox.css | 44 .additional-info-property, 45 .additional-info-value {
|
/external/chromium_org/chrome/browser/ui/webui/ |
signin_internals_ui.cc | 82 const base::DictionaryValue* info) { 84 "chrome.signin.onSigninInfoChanged.fire", *info); 88 const base::DictionaryValue* info) { 90 "chrome.signin.onCookieAccountsFetched.fire", *info);
|
/external/chromium_org/components/metrics/net/ |
wifi_access_point_info_provider_chromeos.h | 25 virtual bool GetInfo(WifiAccessPointInfo* info) OVERRIDE;
|
/external/chromium_org/content/browser/frame_host/ |
navigation_request.cc | 19 void OnBeginNavigation(const NavigationRequestInfo& info, 25 info, request_body, navigation_request_id, frame_tree_node_id); 37 NavigationRequest::NavigationRequest(const NavigationRequestInfo& info, 40 info_(info),
|
/external/chromium_org/content/browser/web_contents/ |
web_drag_dest_mac.h | 64 - (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)info 66 - (void)draggingExited:(id<NSDraggingInfo>)info; 67 - (NSDragOperation)draggingUpdated:(id<NSDraggingInfo>)info 69 - (BOOL)performDragOperation:(id<NSDraggingInfo>)info
|
/external/chromium_org/content/renderer/ |
renderer_webapplicationcachehost_impl.cc | 49 const AppCacheInfo& info) { 50 if (!info.manifest_url.is_empty()) { 52 routing_id_, info.manifest_url, false)); 54 WebApplicationCacheHostImpl::OnCacheSelected(info);
|
renderer_webapplicationcachehost_impl.h | 24 virtual void OnCacheSelected(const AppCacheInfo& info) OVERRIDE;
|
/external/chromium_org/extensions/common/permissions/ |
set_disjunction_permission.h | 31 explicit SetDisjunctionPermission(const APIPermissionInfo* info) 32 : APIPermission(info) {} 51 CHECK(rhs->info() == info()); 59 CHECK(rhs->info() == info()); 66 SetDisjunctionPermission* result = new DerivedType(info()); 72 CHECK(rhs->info() == info()); 75 scoped_ptr<SetDisjunctionPermission> result(new DerivedType(info())); [all...] |
/external/chromium_org/net/test/url_request/ |
url_request_mock_http_job.cc | 152 void URLRequestMockHTTPJob::GetResponseInfo(net::HttpResponseInfo* info) { 154 GetResponseInfoConst(info); 185 net::HttpResponseInfo* info) const { 186 info->headers = new net::HttpResponseHeaders(raw_headers_); 190 net::HttpResponseInfo info; local 191 GetResponseInfoConst(&info); 192 return info.headers.get() && info.headers->GetMimeType(mime_type); 196 net::HttpResponseInfo info; local 197 GetResponseInfoConst(&info); 205 net::HttpResponseInfo info; local [all...] |
/external/chromium_org/ppapi/shared_impl/ |
file_type_conversion.h | 25 PPAPI_SHARED_EXPORT void FileInfoToPepperFileInfo(const base::File::Info& info,
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/ |
V8TestInterface3.cpp | 35 static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) 38 V8TestInterface3::indexedPropertyGetterCustom(index, info); 42 static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) 45 V8TestInterface3::indexedPropertySetterCustom(index, v8Value, info); 49 static void indexedPropertyDeleterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean>& info) 52 V8TestInterface3::indexedPropertyDeleterCustom(index, info); 56 static void namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 59 V8TestInterface3::namedPropertyGetterCustom(name, info); 63 static void namedPropertySetterCallback(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) 66 V8TestInterface3::namedPropertySetterCustom(name, v8Value, info); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/timing/ |
PerformanceResourceTiming.h | 52 static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails) 54 return adoptRefWillBeNoop(new PerformanceResourceTiming(info, requestingDocument, startTime, lastRedirectEndTime, m_allowTimingDetails, m_allowRedirectDetails)); 57 static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, bool m_allowTimingDetails) 59 return adoptRefWillBeNoop(new PerformanceResourceTiming(info, requestingDocument, startTime, 0.0, m_allowTimingDetails, false));
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
JPEGImageDecoder.cpp | 183 static ImageOrientation readImageOrientation(jpeg_decompress_struct* info) 189 for (jpeg_saved_marker_ptr marker = info->marker_list; marker; marker = marker->next) { 228 static void readColorProfile(jpeg_decompress_struct* info, ColorProfile& colorProfile) 234 if (!read_icc_profile(info, &profile, &profileLength)) 255 static IntSize computeYUVSize(const jpeg_decompress_struct* info, int component, ImageDecoder::SizeType sizeType) 258 return IntSize(info->cur_comp_info[component]->width_in_blocks * DCTSIZE, info->cur_comp_info[component]->height_in_blocks * DCTSIZE); 260 return IntSize(info->cur_comp_info[component]->downsampled_width, info->cur_comp_info[component]->downsampled_height); 263 static yuv_subsampling yuvSubsampling(const jpeg_decompress_struct& info) 598 jpeg_decompress_struct* info() { return &m_info; } function in class:blink::JPEGImageReader 723 const jpeg_decompress_struct* info = m_reader->info(); local 824 jpeg_decompress_struct* info = reader->info(); local 850 jpeg_decompress_struct* info = reader->info(); local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
commitannouncer.py | 52 _log.info("Bot started") 64 _log.info("Disconnecting bot") 67 _log.info("Bot offline") 68 _log.info("Done")
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-buffer.cc | 63 * There are two info pointers: info and out_info. They always have 66 * As an optimization, both info and out_info may point to the 67 * same piece of memory, which is owned by info. This remains the 72 * As soon as out_info gets longer than info, out_info is moved over 76 * switches info and out_info. 92 bool separate_out = out_info != info; 94 if (unlikely (_hb_unsigned_int_mul_overflows (size, sizeof (info[0])))) 100 ASSERT_STATIC (sizeof (info[0]) == sizeof (pos[0])); 101 if (unlikely (_hb_unsigned_int_mul_overflows (new_allocated, sizeof (info[0]))) [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/ |
video_writer.h | 32 const VpxVideoInfo *info);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_tgsi_to_rc.h | 41 const struct tgsi_shader_info * info; member in struct:tgsi_to_rc
|
r300_vs.h | 40 struct tgsi_shader_info info; member in struct:r300_vertex_shader
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_draw_arrays.c | 60 const struct pipe_draw_info *info) 70 sp->reduced_api_prim = u_reduced_prim(info->mode); 87 if (info->indexed) { 107 draw_vbo(draw, info);
|