HomeSort by relevance Sort by last modified time
    Searched refs:kind (Results 476 - 500 of 2305) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/netfilter/
xt_osf.h 51 __u16 kind, length; member in struct:xt_osf_opt
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/netfilter/
xt_osf.h 51 __u16 kind, length; member in struct:xt_osf_opt
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/netfilter/
xt_osf.h 51 __u16 kind, length; member in struct:xt_osf_opt
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/netfilter/
xt_osf.h 51 __u16 kind, length; member in struct:xt_osf_opt
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/netfilter/
xt_osf.h 51 __u16 kind, length; member in struct:xt_osf_opt
  /toolchain/binutils/binutils-2.25/include/
demangle.h 192 gnu_v3_ctor_kinds' value indicating what kind of constructor
211 gnu_v3_dtor_kinds' value, indicating what kind of destructor
252 /* A constructor. This holds a name and the kind of
255 /* A destructor. This holds a name and the kind of destructor. */
506 /* Kind of constructor. */
507 enum gnu_v3_ctor_kinds kind; member in struct:demangle_component::__anon75528::__anon75533
515 /* Kind of destructor. */
516 enum gnu_v3_dtor_kinds kind; member in struct:demangle_component::__anon75528::__anon75534
623 enum gnu_v3_ctor_kinds kind,
631 enum gnu_v3_dtor_kinds kind,
    [all...]
  /toolchain/binutils/binutils-2.25/include/gdb/
remote-sim.h 47 /* Values for `kind' arg to sim_open. */
76 KIND specifies how the simulator shall be used. Currently there
106 SIM_DESC sim_open (SIM_OPEN_KIND kind, struct host_callback_struct *callback, struct bfd *abfd, char **argv);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
StreamService.java 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
24 import com.google.caliper.runner.StreamService.StreamItem.Kind;
83 private static final StreamItem TIMEOUT_ITEM = new StreamItem(Kind.TIMEOUT, null);
86 static final StreamItem EOF_ITEM = new StreamItem(Kind.EOF, null);
292 enum Kind {
302 private final Kind kind; field in class:StreamService.StreamItem
305 this(Kind.DATA, checkNotNull(line));
308 private StreamItem(Kind state, @Nullable LogMessage logMessage) {
310 this.kind = state
319 Kind kind() { method in class:StreamService.StreamItem
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ConfigResultsElement.java 280 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) {
284 int buildsNumber = kind & IPerformancesConstants.STATUS_BUILDS_NUMBER_MASK;
325 boolean printValues = (kind & IPerformancesConstants.STATUS_VALUES) != 0;
374 int statusErrorLevel = kind & IPerformancesConstants.STATUS_ERROR_LEVEL_MASK;
429 int statusSmallValue = kind & IPerformancesConstants.STATUS_SMALL_VALUE_MASK;
463 switch (kind & IPerformancesConstants.STATUS_STATISTICS_MASK) {
477 if ((kind & IPerformancesConstants.STATUS_STATISTICS_UNSTABLE) != 0) {
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
GatherAPIDataOld.java 224 if (tagKindIndex(tags[i].kind()) == INTERNAL) { return true; }
403 String kind = tag.kind(); local
404 int ix = tagKindIndex(kind);
445 throw new RuntimeException("unknown index " + ix + " for tag: " + kind);
494 private static int tagKindIndex(String kind) {
501 if (kind.equals(tagKinds[i])) {
  /external/ltrace/
options.c 494 if (entry->kind == OPT_F_UNKNOWN) {
499 entry->kind = OPT_F_BROKEN;
501 entry->kind = OPT_F_DIR;
503 entry->kind = OPT_F_FILE;
507 entry->kind = OPT_F_BROKEN;
510 assert(entry->kind != OPT_F_UNKNOWN);
511 return entry->kind;
  /external/v8/src/
property-details.h 92 enum Kind {
121 static Representation FromKind(Kind kind) { return Representation(kind); }
173 Kind kind() const { return static_cast<Kind>(kind_); } function in class:v8::internal::Representation
195 explicit Representation(Kind k) : kind_(k) { }
197 // Make sure kind fits in int8.
259 PropertyDetails(PropertyAttributes attributes, PropertyKind kind,
311 PropertyKind kind() const { return KindField::decode(value_); } function in class:v8::internal::BASE_EMBEDDED
    [all...]
deoptimizer.cc 63 CHECK(code->kind() == Code::OPTIMIZED_FUNCTION);
145 if (it->kind() == TranslatedFrame::kFunction ||
146 it->kind() == TranslatedFrame::kInterpretedFunction) {
193 if (function->code()->kind() != Code::OPTIMIZED_FUNCTION ||
195 function->code()->kind() != Code::OPTIMIZED_FUNCTION)) {
300 bool builtin = code->kind() == Code::BUILTIN;
321 CHECK_EQ(code->kind(), Code::OPTIMIZED_FUNCTION);
423 CHECK_EQ(code->kind(), Code::OPTIMIZED_FUNCTION);
437 if (code->kind() == Code::OPTIMIZED_FUNCTION) {
526 DCHECK(compiled_code_->kind() != Code::FUNCTION)
1706 const char* kind = is_setter_stub_frame ? "setter" : "getter"; local
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
843 * the specified range of the buffer. The kind may be Object.class to get
847 public <T> T[] getSpans(int queryStart, int queryEnd, @Nullable Class<T> kind) {
848 return getSpans(queryStart, queryEnd, kind, true);
853 * the specified range of the buffer. The kind may be Object.class to get
858 * @param kind Class type to search for.
865 public <T> T[] getSpans(int queryStart, int queryEnd, @Nullable Class<T> kind,
867 if (kind == null) return (T[]) ArrayUtils.emptyArray(Object.class);
868 if (mSpanCount == 0) return ArrayUtils.emptyArray(kind);
869 int count = countSpans(queryStart, queryEnd, kind, treeRoot())
    [all...]
  /frameworks/wilhelm/src/
ThreadPool.c 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36 // extract parameters and call the right method depending on kind
37 ClosureKind kind = closure.mKind; local
41 switch (kind) {
67 SL_LOGE("Unexpected callback kind %d", kind);
161 // here on any kind of error
248 // Note that this raw interface requires an explicit "kind" and full parameter list.
250 SLresult ThreadPool_add(ThreadPool *tp, ClosureKind kind, ClosureHandler_generic handler,
259 closure->mKind = kind;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
TextFieldsEditorView.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
199 public void setValues(DataKind kind, ValuesDelta entry, RawContactDelta state, boolean readOnly,
201 super.setValues(kind, entry, state, readOnly, vig);
210 int fieldCount = kind.fieldList == null ? 0 : kind.fieldList.size();
213 final EditField field = kind.fieldList.get(index);
221 fieldView.setId(vig.getId(state, kind, entry, index));
252 if (ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE.equals(kind.mimeType)) {
  /external/clang/lib/AST/
ExprClassification.cpp 35 Cl::Kinds Kind, SourceLocation &Loc);
40 Cl::Kinds kind = ClassifyInternal(Ctx, this); local
46 kind = Cl::CL_Function;
51 kind = (kind == Cl::CL_LValue ? Cl::CL_AddressableVoid : Cl::CL_Void);
55 switch (kind) {
72 modifiable = IsModifiable(Ctx, this, kind, *Loc);
73 return Classification(kind, modifiable);
90 ExprValueKind Kind) {
91 switch (Kind) {
356 Cl::Kinds kind = ClassifyUnnamed(Ctx, Method->getReturnType()); local
    [all...]
  /external/v8/src/ic/
ic.h 72 static bool ICUseVector(Code::Kind kind) {
73 return kind == Code::LOAD_IC || kind == Code::LOAD_GLOBAL_IC ||
74 kind == Code::KEYED_LOAD_IC || kind == Code::CALL_IC ||
75 kind == Code::STORE_IC || kind == Code::KEYED_STORE_IC;
100 bool use = ICUseVector(kind());
159 Code::Kind kind() const { return kind_; function in class:v8::internal::IC
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
281 TextUtils.TruncateAt kind = null; local
285 kind = TextUtils.TruncateAt.START;
289 kind = TextUtils.TruncateAt.END;
293 kind = TextUtils.TruncateAt.MIDDLE;
297 String out1 = TextUtils.ellipsize(s1, p, i, kind).toString();
298 String out2 = TextUtils.ellipsize(s2, p, i, kind).toString();
299 String out3 = TextUtils.ellipsize(s3, p, i, kind).toString();
301 String keep1 = TextUtils.ellipsize(s1, p, i, kind, true, null).toString();
302 String keep2 = TextUtils.ellipsize(s2, p, i, kind, true, null).toString()
    [all...]
  /frameworks/compile/mclinker/lib/LD/
EhFrameReader.cpp 57 result.kind = Terminator;
81 result.kind = CIE;
83 result.kind = FDE;
139 if (!transition[cur_state][token.kind](pEhFrame, entry, token)) {
153 cur_state = autometa[cur_state][token.kind];
  /system/media/camera/docs/
html.mako 14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 .kind { color: #eeeeee; font-size: 1.2em; font-weight: bold; padding-left: 1.5em; background-color: #aaaaaa }
115 # Convert node name "x.y.z" of kind w to an HTML anchor of form
118 return '<a href="#%s_%s">%s</a>' % (node.kind, node.name, node.name)
181 % for kind in section.merged_kinds: # dynamic,static,controls
183 <span class="toc_kind_header">${kind.name}</span>
185 ${ insert_toc_body(kind)}\
219 % for kind in section.merged_kinds: # dynamic,static,controls
220 <tr><td colspan="6" class="kind">${kind.name}</td></tr
    [all...]
  /external/libmicrohttpd/src/microhttpd/
connection.c 120 * @param kind types of values to iterate over
129 enum MHD_ValueKind kind,
139 if (0 != (pos->kind & kind))
144 kind, pos->header, pos->value)))
168 * @param kind kind of the value
178 enum MHD_ValueKind kind,
189 pos->kind = kind;
650 enum MHD_ValueKind kind; local
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 379 enum CXCommentKind Kind = clang_Comment_getKind(Comment);
386 switch (Kind) {
538 if (Kind != CXComment_Null) {
657 if (clang_isInvalid(Cursor.kind)) {
658 CXString ks = clang_getCursorKindSpelling(Cursor.kind);
680 ks = clang_getCursorKindSpelling(Cursor.kind);
787 if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
790 CXString S = clang_getTypeKindSpelling(T.kind);
795 if (Cursor.kind == CXCursor_CXXBaseSpecifier) {
824 if (Cursor.kind == CXCursor_FunctionDecl)
3546 const char *kind = "<unknown>"; local
3703 const char *kind = *I; local
    [all...]
  /external/opencv3/modules/core/src/
opengl.cpp 507 const int kind = arr.kind();
509 switch (kind)
582 const int kind = arr.kind();
588 switch (kind)
650 const int kind = arr.kind();
652 switch (kind)
990 const int kind = arr.kind()
    [all...]
  /external/v8/src/parsing/
scanner.cc 989 } kind = DECIMAL; local
1008 kind = HEX;
1018 kind = OCTAL;
1028 kind = BINARY;
1039 kind = IMPLICIT_OCTAL;
1043 kind = DECIMAL_WITH_LEADING_ZERO;
1054 kind = DECIMAL_WITH_LEADING_ZERO;
1059 if (kind == DECIMAL || kind == DECIMAL_WITH_LEADING_ZERO) {
1076 if (kind == DECIMAL_WITH_LEADING_ZERO
    [all...]

Completed in 2711 milliseconds

<<11121314151617181920>>