/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Ray.java | 112 * stores the point of intersection in the given loc vector 114 * @param loc 119 public boolean intersectWhere(Triangle t, Vector3f loc) { 120 return intersectWhere(t.get(0), t.get(1), t.get(2), loc); 126 * intersection in the given loc vector. 134 * @param loc 140 Vector3f loc) { 141 return intersects(v0, v1, v2, loc, false, false); 147 * intersection in the given loc vector as t, u, v where t is the distance 152 * @param loc [all...] |
/external/clang/include/clang/Basic/ |
SourceManager.h | 169 /// \param Loc If specified, is the location that invalid file diagnostics 175 SourceLocation Loc = SourceLocation(), 484 // use the #include loc in the common file. 808 SourceLocation createMacroArgExpansionLoc(SourceLocation Loc, 815 SourceLocation createExpansionLoc(SourceLocation Loc, [all...] |
/external/bison/src/ |
scan-gram.l | 48 code_start = scanner_cursor = loc->start; \ 53 #define YY_USER_ACTION location_compute (loc, &scanner_cursor, yytext, yyleng); 80 static unsigned long int scan_integer (char const *p, int base, location loc); 149 "," warn_at (*loc, _("stray ',' treated as white space")); 153 token_start = loc->start; 161 handle_syncline (yytext + sizeof "#line " - 1, *loc); 222 complain_at (*loc, _("invalid directive: %s"), quote (yytext)); 233 id_loc = *loc; 239 val->integer = scan_integer (yytext, 10, *loc); 243 val->integer = scan_integer (yytext, 16, *loc); [all...] |
named-ref.h | 34 location loc; member in struct:named_ref 38 named_ref *named_ref_new (uniqstr id, location loc);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
NSErrorChecker.cpp | 161 void checkLocation(SVal loc, bool isLoad, const Stmt *S, 189 if (Optional<loc::MemRegionVal> X = val.getAs<loc::MemRegionVal>()) { 201 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad, 206 if (loc.isUndef() || !loc.getAs<Loc>()) 218 QualType parmT = parameterTypeFromSVal(loc, C); 228 setFlag<NSErrorOut>(state, state->getSVal(loc.castAs<Loc>()), C) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
SimpleConstraintManager.cpp | 54 // We handle Loc <> Loc comparisons, but not (yet) NonLoc <> NonLoc. 55 if (Loc::isLocType(SSE->getLHS()->getType())) { 56 assert(Loc::isLocType(SSE->getRHS()->getType())); 73 return assume(state, Cond.castAs<Loc>(), Assumption); 76 ProgramStateRef SimpleConstraintManager::assume(ProgramStateRef state, Loc cond, 85 Loc Cond, bool Assumption) { 88 assert (false && "'Assume' not implemented for this Loc."); 91 case loc::MemRegionKind: { 93 const MemRegion *R = Cond.castAs<loc::MemRegionVal>().getRegion() [all...] |
/external/clang/tools/libclang/ |
IndexingContext.h | 212 AttrInfo(CXIdxAttrKind Kind, CXCursor C, CXIdxLoc Loc, const Attr *A) { 215 loc = Loc; 224 IBOutletCollectionInfo(CXCursor C, CXIdxLoc Loc, const Attr *A) : 225 AttrInfo(CXIdxAttr_IBOutletCollection, C, Loc, A) { 427 bool handleSynthesizedObjCMethod(const ObjCMethodDecl *D, SourceLocation Loc, 438 bool handleReference(const NamedDecl *D, SourceLocation Loc, CXCursor Cursor, 444 bool handleReference(const NamedDecl *D, SourceLocation Loc, 450 bool isNotFromSourceFile(SourceLocation Loc) const; 460 void translateLoc(SourceLocation Loc, CXIdxClientFile *indexFile, CXFile *file [all...] |
CIndexHigh.cpp | 132 /// \brief For a macro \arg Loc, returns the file spelling location and sets 136 SourceLocation Loc, 138 assert(Loc.isMacroID()); 139 SourceLocation SpellLoc = SM.getImmediateSpellingLoc(Loc); 143 isMacroArg = SM.isMacroArgExpansion(Loc); 183 Loc = cxloc::translateSourceLocation(clang_getCursorLocation(cursor)); 186 Loc = SelIdLoc; 191 if (Loc.isMacroID()) { 193 Loc = getFileSpellingLoc(SM, Loc, isMacroArg) [all...] |
/bootable/recovery/minui/ |
resources.c | 182 static int matches_locale(const char* loc) { 185 if (strcmp(loc, locale) == 0) return 1; 187 // if loc does *not* have an underscore, and it matches the start 189 // that's a match. For instance, loc == "en" matches locale == 193 for (i = 0; loc[i] != 0 && loc[i] != '_'; ++i); 194 if (loc[i] == '_') return 0; 196 return (strncmp(locale, loc, i) == 0 && locale[i] == '_'); 270 char* loc = row+5; local 272 if (y+1+h >= height || matches_locale(loc)) { [all...] |
/frameworks/native/opengl/tests/gl_perf/ |
fill_common.cpp | 192 GLint loc = glGetUniformLocation(pgm, var); local 193 if (loc >= 0) { 198 glUniform4f(loc, x, y, z, w); 214 GLint loc = glGetUniformLocation(pgm, "u_texOff"); local 215 glUniform2f(loc, ((float)ct) / passCount, ((float)ct) / 2.f / passCount); 274 GLint loc = glGetUniformLocation(pgm, "u_tex0"); local 275 if (loc >= 0) glUniform1i(loc, 0); 276 loc = glGetUniformLocation(pgm, "u_tex1"); 277 if (loc >= 0) glUniform1i(loc, 1) [all...] |
/external/clang/lib/Basic/ |
SourceManager.cpp | 88 SourceLocation Loc, 127 Diag.Report(Loc, diag::err_cannot_open_file) 143 Diag.Report(Loc, diag::err_file_modified) 169 Diag.Report(Loc, diag::err_unsupported_bom) 248 // Get the include loc of the last entries' include loc as our include loc. 296 /// specified by Loc. If FilenameID is -1, it is considered to be 298 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo, 300 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc); [all...] |
/external/bison/examples/calc++/ |
location.hh | 155 ** \param loc a reference to the location to redirect 161 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc) 163 position last = loc.end - 1; 164 ostr << loc.begin; 166 && (!loc.begin.filename 167 || *loc.begin.filename != *last.filename)) 169 else if (loc.begin.line != last.line) 171 else if (loc.begin.column != last.column)
|
/external/chromium_org/chrome/common/ |
spellcheck_result.h | 29 int loc = 0, 33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
DiagnosticsBase.h | 75 void report(ID id, const SourceLocation& loc, const std::string& text); 82 const SourceLocation& loc,
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrPlotMgr.h | 38 bool newPlot(GrIPoint16* loc) { 44 loc->set(x, y);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass32/ |
dwarf32-err.errwarn | 1 -:1: error: directive `.loc' requires an argument 21 -:33: warning: unrecognized loc option `foo'
|
/external/clang/include/clang/Frontend/ |
TextDiagnostic.h | 79 virtual void emitDiagnosticMessage(SourceLocation Loc,PresumedLoc PLoc, 86 virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc, 91 virtual void emitCodeContext(SourceLocation Loc, 96 emitSnippetAndCaret(Loc, Level, Ranges, Hints, SM); 101 virtual void emitIncludeLocation(SourceLocation Loc, PresumedLoc PLoc, 104 virtual void emitImportLocation(SourceLocation Loc, PresumedLoc PLoc, 108 virtual void emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc, 113 void emitSnippetAndCaret(SourceLocation Loc, DiagnosticsEngine::Level Level,
|
/external/clang/lib/Frontend/ |
PrintPreprocessedOutput.cpp | 127 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 139 virtual void Ident(SourceLocation Loc, const std::string &str); 140 virtual void PragmaCaptured(SourceLocation Loc, StringRef Str); 141 virtual void PragmaComment(SourceLocation Loc, const IdentifierInfo *Kind, 143 virtual void PragmaDetectMismatch(SourceLocation Loc, 146 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace, 148 virtual void PragmaDebug(SourceLocation Loc, StringRef DebugType); 149 virtual void PragmaDiagnosticPush(SourceLocation Loc, 151 virtual void PragmaDiagnosticPop(SourceLocation Loc, 153 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace [all...] |
/external/llvm/lib/TableGen/ |
TGParser.h | 38 SMLoc Loc; 41 : Name(N), Bits(B), Value(V), Loc(L) { 104 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV); 105 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName, 107 bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName, 109 return SetValue(TheRec, Loc, StringInit::get(ValName), BitList, V); 126 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc); 127 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc, IterSet &IterVals);
|
/external/llvm/lib/Transforms/ObjCARC/ |
ObjCARCAliasAnalysis.cpp | 87 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc, 90 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); 94 const Value *S = StripPointerCastsAndObjCCalls(Loc.Ptr); 95 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag), 132 ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const Location &Loc) { 134 return AliasAnalysis::getModRefInfo(CS, Loc); 153 return AliasAnalysis::getModRefInfo(CS, Loc);
|
/external/llvm/test/DebugInfo/ |
dwarfdump-debug-loc-simple.test | 1 RUN: llvm-dwarfdump %p/Inputs/dwarfdump-test-loc-list-32bit.elf.o | FileCheck %s 2 Note: the input file was generated from Inputs/dwarfdump-test-loc-list-32bit.elf.cpp
|
/external/skia/src/gpu/ |
GrPlotMgr.h | 38 bool newPlot(GrIPoint16* loc) { 44 loc->set(x, y);
|
/hardware/ti/omap4xxx/domx/mm_osal/src/ |
timm_osal_trace.c | 93 void __TIMM_OSAL_TraceFunction(const __TIMM_OSAL_TRACE_LOCATION * loc, 103 if (trace_level >= loc->level) 112 ALOGD("%s:%d\t%s()\t", simplify_path(loc->file), loc->line, 113 loc->function); 122 printf("%s:%d\t%s()\t", simplify_path(loc->file), loc->line, 123 loc->function);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/ |
imbue.pass.cpp | 26 std::locale loc = t.imbue(std::locale(LOCALE_en_US_UTF_8)); local 27 assert(loc.name() == "C");
|
/packages/apps/Camera/src/com/android/camera/ |
MediaSaver.java | 65 public void addImage(final byte[] data, String title, long date, Location loc, 71 r.loc = (loc == null) ? null : new Location(loc); // make a copy 113 Uri uri = storeImage(r.data, r.title, r.date, r.loc, r.width, r.height, 133 Location loc, int width, int height, int orientation) { 134 Uri uri = Storage.addImage(mContentResolver, title, date, loc, 144 Location loc; field in class:MediaSaver.SaveRequest
|