OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isDecl
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp
152
bool
isDecl
= GV->isDeclaration();
153
if (GV->hasHiddenVisibility() && !
isDecl
&& !GV->hasCommonLinkage())
156
GV->hasCommonLinkage() ||
isDecl
;
/prebuilts/go/darwin-x86/src/cmd/fix/
typecheck.go
231
// If
isDecl
is true, n is being declared.
232
set := func(n ast.Expr, typ string,
isDecl
bool) {
243
// The !
isDecl
case is a cheat here, but it makes
247
if id, ok := n.(*ast.Ident); ok && id.Obj != nil && (
isDecl
|| typeof[id.Obj] == "") {
253
// If
isDecl
is true, this is := so we can update
255
typecheckAssign := func(lhs, rhs []ast.Expr,
isDecl
bool) {
261
set(lhs[i], t[i],
isDecl
)
278
set(x, typeof[y],
isDecl
)
/prebuilts/go/linux-x86/src/cmd/fix/
typecheck.go
231
// If
isDecl
is true, n is being declared.
232
set := func(n ast.Expr, typ string,
isDecl
bool) {
243
// The !
isDecl
case is a cheat here, but it makes
247
if id, ok := n.(*ast.Ident); ok && id.Obj != nil && (
isDecl
|| typeof[id.Obj] == "") {
253
// If
isDecl
is true, this is := so we can update
255
typecheckAssign := func(lhs, rhs []ast.Expr,
isDecl
bool) {
261
set(lhs[i], t[i],
isDecl
)
278
set(x, typeof[y],
isDecl
)
/external/clang/include/clang/Serialization/
ASTWriter.h
153
bool
isDecl
() const { return !IsType; }
161
assert(
isDecl
() && "Not a decl!");
[
all
...]
Completed in 836 milliseconds