HomeSort by relevance Sort by last modified time
    Searched full:used (Results 276 - 300 of 64207) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/freetype/src/cff/
cfferrs.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the CFF error enumeration constants. */
  /external/chromium_org/third_party/freetype/src/psaux/
psauxerr.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the PS auxiliary module error enumeration */
  /external/chromium_org/third_party/freetype/src/pshinter/
pshnterr.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the PSHinter error enumeration constants. */
  /external/chromium_org/third_party/freetype/src/psnames/
psnamerr.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the PS names module error enumeration */
  /external/chromium_org/third_party/freetype/src/raster/
rasterrs.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the monochrome renderer error enumeration */
  /external/chromium_org/third_party/freetype/src/sfnt/
sferrors.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the SFNT error enumeration constants. */
  /external/chromium_org/third_party/freetype/src/smooth/
ftsmerrs.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the smooth renderer error enumeration */
  /external/chromium_org/third_party/freetype/src/truetype/
tterrors.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the TrueType error enumeration */
  /external/chromium_org/third_party/libxslt/libxslt/
libxslt.h 2 * Summary: internal header only used during the compilation of libxslt
3 * Description: internal header only used during the compilation of libxslt
  /external/chromium_org/third_party/zlib/
gzclose.c 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
9 That way the other gzclose functions can be used instead to avoid linking in
  /external/clang/include/clang/Sema/
Weak.h 10 // This file defines the WeakInfo class, which is used to store
28 bool used; // identifier later declared? member in class:clang::WeakInfo
31 : alias(0), loc(SourceLocation()), used(false) {}
33 : alias(Alias), loc(Loc), used(false) {}
36 void setUsed(bool Used=true) { used = Used; }
37 inline bool getUsed() { return used; }
  /external/clang/test/ARCMT/
check-api.m 23 [invok getReturnValue:&strong_id]; // expected-error {{NSInvocation's getReturnValue is not safe to be used with an object with ownership other than __unsafe_unretained}}
24 [invok getReturnValue:&weak_id]; // expected-error {{NSInvocation's getReturnValue is not safe to be used with an object with ownership other than __unsafe_unretained}}
28 [invok setReturnValue:&strong_id]; // expected-error {{NSInvocation's setReturnValue is not safe to be used with an object with ownership other than __unsafe_unretained}}
29 [invok setReturnValue:&weak_id]; // expected-error {{NSInvocation's setReturnValue is not safe to be used with an object with ownership other than __unsafe_unretained}}
33 [invok getArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe to be used with an object with ownership other than __unsafe_unretained}}
34 [invok getArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe to be used with an object with ownership other than __unsafe_unretained}}
38 [invok setArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not safe to be used with an object with ownership other than __unsafe_unretained}}
39 [invok setArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not safe to be used with an object with ownership other than __unsafe_unretained}}
  /external/clang/test/PCH/
cxx-friends.h 13 // We used to inject this into future_base with no access specifier,
26 // Reduced testcase from libc++'s <valarray>. Used to crash with modules
  /external/clang/test/Parser/
cxx11-user-defined-literals.cpp 3 // A ud-suffix cannot be used on string literals in a whole bunch of contexts:
6 #line 1 "foo"_bar // expected-error {{user-defined suffix cannot be used here}}
7 # 1 "foo"_bar 1 // expected-error {{user-defined suffix cannot be used here}}
8 #ident "foo"_bar // expected-error {{user-defined suffix cannot be used here}}
9 _Pragma("foo"_bar) // expected-error {{user-defined suffix cannot be used here}}
10 #pragma comment(lib, "foo"_bar) // expected-error {{user-defined suffix cannot be used here}}
11 _Pragma("comment(lib, \"foo\"_bar)") // expected-error {{user-defined suffix cannot be used here}}
12 #pragma message "hi"_there // expected-error {{user-defined suffix cannot be used here}} expected-warning {{hi}}
13 #pragma push_macro("foo"_bar) // expected-error {{user-defined suffix cannot be used here}}
14 #if __has_warning("-Wan-island-to-discover"_bar) // expected-error {{user-defined suffix cannot be used here}
    [all...]
  /external/clang/test/Sema/
no-documentation-warn-tagdecl-specifier.c 17 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
26 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
31 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
36 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
59 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
68 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
73 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
78 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
uninit-det-order.c 9 // CHECK: 5:8: warning: variable 'b' is uninitialized when used here
11 // CHECK: 6:8: warning: variable 'c' is uninitialized when used here
  /external/clang/test/SemaTemplate/
friend.cpp 30 friend class f; // expected-error{{'friend' used outside of class}}
31 friend class f1; // expected-error{{'friend' used outside of class}}
  /external/freetype/include/freetype/internal/services/
svtteng.h 10 /* This file is part of the FreeType project, and may only be used, */
36 * Used to implement FT_Get_TrueType_Engine_Type
  /external/freetype/src/autofit/
aferrors.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the Autofitter error enumeration */
  /external/freetype/src/cff/
cfferrs.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the CFF error enumeration constants. */
  /external/freetype/src/psaux/
psauxerr.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the PS auxiliary module error enumeration */
  /external/freetype/src/pshinter/
pshnterr.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the PSHinter error enumeration constants. */
  /external/freetype/src/psnames/
psnamerr.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the PS names module error enumeration */
  /external/freetype/src/raster/
rasterrs.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the monochrome renderer error enumeration */
  /external/freetype/src/sfnt/
sferrors.h 10 /* This file is part of the FreeType project, and may only be used, */
21 /* This file is used to define the SFNT error enumeration constants. */

Completed in 996 milliseconds

<<11121314151617181920>>