Searched refs:Ref (Results 1 - 25 of 56) sorted by relevance

123

/external/chromium/base/mac/
H A Dmac_util.h140 TypeNS* CFToNSCast(TypeCF##Ref cf_val); \
141 TypeCF##Ref NSToCFCast(TypeNS* ns_val); \
151 NSMutable##name* CFToNSCast(CFMutable##name##Ref cf_val); \
152 CFMutable##name##Ref NSToCFCast(NSMutable##name* ns_val); \
/external/llvm/lib/MC/
H A DMCSymbol.cpp48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value); local
49 S = &Ref->getSymbol();
H A DMCObjectStreamer.cpp246 const MCExpr *Ref = local
249 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp50 unsigned NoModRef, Mod, Ref, ModRef; member in class:__anon8581::AAEval
65 NoModRef = Mod = Ref = ModRef = 0;
218 case AliasAnalysis::Ref:
219 PrintModRefResults("Just Ref", PrintRef, I, *V, F.getParent());
220 ++Ref; break;
241 case AliasAnalysis::Ref:
242 PrintModRefResults("Just Ref", PrintRef, *C, *D, F.getParent());
243 ++Ref; break;
281 unsigned ModRefSum = NoModRef + Mod + Ref + ModRef;
283 errs() << " Alias Analysis Mod/Ref Evaluato
[all...]
H A DAliasAnalysis.cpp89 Mask = Ref;
144 Mask = ModRefResult(Mask & Ref);
298 return Ref;
H A DAliasAnalysisCounter.cpp65 errs() << " " << MRSum << " Total Mod/Ref Queries Performed\n";
71 errs() << " Mod/Ref Analysis Counter Summary: " <<NoMR*100/MRSum
159 case Ref: JustRef++; MRString = "JustRef"; break;
/external/llvm/lib/Support/
H A DRegex.cpp150 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789")); local
151 Repl = Repl.substr(Ref.size());
154 if (!Ref.getAsInteger(10, RefValue) &&
158 *Error = "invalid backreference string '" + Ref.str() + "'";
/external/clang/include/clang/AST/
H A DMangle.h42 void setString(StringRef Ref) { argument
43 String = Ref;
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_profile_model_associator_unittest.cc19 using ::testing::Ref;
156 Ref(autofill_root),
157 Ref(*profile),
/external/clang/lib/CodeGen/
H A DCGCXX.cpp147 llvm::GlobalValue *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl)); local
148 llvm::Constant *Aliasee = Ref;
149 if (Ref->getType() != AliasType)
150 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
/external/chromium/testing/gmock/test/
H A Dgmock_output_test_.cc46 using testing::Ref;
183 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)));
H A Dgmock-generated-function-mockers_test.cc70 using testing::Ref;
213 EXPECT_CALL(mock_foo_, TakesNonConstReference(Ref(a)))
222 EXPECT_CALL(mock_foo_, TakesConstReference(Ref(a)))
H A Dgmock-generated-matchers_test.cc76 using testing::Ref;
480 EXPECT_THAT(v, ElementsAre(Ref(v[0]), Ref(v[1]), Ref(v[2])));
481 EXPECT_THAT(v, Not(ElementsAre(Ref(v[0]), Ref(v[1]), Ref(a[2]))));
H A Dgmock-matchers_test.cc111 using testing::Ref;
577 Matcher<Base&> m3 = Ref(d);
586 Matcher<const int&> m1 = Ref(n);
936 // Tests that Ref(variable) matches an argument that references
941 Matcher<int&> m = Ref(a);
946 // Tests that Ref(variable) describes itself properly.
949 Matcher<int&> m = Ref(n);
955 // Test that Ref(non_const_varialbe) can be used as a matcher for a
960 Matcher<const int&> m = Ref(a);
965 // Tests that Ref(variabl
[all...]
H A Dgmock_link_test.h72 // Ref
162 using testing::Ref;
519 // Tests the linkage of the Ref matcher.
524 ON_CALL(mock, VoidFromIntRef(Ref(a))).WillByDefault(Return());
/external/llvm/lib/Analysis/IPA/
H A DGlobalsModRef.cpp1 //===- GlobalsModRef.cpp - Simple Mod/Ref Analysis for Globals ------------===//
58 unsigned Effect = MayReadAnyGlobal ? AliasAnalysis::Ref : 0;
223 FunctionInfo[Readers[i]].GlobalInfo[I] |= Ref;
398 FunctionEffect |= Ref;
451 FunctionEffect |= Ref;
460 FunctionEffect |= Ref;
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp159 BasicBlock *&Ref = Blocks[L]; local
161 if (Ref) {
162 if (Ref == R) return false;
166 << L << R << Ref; local
170 Ref = R;
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h12 // implemented by all alias analysis implementations. Mod/Ref information is
228 /// ModRefResult - Represent the result of a mod/ref query. Mod and Ref are
231 enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2, ModRef = 3 }; enumerator in enum:llvm::AliasAnalysis::ModRefResult
255 OnlyReadsArgumentPointees = ArgumentPointees | Ref,
270 OnlyReadsMemory = Anywhere | Ref,
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h302 FoldingSetNodeID(FoldingSetNodeIDRef Ref) argument
303 : Bits(Ref.getData(), Ref.getData() + Ref.getSize()) {}
/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c83 static value alloc_generic_value(LLVMGenericValueRef Ref) { argument
85 Genericvalue_val(Val) = Ref;
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java29 import java.sql.Ref;
209 public void setRef(int parameterIndex, Ref theRef) throws SQLException {
457 public Ref getRef(int columnIndex) throws SQLException {
461 public Ref getRef(String colName) throws SQLException {
727 public void updateRef(int columnIndex, Ref x) throws SQLException {
730 public void updateRef(String columnName, Ref x) throws SQLException {
/external/libvpx/vp8/common/x86/
H A Dpostproc_mmx.c1118 char *Ref = Rand + (rand() & 0xff);
1124 mov edi, Ref
1377 char *Ref = Rand + (rand() & 0xff);
1383 mov edi, Ref
1431 char *Ref = an[a][q] + (rand() & 0xff); local
1437 mov edi, Ref
1480 char *Ref = an[a][q] + (rand() & 0xff); local
1486 mov edi, Ref
/external/llvm/lib/TableGen/
H A DTGParser.cpp2278 SubClassReference Ref; local
2279 Ref.RefLoc = DefmPrefixLoc;
2280 Ref.Rec = DefProto;
2281 AddSubClass(CurRec, Ref);
2286 if (SetValue(CurRec, Ref.RefLoc, "NAME", std::vector<unsigned>(),
2429 SubClassReference Ref = ParseSubClassReference(0, true); local
2432 if (Ref.Rec == 0) return true;
2437 MultiClass *MC = MultiClasses[Ref.Rec->getName()];
2439 std::vector<Init*> &TemplateVals = Ref.TemplateArgs;
2478 Ref
[all...]
/external/clang/include/clang/Sema/
H A DDeclSpec.h1288 ReferenceTypeInfo Ref; member in union:clang::DeclaratorChunk::__anon3386
1300 case DeclaratorChunk::Reference: return Ref.destroy();
1339 I.Ref.HasRestrict = (TypeQuals & DeclSpec::TQ_restrict) != 0;
1340 I.Ref.LValueRef = lvalue;
1341 I.Ref.AttrList = 0;
/external/clang/lib/Analysis/
H A DThreadSafety.cpp928 unsigned Ref; // Reference to another VarDefinition member in struct:__anon3547::LocalVariableMap::VarDefinition
936 : Dec(D), Exp(E), Ref(0), Ctx(C)
941 : Dec(D), Exp(0), Ref(R), Ctx(C)
980 i = VarDefinitions[i].Ref;
1017 unsigned Ref = VarDefinitions[i].Ref; local
1023 dumpVarDefinitionName(Ref);
1218 VDef->Ref = 0; // Mark this variable as undefined

Completed in 2663 milliseconds

123