Searched refs:location (Results 226 - 250 of 2162) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DToken.cpp20 location = SourceLocation();
28 (location == other.location) &&
H A DDirectiveParser.cpp176 token->location, token->text);
189 token->location, token->text);
237 block.location, block.type);
272 token->location, token->text);
323 token->location, token->text);
335 token->location, token->text);
341 token->location, token->text);
347 token->location, token->text);
372 token->location,
381 // Reset the token location becaus
[all...]
/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/page_cycler/common/
H A Dstart.js22 var options = location.search.substring(1).split('&');
42 window.location = url;
73 if (location.search.match('auto=1')) {
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DImageBasedHeightMapGrid.java51 public HeightMap getHeightMapAt(Vector3f location) { argument
53 int x = (int) location.x;
54 int z = (int) location.z;
/external/markdown/markdown/
H A Dodict.py122 def index_for_location(self, location):
123 """ Return index or None for a given location. """
124 if location == '_begin':
126 elif location == '_end':
128 elif location.startswith('<') or location.startswith('>'):
129 i = self.index(location[1:])
130 if location.startswith('>'):
137 raise ValueError('Not a valid location: "%s". Location key '
138 'must start with a ">" or "<".' % location)
[all...]
/external/mesa3d/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/mockito/src/org/mockito/internal/matchers/
H A DLocalizedMatcher.java18 private Location location; field in class:LocalizedMatcher
22 this.location = new LocationImpl();
38 return location;
/external/chromium_org/chrome/browser/extensions/
H A Dinstalled_loader.cc143 if (extension.get() && !Manifest::IsUnpackedLocation(extension->location()) &&
281 Manifest::Location location = (*ex)->location(); local
285 location, 100);
288 location, 100);
292 location, 100);
294 if (Manifest::IsExternalLocation(location)) {
323 if (location == Manifest::COMPONENT)
337 if (Manifest::IsUnpackedLocation(location))
363 if (Manifest::IsExternalLocation(location)) {
[all...]
/external/chromium_org/content/renderer/accessibility/
H A Drenderer_accessibility_focus_only.cc110 root.location = gfx::Rect(render_view_->size());
117 child.location = gfx::Rect(
120 child.location = root.location;
122 child.location = gfx::Rect();
/external/chromium_org/content/test/data/indexeddb/
H A Dcommon.js15 if (document.location.hash == '#fail')
21 document.location.hash = '#pass';
27 document.location.hash = '#fail';
136 dbname = self.location.pathname.substring(
137 1 + self.location.pathname.lastIndexOf("/"));
/external/chromium_org/extensions/browser/
H A Dadmin_policy.cc19 extension->location() != extensions::Manifest::COMPONENT &&
20 !extensions::Manifest::IsPolicyLocation(extension->location());
60 if (extension->location() == Manifest::COMPONENT)
64 if (extension->location() != Manifest::EXTERNAL_POLICY &&
65 extension->location() != Manifest::EXTERNAL_POLICY_DOWNLOAD &&
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeClientImpl.cpp49 return location().x();
54 return location().y();
72 IntPoint WebScrollbarThemeClientImpl::location() const function in class:WebCore::WebScrollbarThemeClientImpl
74 return m_scrollbar->location();
99 return IntRect(location(), size());
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DProgramBinary.cpp242 for (unsigned int location = 0; location < numUniforms; location++)
244 if (mUniformIndex[location].name == name &&
245 mUniformIndex[location].element == subscript)
247 return location;
254 bool ProgramBinary::setUniform1fv(GLint location, GLsizei count, const GLfloat* v)
256 if (location < 0 || location >= (int)mUniformIndex.size())
261 Uniform *targetUniform = mUniforms[mUniformIndex[location]
182 ASSERT(samplerIndex < sizeof(mSamplersPS)/sizeof(mSamplersPS[0])); if (mSamplersPS[samplerIndex].active) { logicalTextureUnit = mSamplersPS[samplerIndex].logicalTextureUnit; } break; case SAMPLER_VERTEX: ASSERT(samplerIndex < sizeof(mSamplersVS)/sizeof(mSamplersVS[0])); if (mSamplersVS[samplerIndex].active) { logicalTextureUnit = mSamplersVS[samplerIndex].logicalTextureUnit; } break; default: UNREACHABLE(); } if (logicalTextureUnit >= 0 && logicalTextureUnit < (GLint)mRenderer->getMaxCombinedTextureImageUnits()) { return logicalTextureUnit; } return -1; } TextureType ProgramBinary::getSamplerTextureType(SamplerType type, unsigned int samplerIndex) { switch (type) { case SAMPLER_PIXEL: ASSERT(samplerIndex < sizeof(mSamplersPS)/sizeof(mSamplersPS[0])); ASSERT(mSamplersPS[samplerIndex].active); return mSamplersPS[samplerIndex].textureType; case SAMPLER_VERTEX: ASSERT(samplerIndex < sizeof(mSamplersVS)/sizeof(mSamplersVS[0])); ASSERT(mSamplersVS[samplerIndex].active); return mSamplersVS[samplerIndex].textureType; default: UNREACHABLE(); } return TEXTURE_2D; } GLint ProgramBinary::getUniformLocation(std::string name) { unsigned int subscript = 0; size_t open = name.find_last_of(�); size_t close = name.find_last_of(�); if (open != std::string::npos && close == name.length() - 1) { subscript = atoi(name.substr(open + 1).c_str()); name.erase(open); } unsigned int numUniforms = mUniformIndex.size(); for (unsigned int location = 0; location < numUniforms; location++) { if (mUniformIndex[location].name == name && mUniformIndex[location].element == subscript) { return location; } } return -1; } bool ProgramBinary::setUniform1fv(GLint location, GLsizei count, const GLfloat* v) { if (location < 0 || location >= (int)mUniformIndex.size()) { return false; } Uniform *targetUniform = mUniforms[mUniformIndex[location].index]; targetUniform->dirty = true; int elementCount = targetUniform->elementCount(); if (elementCount == 1 && count > 1) return false; count = std::min(elementCount - (int)mUniformIndex[location].element, count); if (targetUniform->type == GL_FLOAT) argument
307 setUniform2fv(GLint location, GLsizei count, const GLfloat *v) argument
360 setUniform3fv(GLint location, GLsizei count, const GLfloat *v) argument
413 setUniform4fv(GLint location, GLsizei count, const GLfloat *v) argument
497 setUniformMatrix2fv(GLint location, GLsizei count, const GLfloat *value) argument
530 setUniformMatrix3fv(GLint location, GLsizei count, const GLfloat *value) argument
564 setUniformMatrix4fv(GLint location, GLsizei count, const GLfloat *value) argument
597 setUniform1iv(GLint location, GLsizei count, const GLint *v) argument
652 setUniform2iv(GLint location, GLsizei count, const GLint *v) argument
705 setUniform3iv(GLint location, GLsizei count, const GLint *v) argument
758 setUniform4iv(GLint location, GLsizei count, const GLint *v) argument
811 getUniformfv(GLint location, GLsizei *bufSize, GLfloat *params) argument
879 getUniformiv(GLint location, GLsizei *bufSize, GLint *params) argument
2004 int location = attributeBindings.getAttributeBinding(attribute->name); local
2034 int location = attributeBindings.getAttributeBinding(attribute->name); local
2136 GLint location = getUniformLocation(constant.name); local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dshader_query.cpp110 || var->location == -1)
173 || var->location == -1
174 || var->location < VERT_ATTRIB_GENERIC0)
178 return var->location - VERT_ATTRIB_GENERIC0;
201 || var->location == -1)
227 || var->location == -1)
337 || var->location == -1
338 || var->location < FRAG_RESULT_DATA0)
393 || var->location == -1
394 || var->location < FRAG_RESULT_DATA
[all...]
/external/chromium_org/tools/gn/
H A Dtokenizer.cc96 Location location = GetCurrentLocation(); local
100 *err_ = GetErrorForInvalidToken(location);
104 AdvanceToEndOfToken(location, type);
130 tokens_.push_back(Token(location, type, token_value));
220 void Tokenizer::AdvanceToEndOfToken(const Location& location, argument
237 err_->AppendRange(LocationRange(location, GetCurrentLocation()));
247 *err_ = Err(LocationRange(location,
257 *err_ = Err(LocationRange(location,
298 *err_ = Err(location, "Everything is all messed up",
347 Err Tokenizer::GetErrorForInvalidToken(const Location& location) cons
[all...]
H A Dcommand_args.cc61 Location location = value.origin()->GetRange().begin(); local
62 const InputFile* file = location.file();
67 base::IntToString(location.line_number());
71 Tokenizer::ByteOffsetOfNthLine(data, location.line_number());
92 std::string location, comment; local
93 GetContextForValue(value, &location, &comment);
94 OutputString(" " + location + "\n" + comment);
/external/chromium_org/ui/events/gestures/
H A Dgesture_point.cc52 velocity_calculator_.PointSeen(event.location().x(),
53 event.location().y(),
61 last_touch_position_ = event.location();
67 first_touch_position_ = event.location();
70 velocity_calculator_.PointSeen(event.location().x(),
71 event.location().y(),
98 IsPointInsideManhattanSquare(event.location(), last_tap_position_);
104 IsPointInsideManhattanSquare(event.location(), last_tap_position_) &&
184 return ui::gestures::IsInsideManhattanSquare(event.location(),
220 gfx::Rect rect(event.location()
[all...]
/external/chromium_org/v8/src/
H A Dglobal-handles.h132 static Handle<Object> CopyGlobal(Object** location);
135 static void Destroy(Object** location);
146 static void MakeWeak(Object** location,
151 static inline void MakeWeak(Object** location, argument
154 MakeWeak(location, parameter, NULL, revivable_callback);
172 static void ClearWeakness(Object** location);
175 static void MarkIndependent(Object** location);
178 static void MarkPartiallyDependent(Object** location);
180 static bool IsIndependent(Object** location);
183 static bool IsNearDeath(Object** location);
[all...]
/external/mesa3d/src/mesa/main/
H A Dshader_query.cpp110 || var->location == -1)
173 || var->location == -1
174 || var->location < VERT_ATTRIB_GENERIC0)
178 return var->location - VERT_ATTRIB_GENERIC0;
201 || var->location == -1)
227 || var->location == -1)
337 || var->location == -1
338 || var->location < FRAG_RESULT_DATA0)
393 || var->location == -1
394 || var->location < FRAG_RESULT_DATA
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutRect.cpp41 : m_location(LayoutPoint(r.location()))
134 IntPoint location = flooredIntPoint(rect.minXMinYCorner()); local
137 return IntRect(location, maxPoint - location);
142 LayoutPoint location = flooredLayoutPoint(rect.minXMinYCorner()); local
144 return LayoutRect(location, maxPoint - location);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.cpp134 static void translate(StringImpl*& location, const LChar* const& c, unsigned hash) argument
136 location = StringImpl::create(c).leakRef();
137 location->setHash(hash);
138 location->setIsAtomic(true);
170 static void translate(StringImpl*& location, const UCharBuffer& buf, unsigned hash) argument
172 location = StringImpl::create8BitIfPossible(buf.s, buf.length).leakRef();
173 location->setHash(hash);
174 location->setIsAtomic(true);
198 static void translate(StringImpl*& location, const HashAndCharacters<CharacterType>& buffer, unsigned hash) argument
200 location
257 translate(StringImpl*& location, const HashAndUTF8Characters& buffer, unsigned hash) argument
337 translate(StringImpl*& location, const SubstringLocation& buffer, unsigned hash) argument
376 translate(StringImpl*& location, const LCharBuffer& buf, unsigned hash) argument
396 translate(StringImpl*& location, const CharBuffer& buf, unsigned hash) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_doc_comment.cc108 io::Printer* printer, const SourceLocation& location) {
109 string comments = location.leading_comments.empty() ?
110 location.trailing_comments : location.leading_comments;
146 SourceLocation location; local
147 if (descriptor->GetSourceLocation(&location)) {
148 WriteDocCommentBodyForLocation(printer, location);
107 WriteDocCommentBodyForLocation( io::Printer* printer, const SourceLocation& location) argument
/external/chromium_org/v8/test/cctest/
H A Dtest-mark-compact.cc271 global_handles->MakeWeak(g1s1.location(),
274 global_handles->MakeWeak(g1s2.location(),
277 global_handles->MakeWeak(g1c1.location(),
287 global_handles->MakeWeak(g2s1.location(),
290 global_handles->MakeWeak(g2s2.location(),
293 global_handles->MakeWeak(g2c1.location(),
304 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
305 Object** g1_children[] = { g1c1.location() };
306 Object** g2_objects[] = { g2s1.location(), g2s
[all...]
/external/emma/ant/ant14/com/vladium/emma/instr/
H A DinstrTask.java58 + ": instrumentation path must be specified", location).fillInStackTrace ();
62 + ": output directory must be specified for '" + m_outMode + "' output mode", location).fillInStackTrace ();
112 + ": outdir|destdir attribute already set", location).fillInStackTrace ();
121 + ": outdir|destdir attribute already set", location).fillInStackTrace ();
133 + ": metadata file attribute already set", location).fillInStackTrace ();
142 + ": metadata file attribute already set", location).fillInStackTrace ();
162 + ": invalid output mode: " + mode.getValue (), location).fillInStackTrace ();

Completed in 1217 milliseconds

1234567891011>>