Searched defs:location (Results 76 - 100 of 858) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dtrace-event-listener.rb48 def location( line, position ) method in class:ANTLR3.Debug.TraceEventListener
/external/bison/src/
H A Dlocation.h80 /* A location, that is, a region of source code. */
83 /* Boundary just before the location starts. */
86 /* Boundary just after the location ends. */
89 } location; typedef in typeref:struct:__anon378
91 #define GRAM_LTYPE location
94 extern location const empty_location;
98 void location_compute (location *loc,
101 /* Print location to file. Return number of actually printed
103 unsigned location_print (FILE *out, location loc);
109 /* Output to OUT the line and caret corresponding to location LO
[all...]
/external/chromium_org/ash/magnifier/
H A Dmagnification_controller_unittest.cc57 const gfx::Point& location = local
60 return location.ToString();
/external/chromium_org/base/
H A Dlocation.cc11 #include "base/location.h"
76 const tracked_objects::Location& location)
77 : file_name(location.file_name()),
78 function_name(location.function_name()),
79 line_number(location.line_number()) {
75 LocationSnapshot( const tracked_objects::Location& location) argument
/external/chromium_org/base/test/
H A Dtest_pending_task.cc14 const tracked_objects::Location& location,
19 : location(location),
39 state->SetString("posting_function", location.ToString());
13 TestPendingTask( const tracked_objects::Location& location, const Closure& task, TimeTicks post_time, TimeDelta delay, TestNestability nestability) argument
/external/chromium_org/chrome/browser/extensions/
H A Dstandard_management_policy_provider_unittest.cc34 scoped_refptr<const Extension> CreateExtension(Manifest::Location location, argument
41 base::FilePath(), location, values, Extension::NO_FLAGS, &error);
/external/chromium_org/chrome/installer/mini_installer/
H A Dmini_string.h57 // is non-NULL, the location of the tag is returned in |*position| on success.
124 // Terminates the string at the specified location.
126 // |location|.
127 bool truncate_at(size_t location) { argument
128 if (location >= kCapacity)
130 buffer_[location] = L'\0';
/external/chromium_org/chrome/renderer/resources/extensions/automation/
H A Dautomation_node.js29 this.location = { left: 0, top: 0, width: 0, height: 0 };
223 'location': { left: 0, top: 0, width: 0, height: 0 }
606 'location',
/external/chromium_org/components/sync_driver/
H A Ddata_type_controller.cc33 const tracked_objects::Location& location,
38 return syncer::SyncError(location,
32 CreateAndUploadError( const tracked_objects::Location& location, const std::string& message, syncer::ModelType type) argument
/external/chromium_org/content/renderer/pepper/
H A Dppb_widget_impl.cc49 PP_Bool PPB_Widget_Impl::GetLocation(PP_Rect* location) { argument
50 *location = location_;
54 void PPB_Widget_Impl::SetLocation(const PP_Rect* location) { argument
55 location_ = *location;
56 SetLocationInternal(location);
/external/chromium_org/content/test/plugin/
H A Dplugin_private_test.cc29 NPIdentifier location = HostFunctions()->getstringidentifier("location"); local
36 HostFunctions()->getproperty(id(), window_obj, location, &location_var); local
/external/chromium_org/extensions/common/
H A Dextension_builder.cc35 ExtensionBuilder& ExtensionBuilder::SetLocation(Manifest::Location location) { argument
36 location_ = location;
H A Dextension_messages.h243 // The location the extension was installed from.
244 extensions::Manifest::Location location; member in struct:ExtensionMsg_Loaded_Params
/external/chromium_org/extensions/common/features/
H A Dsimple_feature_filter.cc31 Manifest::Location location,
28 IsAvailableToManifest( const std::string& extension_id, Manifest::Type type, Manifest::Location location, int manifest_version, Feature::Platform platform) const argument
/external/chromium_org/net/http/
H A Dhttp_server_properties.cc51 BrokenAlternateProtocolLocation location){
52 UMA_HISTOGRAM_ENUMERATION("Net.AlternateProtocolBrokenLocation", location,
50 HistogramBrokenAlternateProtocolLocation( BrokenAlternateProtocolLocation location) argument
H A Dproxy_client_socket.cc79 std::string location; local
80 if (!response->headers->IsRedirect(&location))
90 location.c_str());
/external/chromium_org/ppapi/proxy/
H A Dflash_menu_resource.cc36 const PP_Point* location,
65 SyncCall<IPC::Message>(RENDERER, PpapiHostMsg_FlashMenu_Show(*location));
35 Show( const PP_Point* location, int32_t* selected_id, scoped_refptr<TrackedCallback> callback) argument
/external/chromium_org/ppapi/tests/
H A Dtest_scrollbar.cc33 pp::Rect location; local
34 location.set_width(1000);
35 location.set_height(1000);
36 scrollbar_.SetLocation(location);
/external/chromium_org/ppapi/thunk/
H A Dppb_widget_dev_thunk.cc43 PP_Bool GetLocation(PP_Resource widget, struct PP_Rect* location) { argument
48 return enter.object()->GetLocation(location);
51 void SetLocation(PP_Resource widget, const struct PP_Rect* location) { argument
56 enter.object()->SetLocation(location);
/external/chromium_org/sync/syncable/
H A Dsyncable_base_transaction.cc35 const tracked_objects::Location& location,
38 unrecoverable_error_location_ = location;
34 OnUnrecoverableError( const tracked_objects::Location& location, const std::string& message) argument
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateOutputs.cpp33 const int location = type.getLayoutQualifier().location; local
39 else if (location == -1)
45 OutputMap::iterator mapEntry = mOutputMap.find(location);
49 if (location + elementCount > mMaxDrawBuffers)
51 error(symbol->getLine(), "output location must be < MAX_DRAW_BUFFERS", name.c_str());
56 const int offsetLocation = location + elementIndex;
75 mSink.location(loc);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dsampler.cpp115 unsigned location; local
116 if (!shader_program->UniformHash->get(location, getname.name)) {
122 return shader_program->UniformStorage[location].sampler + getname.offset;
/external/chromium_org/tools/gn/
H A Derr.h11 #include "tools/gn/location.h"
20 // An error has a location and a message. Below that, is some optional help
21 // text to go with the annotation of the location.
33 Err(const Location& location,
60 const Location& location() const { return location_; } function in class:Err
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_cursor.cc58 const gfx::PointF& location) {
63 cursor_location_ = location;
90 gfx::PointF DriCursor::location() { function in class:ui::DriCursor
57 MoveCursorTo(gfx::AcceleratedWidget widget, const gfx::PointF& location) argument
H A Ddri_window_manager.cc67 gfx::PointF location; local
71 location = GetDefaultCursorLocation(it->second);
74 cursor_->MoveCursorTo(cursor_widget, location);

Completed in 538 milliseconds

1234567891011>>