Searched refs:location (Results 101 - 125 of 2162) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DBuilderInstruction.java45 @Nullable MethodLocation location; field in class:BuilderInstruction
64 if (location == null) {
65 throw new IllegalStateException("Cannot get the location of an instruction that hasn't been added to a " +
68 return location;
/external/bison/src/
H A Dmuscle-tab.h26 # include "location.h"
88 in addition, issue a synchronization line for the location LOC. */
90 void muscle_code_grow (const char *key, const char *value, location loc);
104 location loc);
122 void muscle_percent_define_insert (char const *variable, location variable_loc,
135 a Bison error. Otherwise, return its definition location in a form
139 location muscle_percent_define_get_loc (char const *variable);
143 that's a Bison error. Otherwise, return its definition location as a
186 void muscle_percent_code_grow (char const *qualifier, location qualifier_loc,
187 char const *code, location code_lo
[all...]
H A Dcomplain.c40 * \param loc the location, defaulting to the current file,
51 error_message (location *loc,
116 warn_at (location loc, const char *message, ...)
125 warn_at_indent (location loc, unsigned *indent,
150 complain_at (location loc, const char *message, ...)
157 complain_at_indent (location loc, unsigned *indent,
179 yacc_at (location loc, const char *message, ...)
194 midrule_value_at (location loc, const char *message, ...)
207 fatal_at (location loc, const char *message, ...)
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Denterprise_info.css17 #enterprise-info[location='guest-tab'] {
34 #enterprise-info[location='guest-tab'] {
40 #enterprise-info[location='guest-tab'] {
/external/doclava/res/assets/templates/assets/
H A Djquery-history.js15 return msie.getDoc().location.hash;
21 d.location.hash = hash;
26 var hash = msie.iframe ? msie.getHash() : location.hash;
30 location.hash = currentHash;
43 location.hash = currentHash = hash;
71 currentHash = location.hash;
/external/chromium_org/ash/wm/workspace/
H A Dtwo_step_edge_cycler.cc34 void TwoStepEdgeCycler::OnMove(const gfx::Point& location) { argument
42 std::abs(location.x() - start_x_) >= kMaxPixels ||
H A Dtwo_step_edge_cycler.h26 // |location| is the location of the event.
27 void OnMove(const gfx::Point& location);
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_title.js13 fillMostVisited(window.location, function(params, data) {
/external/chromium_org/chrome/browser/resources/pdf/
H A Dmain.js27 var params = window.location.search.substring(1).split('=');
45 var url = window.location.search.substring(1);
/external/chromium_org/chrome/browser/spellchecker/
H A Dmisspelling.h23 // misspelling.location = 0;
35 size_t location,
45 // Returns the substring of |context| that begins at |location| and contains
54 size_t location; member in class:Misspelling
/external/chromium_org/chrome/common/media_galleries/
H A Diphoto_library.h22 const base::FilePath& location,
27 base::FilePath location; member in struct:iphoto::parser::Photo
/external/chromium_org/ppapi/cpp/private/
H A Dflash_menu.cc34 int32_t Menu::Show(const Point& location, argument
41 &location.pp_point(),
/external/chromium_org/sync/api/
H A Dsync_error.cc9 #include "base/location.h"
19 SyncError::SyncError(const tracked_objects::Location& location, argument
24 Init(location, message, model_type, error_type);
45 Init(other.location(),
61 void SyncError::Reset(const tracked_objects::Location& location, argument
64 Init(location, message, model_type, DATATYPE_ERROR);
68 void SyncError::Init(const tracked_objects::Location& location, argument
72 location_.reset(new tracked_objects::Location(location));
83 const tracked_objects::Location& SyncError::location() const { function in class:syncer::SyncError
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.cpp43 return ShadowData(blink::blend(from.location(), location(), progress),
/external/chromium_org/third_party/WebKit/Source/platform/scheduler/
H A DScheduler.cpp26 MainThreadIdleTaskAdapter(const Scheduler::IdleTask& idleTask, double allottedTimeMs, const TraceLocation& location) argument
29 , m_location(location)
79 const Scheduler::Task& task, const TraceLocation& location, const char* traceName)
80 : m_task(task, location, traceName)
144 void Scheduler::scheduleIdleTask(const TraceLocation& location, const IdleTask& idleTask) argument
147 m_mainThread->postTask(new MainThreadIdleTaskAdapter(idleTask, 0, location));
150 void Scheduler::postHighPriorityTaskInternal(const TraceLocation& location, const Task& task, const char* traceName) argument
154 m_pendingHighPriorityTasks.append(TracedTask(task, location, traceName));
160 void Scheduler::postTask(const TraceLocation& location, const Task& task) argument
162 m_mainThread->postTask(new MainThreadPendingTaskRunner(task, location, "Schedule
78 MainThreadPendingTaskRunner( const Scheduler::Task& task, const TraceLocation& location, const char* traceName) argument
165 postInputTask(const TraceLocation& location, const Task& task) argument
175 postCompositorTask(const TraceLocation& location, const Task& task) argument
180 postIpcTask(const TraceLocation& location, const Task& task) argument
196 postIdleTask(const TraceLocation& location, const IdleTask& idleTask) argument
[all...]
H A DTracedTask.cpp23 TracedTask::TracedTask(const Task& task, const TraceLocation& location, const char* traceName) argument
25 , m_location(location)
/external/chromium_org/ui/views/
H A Ddrag_utils_aura.cc15 const gfx::Point& location,
18 gfx::Point root_location(location);
13 RunShellDrag(gfx::NativeView view, const ui::OSExchangeData& data, const gfx::Point& location, int operation, ui::DragDropTypes::DragEventSource source) argument
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DTestTouchUtils.java22 * Returns the absolute location in screen coordinates from location relative
25 * @param x Relative x location.
26 * @param y Relative y location.
27 * @return the absolute x and y location in an array.
30 int location[] = new int[2];
31 v.getLocationOnScreen(location);
32 location[0] += x;
33 location[1] += y;
34 return location;
[all...]
H A DTouchCommon.java111 * @param x Relative x location to v
112 * @param y Relative y location to v
115 int location[] = getAbsoluteLocationFromRelative(v, x, y);
116 int absoluteX = location[0];
117 int absoluteY = location[1];
183 * @param x Relative x location to v
184 * @param y Relative y location to v
187 int location[] = getAbsoluteLocationFromRelative(v, x, y);
188 int absoluteX = location[0];
189 int absoluteY = location[
[all...]
/external/doclava/src/com/google/doclava/parser/
H A DJavaParser.java471 dbg.location(293, 1);
480 dbg.location(298,9);
502 dbg.location(298,13);
521 dbg.location(298,14);
534 dbg.location(300,13);
547 dbg.location(302,9);
571 dbg.location(302,10);
587 dbg.location(304,9);
611 dbg.location(304,10);
638 dbg.location(30
[all...]
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Dlocation_test.cpp16 const pp::SourceLocation& location)
25 EXPECT_EQ(location.file, token.location.file);
26 EXPECT_EQ(location.line, token.location.line);
88 // The location of a token straddling two or more strings is that of the
118 EXPECT_EQ(0, token.location.file);
119 EXPECT_EQ(1, token.location.line);
123 EXPECT_EQ(0, token.location.file);
124 EXPECT_EQ(1, token.location
13 expectLocation(int count, const char* const string[], const int length[], const pp::SourceLocation& location) argument
[all...]
/external/chromium_org/base/
H A Dtracked_objects_unittest.cc50 // |location|.
51 void TallyABirth(const Location& location, const std::string& thread_name) { argument
58 Births* birth = ThreadData::TallyABirthIfActive(location);
76 EXPECT_EQ(kFile, process_data.tasks[0].birth.location.file_name);
78 process_data.tasks[0].birth.location.function_name);
79 EXPECT_EQ(kLineNumber, process_data.tasks[0].birth.location.line_number);
165 Location location(kFunction, kFile, kLineNumber, NULL);
166 Births* first_birth = ThreadData::TallyABirthIfActive(location);
176 EXPECT_EQ(1u, birth_map.size()); // 1 birth location.
185 // Create a child (using the same birth location)
[all...]
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/bison/data/
H A Dlocation.cc153 b4_output_begin([b4_dir_prefix[]location.hh])
158 ** \file ]b4_dir_prefix[location.hh
159 ** Define the ]b4_namespace_ref[::location class.
162 ]b4_cpp_guard_open([b4_dir_prefix[]location.hh])[
168 /// Abstract a location.
169 class location
173 /// Construct a location from \a b to \a e.
174 location (const position& b, const position& e)
180 /// Construct a 0-width location in \a p.
181 explicit location (cons
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DProgramBinary.h122 void setUniform1fv(GLint location, GLsizei count, const GLfloat *v);
123 void setUniform2fv(GLint location, GLsizei count, const GLfloat *v);
124 void setUniform3fv(GLint location, GLsizei count, const GLfloat *v);
125 void setUniform4fv(GLint location, GLsizei count, const GLfloat *v);
126 void setUniform1iv(GLint location, GLsizei count, const GLint *v);
127 void setUniform2iv(GLint location, GLsizei count, const GLint *v);
128 void setUniform3iv(GLint location, GLsizei count, const GLint *v);
129 void setUniform4iv(GLint location, GLsizei count, const GLint *v);
130 void setUniform1uiv(GLint location, GLsizei count, const GLuint *v);
131 void setUniform2uiv(GLint location, GLsize
[all...]

Completed in 2401 milliseconds

1234567891011>>