HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 1 - 25 of 20653) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisTraverser.java 48 * By the nature of the stateless traversal, the context node can not be
55 * @param context The context node of this traversal. This is the point
59 public int first(int context)
61 return next(context, context);
65 * By the nature of the stateless traversal, the context node can not be
72 * @param context The context node of this traversal. This is the point
78 public int first(int context, int extendedTypeID
    [all...]
  /external/clang/test/Sema/
freemain.c 7 void* main(void* context, long size) {
8 if (context) return allocate(size);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiClassifier.java 51 protected Object context; field in class:BidiClassifier
54 * @param context Context for this classifier instance.
57 public BidiClassifier(Object context) {
58 this.context = context;
62 * Sets classifier context, which can be used either by a caller or
65 * @param context Context for this classifier instance.
68 public void setContext(Object context) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiClassifier.java 51 protected Object context; field in class:BidiClassifier
54 * @param context Context for this classifier instance.
58 public BidiClassifier(Object context) {
59 this.context = context;
63 * Sets classifier context, which can be used either by a caller or
66 * @param context Context for this classifier instance.
70 public void setContext(Object context) {
    [all...]
  /external/libxkbcommon/xkbcommon/test/
context.c 27 #include "context.h"
32 struct xkb_context *context = test_get_context(0); local
35 assert(context);
37 assert(xkb_context_num_include_paths(context) == 1);
38 assert(!xkb_context_include_path_append(context, "¡NONSENSE!"));
39 assert(xkb_context_num_include_paths(context) == 1);
41 atom = xkb_atom_intern(context, "HELLOjunkjunkjunk", 5);
43 assert(streq(xkb_atom_text(context, atom), "HELLO"));
45 atom = xkb_atom_intern_literal(context, "HELLOjunkjunkjunk");
47 assert(streq(xkb_atom_text(context, atom), "HELLOjunkjunkjunk"))
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
context.cpp 23 #include "core/context.hpp"
27 context::context(const property_list &props, function in class:context
34 context::operator==(const context &ctx) const {
39 context::operator!=(const context &ctx) const {
43 const context::property_list &
44 context::properties() const {
48 context::device_rang
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_plugin_unittest.cc 65 GeneratorContext* context,
67 TryInsert("test.pb.h", "includes", context);
68 TryInsert("test.pb.h", "namespace_scope", context);
69 TryInsert("test.pb.h", "global_scope", context);
70 TryInsert("test.pb.h", "class_scope:foo.Bar", context);
71 TryInsert("test.pb.h", "class_scope:foo.Bar.Baz", context);
73 TryInsert("test.pb.cc", "includes", context);
74 TryInsert("test.pb.cc", "namespace_scope", context);
75 TryInsert("test.pb.cc", "global_scope", context);
78 TryInsert("test.pb.h", "field_get:foo.Bar.optInt", context);
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/
UnsolvedSymbolException.java 31 private String context; field in class:UnsolvedSymbolException
34 public UnsolvedSymbolException(String name, String context) {
35 super("Unsolved symbol in " + context + " : " + name);
36 this.context = context;
42 this.context = "unknown";
49 "context='" + context + '\'' +
  /external/tensorflow/tensorflow/core/kernels/
identity_op.h 25 explicit IdentityOp(OpKernelConstruction* context) : OpKernel(context) {}
27 void Compute(OpKernelContext* context) override {
28 if (IsRefType(context->input_dtype(0))) {
29 context->forward_ref_input_to_ref_output(0, 0);
31 context->set_output(0, context->input(0));
  /external/conscrypt/common/src/main/java/org/conscrypt/
NativeRef.java 24 final long context; field in class:NativeRef
26 NativeRef(long context) {
27 if (context == 0) {
28 throw new NullPointerException("context == 0");
31 this.context = context;
40 return ((NativeRef) o).context == context;
45 return (int) context;
51 if (context != 0)
    [all...]
  /external/toybox/toys/android/
runcon.c 1 /* runcon.c - Run command in specified security context
12 usage: runcon CONTEXT COMMAND [ARGS...]
14 Run a command in a specified security context.
22 char *context = *toys.optargs; local
24 if (setexeccon(context)) perror_exit("Could not set context to %s", context);
  /external/brotli/java/org/brotli/wrapper/enc/
EncoderJNI.java 16 private static native ByteBuffer nativeCreate(long[] context);
17 private static native void nativePush(long[] context, int length);
18 private static native ByteBuffer nativePull(long[] context);
19 private static native void nativeDestroy(long[] context);
28 protected final long[] context = new long[5]; field in class:EncoderJNI.Wrapper
33 this.context[1] = inputBufferSize;
34 this.context[2] = quality;
35 this.context[3] = lgwin;
36 this.inputBuffer = nativeCreate(this.context);
37 if (this.context[0] == 0)
    [all...]
  /external/ppp/pppd/plugins/radius/
md5.c 8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
  /external/tensorflow/tensorflow/contrib/lite/kernels/
gemm_support.h 19 #include "tensorflow/contrib/lite/context.h"
24 // Returns the GemmContext stored in 'context', allowing multiple ops to
28 // void* Init(TfLiteContext* context, const char*, size_t) {
29 // gemm_support::IncrementUsageCounter(context);
32 // void Free(TfLiteContext* context, void*) {
33 // gemm_support::DecrementUsageCounter(context);
35 // TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
36 // auto* gemm_context = gemm_support::GetFromContext(context);
38 gemmlowp::GemmContext* GetFromContext(TfLiteContext* context);
40 // Let the framework know that the GemmContext stored in 'context' will be use
    [all...]
  /external/adhd/cras/src/common/
cras_observer_ops.h 18 void (*output_volume_changed)(void *context, int32_t volume);
20 void (*output_mute_changed)(void *context,
23 void (*capture_gain_changed)(void *context, int32_t gain);
25 void (*capture_mute_changed)(void *context, int muted, int mute_locked);
27 void (*nodes_changed)(void *context);
30 void (*active_node_changed)(void *context,
34 void (*output_node_volume_changed)(void *context,
38 void (*node_left_right_swapped_changed)(void *context,
42 void (*input_node_gain_changed)(void *context,
46 void (*suspend_changed)(void *context,
    [all...]
  /external/skia/tests/
GrContextAbandonTest.cpp 23 if (GrContext* context = info.grContext()) {
26 context->abandonContext();
29 context->releaseResourcesAndAbandonContext();
32 context->abandonContext();
33 context->abandonContext();
36 context->abandonContext();
37 context->releaseResourcesAndAbandonContext();
40 context->releaseResourcesAndAbandonContext();
41 context->abandonContext();
44 context->releaseResourcesAndAbandonContext()
    [all...]
  /external/skqp/tests/
GrContextAbandonTest.cpp 23 if (GrContext* context = info.grContext()) {
26 context->abandonContext();
29 context->releaseResourcesAndAbandonContext();
32 context->abandonContext();
33 context->abandonContext();
36 context->abandonContext();
37 context->releaseResourcesAndAbandonContext();
40 context->releaseResourcesAndAbandonContext();
41 context->abandonContext();
44 context->releaseResourcesAndAbandonContext()
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
glslang.h 16 extern int glslang_initialize(TParseContext* context);
17 extern int glslang_finalize(TParseContext* context);
22 TParseContext* context);
23 extern int glslang_parse(TParseContext* context);
  /external/swiftshader/src/OpenGL/libEGL/
Sync.hpp 20 #include "Context.hpp"
30 explicit FenceSync(Context *context) : context(context)
33 context->addRef();
38 context->release();
39 context = nullptr;
42 void wait() { context->finish(); signal(); }
48 Context *context member in class:egl::FenceSync
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/account/
DeviceLocalAccountType.java 18 import android.content.Context;
24 public DeviceLocalAccountType(Context context, boolean groupsEditable) {
25 super(context);
29 public DeviceLocalAccountType(Context context) {
30 this(context, false);
39 public AccountInfo wrapAccount(Context context, AccountWithDataSet account) {
43 new AccountDisplayInfo(account, getDisplayLabel(context), getDisplayLabel(context)
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
VerticalSlider.java 3 import android.content.Context;
7 public VerticalSlider(Context context) {
8 super(context);
9 initSliderView(context, true);
12 public VerticalSlider(Context context, AttributeSet attrs) {
13 super(context, attrs);
14 initSliderView(context, true);
  /external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViERenderer.java 13 import android.content.Context;
18 public static SurfaceView CreateRenderer(Context context) {
19 return CreateRenderer(context, false);
22 public static SurfaceView CreateRenderer(Context context,
24 if(useOpenGLES2 == true && ViEAndroidGLES20.IsSupported(context))
25 return new ViEAndroidGLES20(context);
27 return new SurfaceView(context);
  /system/core/logcat/tests/
liblogcat_test.cpp 19 #define logcat_define(context) android_logcat_context context
20 #define logcat_popen(context, command) android_logcat_popen(&(context), command)
21 #define logcat_pclose(context, fp) android_logcat_pclose(&(context), fp)
  /external/icu/icu4c/source/i18n/
decContext.cpp 4 /* Decimal Context module */
22 /* context structures. */
27 #include "decContext.h" /* context and base types */
40 /* context is the context structure to be queried */
43 /* returns context */
47 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) {
48 context->status&=~mask;
49 return context;
53 /* decContextDefault -- initialize a context structure *
    [all...]
  /external/skia/src/sksl/ir/
SkSLType.cpp 49 const Type& Type::toCompound(const Context& context, int columns, int rows) const {
54 if (*this == *context.fFloat_Type) {
58 case 2: return *context.fFloat2_Type;
59 case 3: return *context.fFloat3_Type;
60 case 4: return *context.fFloat4_Type;
65 case 2: return *context.fFloat2x2_Type;
66 case 3: return *context.fFloat3x2_Type;
67 case 4: return *context.fFloat4x2_Type;
72 case 2: return *context.fFloat2x3_Type
    [all...]

Completed in 910 milliseconds

1 2 3 4 5 6 7 8 91011>>