HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 751 - 775 of 955) sorted by null

<<313233343536373839

  /external/clang/lib/AST/
ASTDumper.cpp     [all...]
  /external/clang/test/SemaCXX/
dllexport.cpp 562 __declspec(dllexport) int Field; // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
    [all...]
dllimport.cpp 487 __declspec(dllimport) int Field; // expected-warning{{'dllimport' attribute only applies to variables, functions and classes}}
518 int ImportMembers::StaticFieldDef; // expected-error{{definition of dllimport static field not allowed}}
519 const int ImportMembers::StaticConstFieldDef = 1; // expected-error{{definition of dllimport static field not allowed}}
520 constexpr int ImportMembers::ConstexprFieldDef; // expected-error{{definition of dllimport static field not allowed}}
554 __declspec(dllimport) int ImportMemberDefs::StaticField; // expected-error{{definition of dllimport static field not allowed}} ex (…)
    [all...]
  /external/guice/core/test/com/google/inject/spi/
ElementsTest.java 58 import java.lang.reflect.Field;
1159 final Field field = B.class.getDeclaredField("stage"); local
    [all...]
  /external/libvncserver/webclients/novnc/include/web-socket-js/
web_socket.js 224 // Field to check implementation of WebSocket.
  /frameworks/base/tools/apilint/
apilint.py 53 class Field():
63 for r in ["field", "volatile", "transient", "public", "protected", "static", "final", "deprecated"]:
198 elif raw.startswith(" field"):
199 clazz.fields.append(Field(clazz, line, raw, blame))
266 error(clazz, f, "C2", "Constant field names must be FOO_NAME")
651 warn(clazz, f, "FW6", "Field type violates package layering")
768 error(clazz, f, None, "Field type must not be heavy BitSet")
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiStateMachineTest.java 82 import java.lang.reflect.Field;
257 Field field = StateMachine.class.getDeclaredField("mSmThread"); local
258 field.setAccessible(true);
259 return (HandlerThread) field.get(wsm);
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
SlidingPaneLayout.java 50 import java.lang.reflect.Field;
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 23 import java.lang.reflect.Field;
628 Field addressField = Buffer.class.getDeclaredField("address");
632 // Check that the address field is aligned by 8.
633 // Normally reading this field happens in native code by calling
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
CGObjCMac.cpp 744 /// In the following descriptions, 'I' is the value of the immediate field.
745 /// (field following the opcode).
4686 auto field = *begin; local
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp 773 // - A bit-field of type _Bool, int, signed int, or unsigned int.
    [all...]
SemaAccess.cpp 804 // it names a field in an unevaluated context that can't be an
    [all...]
SemaDeclAttr.cpp     [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 22 import java.lang.reflect.Field;
382 Field a = generatedClass.getField("a");
386 Field b = generatedClass.getDeclaredField("b");
407 Field a = generatedClass.getField("a");
411 Field b = generatedClass.getDeclaredField("b");
419 * field.
442 Field a = generatedClass.getField("a");
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
ASTReaderStmt.cpp 122 assert(Idx == NumStmtFields && "Incorrect statement field count");
439 assert(Idx == NumExprFields && "Incorrect expression field count");
568 case Node::Field:
784 FieldDecl *Field = ReadDeclAs<FieldDecl>(Record, Idx);
789 Designators.push_back(Designator(Field->getIdentifier(), DotLoc,
791 Designators.back().setField(Field);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatTest.java     [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TimeZoneFormat.java 140 * ISO 8601 local time difference (basic format) with optional seconds field, or the UTC indicator.
146 * ISO 8601 local time difference (basic format) with optional seconds field.
164 * ISO 8601 local time difference (extended format) with optional seconds field, or the UTC indicator.
170 * ISO 8601 local time difference (extended format) with optional seconds field.
219 * Positive offset with hours field
223 * Negative offset with hours field
577 * @throws IllegalArgumentException when the pattern string does not have required time field letters.
747 * seconds, 2 digit seconds field will be appended. For example,
768 * This format uses the shortest representation of offset. The hours field does not
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
TimeZoneFormat.java 152 * ISO 8601 local time difference (basic format) with optional seconds field, or the UTC indicator.
159 * ISO 8601 local time difference (basic format) with optional seconds field.
180 * ISO 8601 local time difference (extended format) with optional seconds field, or the UTC indicator.
187 * ISO 8601 local time difference (extended format) with optional seconds field.
245 * Positive offset with hours field
250 * Negative offset with hours field
621 * @throws IllegalArgumentException when the pattern string does not have required time field letters.
800 * seconds, 2 digit seconds field will be appended. For example,
822 * This format uses the shortest representation of offset. The hours field does not
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /art/runtime/
runtime.cc 85 #include "mirror/field.h"
584 auto field_class(hs.NewHandle<mirror::Class>(mirror::Field::StaticClass()));
587 // Field class is needed for register_java_net_InetAddress in libcore, b/28153851.
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]

Completed in 897 milliseconds

<<313233343536373839