Searched defs:expr (Results 276 - 298 of 298) sorted by relevance

<<1112

/external/clang/include/clang/Sema/
H A DSema.h696 /// unevaluated operand (C++11 [expr]p7), such as the subexpression of
1705 Decl *ActOnFileScopeAsmDecl(Expr *expr,
2956 explicit FullExprArg(Expr *expr) : E(expr) {} argument
3636 /// in the case of a the GNU conditional expr extension.
3650 // __builtin_offsetof(type, identifier(.identifier|[expr])*)
3653 bool isBrackets; // true if [expr], false if .ident
3679 // __builtin_va_arg(expr, type)
3874 /// the default expr if needed.
3913 "noexcept(expr) shoul
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp5953 // If the target is bool, warn if expr is a function or method call.
6681 // C++11 [expr.comma]p1:
6716 // C++11 [expr.ass]p7:
6732 // C++11 [expr.ass]p1:
6752 // C++11 [expr.pre.incr]p1:
7203 void Sema::CheckArrayAccess(const Expr *expr) { argument
7205 while (expr) {
7206 expr = expr->IgnoreParenImpCasts();
7207 switch (expr
[all...]
H A DSemaDecl.cpp13318 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr, argument
13321 StringLiteral *AsmString = cast<StringLiteral>(expr);
H A DSemaExpr.cpp766 // C++11 [expr.call]p7:
785 // C++11 [expr.call]p7:
2017 // C++ [temp.dep.expr]p3:
2154 // C++ [expr.ref]p4:
2343 // FIXME: This should use a new expr for a direct reference, don't
2946 default: llvm_unreachable("Unknown simple primary expr!");
3313 assert(E && "ActOnParenExpr() missing expr");
3486 /// C++ [expr.sizeof]p4
3498 // C++ [expr.sizeof]p2:
3501 // C++11 [expr
5385 Expr *expr = new (Context) ParenListExpr(Context, L, Val, R); local
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc2824 AssertionResult HRESULTFailureHelper(const char* expr, argument
2859 << "Expected: " << expr << " " << expected << ".\n"
2865 AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT argument
2869 return HRESULTFailureHelper(expr, "succeeds", hr);
2872 AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT argument
2876 return HRESULTFailureHelper(expr, "fails", hr);
/external/libxml2/
H A Dxpath.c656 xmlChar *expr; /* the expression being computed */ member in struct:_xmlXPathCompExpr
773 if (comp->expr != NULL) {
774 xmlFree(comp->expr);
14823 comp->expr = xmlStrdup(str);
/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c7657 IRExpr *expr; local
7751 expr = binop(Iop_OrV128, mkexpr(tmp_var), imm_val);
7753 expr = binop(Iop_Or64, mkexpr(tmp_var), imm_val);
7758 expr = binop(Iop_AndV128, mkexpr(tmp_var),
7761 expr = binop(Iop_And64, mkexpr(tmp_var), unop(Iop_Not64, imm_val));
7767 putQReg(dreg, expr, condT);
7769 putDRegI64(dreg, expr, condT);
H A Dguest_amd64_toIR.c1720 /* U-widen 1/8/16/32/64 bit int expr to 64. */
1733 /* S-widen 8/16/32/64 bit int expr to 32. */
1745 /* Narrow 8/16/32/64 bit int expr to 8/16/32/64. Clearly only some
27310 IRExpr *expr, *addr_expr; local
27317 expr = ty == Ity_I32 ? getYMMRegLane32( rG, i )
27330 expr = IRExpr_ITE(mkexpr(cond), loadLE(ty, addr_expr), expr);
27332 putYMMRegLane32( rG, i, expr );
27335 putYMMRegLane64( rG, i, expr);
[all...]
H A Dguest_s390_toIR.c138 assign(IRTemp dst, IRExpr *expr) argument
140 stmt(IRStmt_WrTmp(dst, expr));
152 mktemp(IRType type, IRExpr *expr) argument
156 assign(temp, expr);
451 put_fpr_pair(UInt archreg, IRExpr *expr) argument
453 IRExpr *high = unop(Iop_F128HItoF64, expr);
454 IRExpr *low = unop(Iop_F128LOtoF64, expr);
474 put_dpr_pair(UInt archreg, IRExpr *expr) argument
476 IRExpr *high = unop(Iop_D128HItoD64, expr);
477 IRExpr *low = unop(Iop_D128LOtoD64, expr);
552 IRExpr *expr; local
896 put_ar_w0(UInt archreg, IRExpr *expr) argument
953 put_fpr_w0(UInt archreg, IRExpr *expr) argument
976 put_fpr_dw0(UInt archreg, IRExpr *expr) argument
992 put_dpr_w0(UInt archreg, IRExpr *expr) argument
1008 put_dpr_dw0(UInt archreg, IRExpr *expr) argument
1064 put_gpr_w0(UInt archreg, IRExpr *expr) argument
1087 put_gpr_dw0(UInt archreg, IRExpr *expr) argument
1110 put_gpr_hw1(UInt archreg, IRExpr *expr) argument
1133 put_gpr_b6(UInt archreg, IRExpr *expr) argument
1156 put_gpr_b3(UInt archreg, IRExpr *expr) argument
1179 put_gpr_b0(UInt archreg, IRExpr *expr) argument
1202 put_gpr_w1(UInt archreg, IRExpr *expr) argument
1225 put_gpr_hw3(UInt archreg, IRExpr *expr) argument
1248 put_gpr_b7(UInt archreg, IRExpr *expr) argument
1271 put_gpr_hw0(UInt archreg, IRExpr *expr) argument
1294 put_gpr_b4(UInt archreg, IRExpr *expr) argument
1317 put_gpr_b1(UInt archreg, IRExpr *expr) argument
1340 put_gpr_hw2(UInt archreg, IRExpr *expr) argument
1363 put_gpr_b5(UInt archreg, IRExpr *expr) argument
1386 put_gpr_b2(UInt archreg, IRExpr *expr) argument
1416 put_counter_dw0(IRExpr *expr) argument
1446 put_counter_w0(IRExpr *expr) argument
1462 put_counter_w1(IRExpr *expr) argument
1492 put_fpc_w0(IRExpr *expr) argument
[all...]
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
/external/chromium_org/v8/src/
H A Dhydrogen.cc4218 void HOptimizedGraphBuilder::VisitForEffect(Expression* expr) { argument
4220 Visit(expr);
4224 void HOptimizedGraphBuilder::VisitForValue(Expression* expr, argument
4227 Visit(expr);
4231 void HOptimizedGraphBuilder::VisitForTypeOf(Expression* expr) { argument
4234 Visit(expr);
4238 void HOptimizedGraphBuilder::VisitForControl(Expression* expr, argument
4241 TestContext for_test(this, expr, true_block, false_block);
4242 Visit(expr);
5228 void HOptimizedGraphBuilder::VisitFunctionLiteral(FunctionLiteral* expr) { argument
5253 VisitNativeFunctionLiteral( NativeFunctionLiteral* expr) argument
5262 VisitConditional(Conditional* expr) argument
5338 VisitVariableProxy(VariableProxy* expr) argument
5439 VisitLiteral(Literal* expr) argument
5448 VisitRegExpLiteral(RegExpLiteral* expr) argument
5537 VisitObjectLiteral(ObjectLiteral* expr) argument
5662 VisitArrayLiteral(ArrayLiteral* expr) argument
6250 HandlePolymorphicNamedFieldAccess( PropertyAccessType access_type, Expression* expr, BailoutId ast_id, BailoutId return_id, HValue* object, HValue* value, SmallMapList* types, Handle<String> name) argument
6397 ComputeReceiverTypes(Expression* expr, HValue* receiver, SmallMapList** t, Zone* zone) argument
6422 BuildStore(Expression* expr, Property* prop, BailoutId ast_id, BailoutId return_id, bool is_uninitialized) argument
6466 HandlePropertyAssignment(Assignment* expr) argument
6533 HandleCompoundAssignment(Assignment* expr) argument
6637 VisitAssignment(Assignment* expr) argument
6762 VisitYield(Yield* expr) argument
6768 VisitThrow(Throw* expr) argument
6822 BuildNamedGeneric( PropertyAccessType access_type, Expression* expr, HValue* object, Handle<String> name, HValue* value, bool is_uninitialized) argument
6850 BuildKeyedGeneric( PropertyAccessType access_type, Expression* expr, HValue* object, HValue* key, HValue* value) argument
6992 HandlePolymorphicElementAccess( Expression* expr, HValue* object, HValue* key, HValue* val, SmallMapList* maps, PropertyAccessType access_type, KeyedAccessStoreMode store_mode, bool* has_side_effects) argument
7128 HandleKeyedElementAccess( HValue* obj, HValue* key, HValue* val, Expression* expr, BailoutId ast_id, BailoutId return_id, PropertyAccessType access_type, bool* has_side_effects) argument
7240 TryArgumentsAccess(Property* expr) argument
7291 BuildNamedAccess( PropertyAccessType access, BailoutId ast_id, BailoutId return_id, Expression* expr, HValue* object, Handle<String> name, HValue* value, bool is_uninitialized) argument
7330 PushLoad(Property* expr, HValue* object, HValue* key) argument
7340 BuildLoad(Property* expr, BailoutId ast_id) argument
7382 VisitProperty(Property* expr) argument
7511 HandlePolymorphicCallNamed( Call* expr, HValue* receiver, SmallMapList* types, Handle<String> name) argument
8035 TryInlineCall(Call* expr) argument
8046 TryInlineConstruct(CallNew* expr, HValue* implicit_return_value) argument
8088 TryInlineApply(Handle<JSFunction> function, Call* expr, int arguments_count) argument
8101 TryInlineBuiltinFunctionCall(Call* expr) argument
8141 TryInlineBuiltinMethodCall( Call* expr, HValue* receiver, Handle<Map> receiver_map) argument
8524 TryInlineApiFunctionCall(Call* expr, HValue* receiver) argument
8538 TryInlineApiMethodCall( Call* expr, HValue* receiver, SmallMapList* receiver_maps) argument
8696 TryCallApply(Call* expr) argument
8955 TryHandleArrayCall(Call* expr, HValue* function) argument
8971 TryHandleArrayCallNew(CallNew* expr, HValue* function) argument
8985 VisitCall(Call* expr) argument
9266 VisitCallNew(CallNew* expr) argument
9448 GenerateDataViewInitialize( CallRuntime* expr) argument
9586 GenerateTypedArrayInitialize( CallRuntime* expr) argument
9711 GenerateMaxSmi(CallRuntime* expr) argument
9718 GenerateTypedArrayMaxSizeInHeap( CallRuntime* expr) argument
9727 GenerateArrayBufferGetByteLength( CallRuntime* expr) argument
9740 GenerateArrayBufferViewGetByteLength( CallRuntime* expr) argument
9753 GenerateArrayBufferViewGetByteOffset( CallRuntime* expr) argument
9766 GenerateTypedArrayGetLength( CallRuntime* expr) argument
9779 VisitCallRuntime(CallRuntime* expr) argument
9817 VisitUnaryOperation(UnaryOperation* expr) argument
9831 VisitDelete(UnaryOperation* expr) argument
9869 VisitVoid(UnaryOperation* expr) argument
9875 VisitTypeof(UnaryOperation* expr) argument
9883 VisitNot(UnaryOperation* expr) argument
9927 BuildIncrement( bool returns_original_input, CountOperation* expr) argument
9967 BuildStoreForEffect(Expression* expr, Property* prop, BailoutId ast_id, BailoutId return_id, HValue* object, HValue* key, HValue* value) argument
9982 VisitCountOperation(CountOperation* expr) argument
10227 BuildBinaryOperation( BinaryOperation* expr, HValue* left, HValue* right, PushBeforeSimulateBehavior push_sim_result) argument
10481 IsClassOfTest(CompareOperation* expr) argument
10496 VisitBinaryOperation(BinaryOperation* expr) argument
10512 VisitComma(BinaryOperation* expr) argument
10520 VisitLogicalExpression(BinaryOperation* expr) argument
10623 VisitArithmeticExpression(BinaryOperation* expr) argument
10643 HandleLiteralCompareTypeof(CompareOperation* expr, Expression* sub_expr, Handle<String> check) argument
10666 VisitCompareOperation(CompareOperation* expr) argument
10896 HandleLiteralCompareNil(CompareOperation* expr, Expression* sub_expr, NilValue nil) argument
11210 VisitThisFunction(ThisFunction* expr) argument
11219 VisitSuperReference(SuperReference* expr) argument
[all...]
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/libxml/src/
H A Dtestapi.c32846 xmlExpNodePtr expr; /* the compiled expression */ local
32853 expr = gen_xmlExpNodePtr(n_expr, 1);
32855 xmlExpDump(buf, expr);
32858 des_xmlExpNodePtr(n_expr, expr, 1);
33038 xmlExpNodePtr expr; /* a compiled expression */ local
33043 expr = gen_xmlExpNodePtr(n_expr, 0);
33045 ret_val = xmlExpMaxToken(expr);
33048 des_xmlExpNodePtr(n_expr, expr, 0);
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 6938 milliseconds

<<1112